@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');


/* Fullscreen Wrapper */
.fh9-loader-wrap {
    position: fixed;
    inset: 0;
    background: linear-gradient(313deg, #000000, #022c22, #0b8d69);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Hide state */
.fh9-loader-wrap.fh9-hide {
    opacity: 0;
    visibility: hidden;
}

/* Inner */
.fh9-loader-inner {
    text-align: center;
}

/* Animated Ring */
.fh9-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #22c55e;
    animation: fh9-spin 1s linear infinite;
    margin: 0 auto 20px;
}

/* Ring Animation */
@keyframes fh9-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Main Text */
.fh9-loader-text {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Gradient Text Animation */
.fh9-loader-text span {
    background: linear-gradient(0deg, #22c55e, #4ade80, #16a34a);

    /* Standard + Webkit */
    background-clip: text;
    -webkit-background-clip: text;

    /* Make text transparent */
    color: transparent;
    -webkit-text-fill-color: transparent;

    animation: fh9-text-glow 2s infinite alternate;
}

/* Glow Animation */
@keyframes fh9-text-glow {
    from {
        filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.3));
    }

    to {
        filter: drop-shadow(0 0 15px rgba(34, 197, 94, 0.8));
    }
}

/* Subtext */
.fh9-loader-sub {
    margin-top: 10px;
    font-size: 14px;
    color: #9ca3af;
    letter-spacing: 1px;
    animation: fh9-fade 2s infinite;
}

/* Fade animation */
@keyframes fh9-fade {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}




:root {
    /* Premium Color Palette */
    --footer-gradient: linear-gradient(135deg, #18ab4c 0%, #0d1f14 50%, #051410 100%);
    --accent-green: #10b981;
    --accent-emerald: #059669;
    --accent-teal: #0891b2;
    --text-light: #f0f9ff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;

    /* Shadows */
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.3);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

/* Typography */

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== FOOTER SECTION ===== */
.footer {
    background: var(--footer-gradient);
    color: var(--text-light);
    padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-lg);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Animated background elements */
.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== FOOTER MAIN CONTAINER ===== */
.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    justify-content: space-between;
    align-items: flex-start;
}

/* ===== FOOTER BRAND SECTION ===== */
.footer-brand {
    flex: 1 1 calc(25% - var(--spacing-2xl));
    min-width: 200px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-brand-logo:hover {
    color: var(--accent-green);
}

/* .logo-icon img{
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-teal) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
} */

.footer-brand p {
    font-size: 0.95rem;
    color: white;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 1.5px solid var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-green);
    transition: left 0.4s ease;
    z-index: -1;
    border-radius: 50%;
}

.social-icon:hover {
    color: var(--bg-white);
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.social-icon:hover::before {
    left: 0;
}

/* ===== FOOTER COLUMNS ===== */
.footer-column {
    flex: 1 1 calc(25% - var(--spacing-2xl));
    min-width: 150px;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: white;
    position: relative;
    padding-bottom: var(--spacing-sm);
}



.footer-column ul {
    list-style: none;
    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: var(--spacing-md);
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-green);
}

.footer-column a:hover::after {
    width: 100%;
}

/* ===== FOOTER CONTACT SECTION ===== */
.footer-contact {
    flex: 1 1 calc(25% - var(--spacing-2xl));
    min-width: 180px;
}

.footer-contact h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 1rem;
    margin-top: 2px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text p {
    color: #10b981;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-text a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--accent-teal);
}

/* ===== FOOTER DIVIDER ===== */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(16, 185, 129, 0.3) 50%,
            transparent 100%);
    /* margin: var(--spacing-xl) 0; */
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-lg);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex: 1 1 auto;
    min-width: 200px;
}

.footer-copyright p {
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
    flex: 1 1 auto;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-brand-bottom {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex: 1 1 auto;
    min-width: 150px;
    justify-content: flex-end;
}

.brand-badge {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-teal) 100%);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.brand-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(3deg);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-brand,
.footer-column,
.footer-contact {
    animation: slideUp 0.6s ease-out forwards;
}

.footer-brand {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation-delay: 0.4s;

}


/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Wrapper */
.fx9-contact-wrap {
    position: fixed;
    bottom: 25px;
    /* left: 25px; */
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
    right: 20px;
}

/* Base Button */
.fx9-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* WhatsApp Style */
.fx9-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Call Style */
.fx9-call {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

/* Hover Effects */
.fx9-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Glow effect */
.fx9-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    transition: 0.4s;
}

.fx9-whatsapp::before {
    background: radial-gradient(circle, rgba(37, 211, 102, 0.6), transparent 70%);
}

.fx9-call::before {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6), transparent 70%);
}

.fx9-btn:hover::before {
    opacity: 1;
}

/* Pulse animation */
@keyframes fx9-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.fx9-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: fx9-pulse 2s infinite;
}


/* team.html  */

:root {
    /* Premium Color Palette */
    --primary-gradient: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2d5a8c 100%);
    --secondary-gradient: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --emerald-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);

    /* Neutral Colors */
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --border-color: #e2e8f0;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.16);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

/* Typography */



/* ===== CONTAINER ===== */
.tm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-lg);
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
    padding-bottom: var(--spacing-lg);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-gradient);
    border-radius: 2px;
}

/* ===== FOUNDER SECTION ===== */
.my-best-team-cl.founder-section {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: var(--spacing-2xl) var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: slideUpFade 0.8s ease-out;
}

.founder-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2xl);
    align-items: center;
    justify-content: center;
}

.founder-image {
    flex: 1 1 calc(40% - var(--spacing-xl));
    min-width: 250px;
    position: relative;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.founder-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}

.founder-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--secondary-gradient);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 10s ease-in-out infinite;
    z-index: -1;
}

.founder-info {
    flex: 1 1 calc(60% - var(--spacing-xl));
    min-width: 300px;
    animation: slideDownFade 0.8s ease-out 0.2s both;
}

.founder-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.founder-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.founder-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.founder-social {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.social-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 1;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn-facebook {
    background: linear-gradient(135deg, #3b5998 0%, #1e3a8a 100%);
}

.social-btn-email {
    background: linear-gradient(135deg, #f0bb29 0%, #c6cc21 100%);
}

.social-btn-linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #004182 100%);
}

.social-btn-instagram {
    background: linear-gradient(135deg, #e1306c 0%, #feda75 100%);
}

.social-btn-whatsapp {
    background: linear-gradient(135deg, #20da19 0%, #178d23 100%);
}


.social-btn:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* ===== TEAM MEMBERS SECTION ===== */
.my-best-team-cl.team-section {
    margin-bottom: var(--spacing-2xl);
    margin-top: 6rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
}

.my-best-team-cl.team-member {
    flex: 1 1 calc(33.333% - var(--spacing-lg));
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-secondary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideUpFade 0.6s ease-out forwards;
}

/* .team-member:nth-child(1) {
    animation-delay: 0.1s;
}

.team-member:nth-child(2) {
    animation-delay: 0.2s;
}

.team-member:nth-child(3) {
    animation-delay: 0.3s;
}

.team-member:nth-child(4) {
    animation-delay: 0.4s;
}

.team-member:nth-child(5) {
    animation-delay: 0.5s;
}

.team-member:nth-child(6) {
    animation-delay: 0.6s;
} */

.team-member:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: #0ea5e9;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
}

.team-member:hover .member-image {
    transform: scale(1.05);
}

.member-content {
    padding: var(--spacing-lg);
    position: relative;
}

.member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.member-expertise {
    font-size: 0.9rem;
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    padding: 4px 12px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 20px;
}

.member-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);

    /* Modern standard (works in latest browsers) */
    display: -webkit-box;
    display: box;
    -webkit-box-orient: vertical;
    box-orient: vertical;

    -webkit-line-clamp: 2;
    line-clamp: 2;

    overflow: hidden;
}

.member-social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.member-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
    z-index: 1;
}

.member-social-link:hover::before {
    left: 100%;
}

.member-social-link:nth-child(1) {
    background: linear-gradient(135deg, #3b5998 0%, #1e3a8a 100%);
}

.member-social-link:nth-child(2) {
    background: linear-gradient(135deg, #1da1f2 0%, #0f766e 100%);
}

.member-social-link:nth-child(3) {
    background: linear-gradient(135deg, #0077b5 0%, #004182 100%);
}

.member-social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.member-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-view-profile {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--secondary-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn-view-profile:hover::before {
    left: 100%;
}

.btn-view-profile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(4px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUpFade 0.4s ease-out;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(15, 23, 42, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    border: 1px solid white;
}

.modal-close:hover {
    background: var(--secondary-gradient);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.modal-header img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.4) 100%);
}

.modal-body {
    padding: var(--spacing-2xl) var(--spacing-lg);
}

.modal-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.modal-title {
    font-size: 1.1rem;
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.modal-section {
    margin-bottom: var(--spacing-lg);
}

.modal-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.modal-section h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-gradient);
    border-radius: 2px;
}

.modal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.modal-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.modal-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.modal-social a:nth-child(1) {
    background: linear-gradient(135deg, #e1306c 0%, #feda75 100%);
}

.modal-social a:nth-child(2) {
    background: linear-gradient(135deg, #1da1f2 0%, #0f766e 100%);
}

.modal-social a:nth-child(3) {
    background: linear-gradient(135deg, #20da19 0%, #178d23 100%);
}


.modal-social a:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(5deg);
    }
}



/* team.html  */


/* about-us.html  */

:root {
    /* Premium Color Palette */
    --primary-gradient: linear-gradient(135deg, #05720e 0%, #1e3a5f 50%, #191d1a 100%);
    --secondary-gradient: linear-gradient(135deg, #25dd5e 0%, #06b6d4 100%);
    --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --dark-gradient: linear-gradient(135deg, #3f98ce 0%, #19721d 100%);

    /* Neutral Colors */
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --border-color: #e2e8f0;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.16);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}


/* ===== HEADER SECTION ===== */

/* ===== CONTAINER ===== */
.my-about-best-pg.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-lg);
}

/* ===== SECTION TITLE ===== */
.my-about-best-pg.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
    padding-bottom: var(--spacing-lg);
    margin-top: 5rem;
}

.my-about-best-pg.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-gradient);
    border-radius: 2px;
}

/* ===== WHY CHOOSE US SECTION ===== */
.my-about-best-pg.why-choose-section {
    margin-bottom: var(--spacing-2xl);
}

.my-about-best-pg.why-choose-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
    margin: 1rem;
}

.my-about-best-pg.why-choose-text {
    flex: 1 1 calc(50% - var(--spacing-lg));
    min-width: 300px;
    max-width: 550px;
}

.my-about-best-pg.why-choose-image {
    flex: 1 1 calc(50% - var(--spacing-lg));
    min-width: 300px;
    max-width: 550px;
}

.my-about-best-pg.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.my-about-best-pg.why-choose-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.my-about-best-pg.why-choose-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.my-about-best-pg.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.my-about-best-pg.why-choose-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid;
    border-image: var(--secondary-gradient) 1;
    transition: all 0.3s ease;
}

.my-about-best-pg.why-choose-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.my-about-best-pg.why-choose-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.my-about-best-pg.why-choose-item h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 600;
}

.my-about-best-pg.why-choose-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== VISION, MISSION & VALUES SECTION ===== */
.my-about-best-pg.vision-mission-section {
    margin-bottom: var(--spacing-2xl);
}

.my-about-best-pg.vmv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
}

.my-about-best-pg.vmv-card {
    flex: 1 1 calc(33.333% - var(--spacing-lg));
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.my-about-best-pg.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.my-about-best-pg.vmv-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: #0ea5e9;
}

.my-about-best-pg.vmv-card:hover::before {
    transform: scaleX(1);
}

.my-about-best-pg.vmv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.my-about-best-pg.vmv-card:nth-child(1) .vmv-icon {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
}

.my-about-best-pg.vmv-card:nth-child(2) .vmv-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    color: white;
}

.my-about-best-pg.vmv-card:nth-child(3) .vmv-icon {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    color: white;
}

.my-about-best-pg.vmv-card:hover .vmv-icon {
    transform: scale(1.1) rotate(5deg);
}

.my-about-best-pg.vmv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.my-about-best-pg.vmv-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.my-about-best-pg.vmv-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
}

/* ===== STATS SECTION ===== */
.my-about-best-pg.stats-section {
    background: var(--primary-gradient);
    color: white;
    padding: var(--spacing-2xl) var(--spacing-lg);
    border-radius: 20px;
    margin-bottom: var(--spacing-2xl);
}

.my-about-best-pg.stats-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.my-about-best-pg.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
}

.my-about-best-pg.stat-card {
    flex: 1 1 calc(25% - var(--spacing-lg));
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.my-about-best-pg.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.my-about-best-pg.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.my-about-best-pg.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
}

.my-about-best-pg.stat-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: var(--spacing-xs);
}

/* ===== BUSINESS HOURS SECTION ===== */
.my-about-best-pg.business-hours-section {
    margin-bottom: var(--spacing-2xl);
}

.my-about-best-pg.business-hours-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    align-items: stretch;
    justify-content: center;
}

.my-about-best-pg.business-hours-card {
    flex: 1 1 calc(50% - var(--spacing-lg));
    min-width: 300px;
    max-width: 500px;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: var(--spacing-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.my-about-best-pg.business-hours-card:hover {
    border-color: #0ea5e9;
    box-shadow: var(--shadow-lg);
}

.my-about-best-pg.business-hours-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.my-about-best-pg.business-hours-card i {
    font-size: 1.75rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.my-about-best-pg.hours-table {
    width: 100%;
}

.my-about-best-pg.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.my-about-best-pg.hours-row:last-child {
    border-bottom: none;
}

.my-about-best-pg.hours-row:hover {
    background: rgba(14, 165, 233, 0.05);
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.my-about-best-pg.hours-day {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 100px;
}

.my-about-best-pg.hours-time {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.my-about-best-pg.hours-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.my-about-best-pg.hours-open {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.my-about-best-pg.hours-closed {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.my-timings-cl {
    display: flex;
    flex-direction: column;
}

/* ===== CTA SECTION ===== */
.my-about-best-pg.cta-section {
    background: var(--dark-gradient);
    color: white;
    padding: var(--spacing-2xl) var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 5rem auto 2rem;
}

.my-about-best-pg.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.my-about-best-pg.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.my-about-best-pg.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.my-about-best-pg.cta-section p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.my-about-best-pg.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== BUTTONS ===== */
.my-about-best-pg.btn {
    padding: 14px 36px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    text-decoration: none;
}

.my-about-best-pg.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 1;
}

.my-about-best-pg.btn:hover::before {
    left: 100%;
}

.my-about-best-pg.btn-primary {
    background: var(--secondary-gradient);
    color: white;
    width: 253px;

}

.my-about-best-pg.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
}

.my-about-best-pg.btn-secondary {
    background: var(--accent-gradient);
    color: white;
}

.my-about-best-pg.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.4);
}

.my-about-best-pg.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.my-about-best-pg.btn-outline:hover {
    transform: translateY(-4px);
    background: white;
    color: #0f172a;
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

/* ===== ANIMATIONS ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(5deg);
    }
}


/* ===== SECTION ===== */
.branches-section {
    padding: 80px 20px;
    /* background: linear-gradient(135deg, #000000, #0f2027); */
    background: linear-gradient(135deg, #edf1f1, #c8f4db69);

    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 4rem;
}

/* ===== HEADER ===== */
.branches-header {
    text-align: center;
    margin-bottom: 50px;
}

.branches-header h2 {
    font-size: 3rem;
    /* color: #00c853; */
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.branches-header p {
    color: black;
    font-size: 1rem;
}

/* ===== GRID (FLEXBOX) ===== */
.branches-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

/* ===== CARD ===== */
.branch-card {
    width: 100%;
    max-width: 320px;
    background: black;
    backdrop-filter: blur(12px);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

/* HOVER EFFECT */
.branch-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 200, 83, 0.2);
}

/* IMAGE */
.branch-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.branch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.branch-card:hover img {
    transform: scale(1.1);
}

/* CONTENT */
.branch-content {
    padding: 20px;
}

.branch-content h3 {
    font-family: 'Playfair Display', serif;
    color: #00c853;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.branch-content p {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 15px;
}

/* CONTACT */
.branch-contact {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.branch-contact div {
    margin-bottom: 8px;
}

.branch-contact i {
    color: #00c853;
    margin-right: 8px;
}

/* LINKS */
.branch-contact a {
    color: #fff;
    text-decoration: none;
}

.branch-contact a:hover {
    text-decoration: underline;
}

/* BUTTONS */
.branch-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.branch-actions .btn {
    padding: 8px 14px;
    font-size: 0.8rem;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease;
}

.branch-actions .btn-primary {
    background: linear-gradient(135deg, #00c853, #64dd17);
    color: #000;
    border: none;
    border-radius: 20px;
    padding: 8px 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.branch-actions .btn-primary:hover {
    background: linear-gradient(135deg, #64dd17, #00c853);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 200, 83, 0.4);
}

.branch-actions .btn-primary1 {
    background: linear-gradient(135deg, #1192e8, #33b1ff);
    color: #000;
    border: none;
    border-radius: 20px;
    padding: 8px 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.branch-actions .btn-primary1:hover {
    background: linear-gradient(135deg, #33b1ff, #1192e8);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(17, 146, 232, 0.4);
}

.branch-actions .btn-primary2 {
    background: linear-gradient(135deg, #f5b221, #ffcd38);
    color: #000;
    border: none;
    border-radius: 20px;
    padding: 8px 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.branch-actions .btn-primary2:hover {
    background: linear-gradient(135deg, #ffcd38, #f5b221);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 178, 33, 0.4);
}



/* ===== SCROLL ANIMATION ===== */
.branch-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
    background: linear-gradient(135deg, #05640d 0%, #1e3a5f 50%, #191d1a 100%);
}

.branch-card:nth-child(2) {
    animation-delay: 0.2s;
}

.branch-card:nth-child(3) {
    animation-delay: 0.4s;
}

.branch-card:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* about-us.html  */

/* reviews.html  */


/* SECTION */
.reviews-section {
    max-width: 700px;
    margin: auto;
    padding: 80px 20px;
    text-align: center;
    /* background: linear-gradient(178deg, #74f483, #1a1a1a); */

}

/* .reviews-section h2 {
    color: #00c853;

} */

.section-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00c853, #ff7f5c);
    margin: 15px auto;
}

/* CAROUSEL */
.Rwcarousel {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;

}
#Rwcarousel{
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

/* CARD */
.review-card {
    flex: 0 0 100%;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(138deg, #1d8d32, #302c2c);
    border: 1px solid rgb(246 237 237);
    cursor: pointer;
    transition: .3s;
    min-height: 350px;
    max-height: 400px;
}

/* .review-card:hover {
    transform: translateY(-10px);
} */

.rw_card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    margin-top: 1rem;
}

.rw-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #00c853;
}

.reviewer-info p {
    color: #ff7f5c;
    font-size: .85rem;
}


.star-rating {
    margin: 15px 0;
    /* font-size: 35px; */
    color: #00c853;
}

.review-message {
    color: #ccc;
}

/* CONTROLS */
.rw-controls {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.rw-controls button {
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    /* background: #00c853; */
    color: #000;
}

.rw-controls button:hover {
    background: #5ed28f;
    color: #000;
}

/* DOTS */
/* .dots {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-top: 15px;
    } */

/* .dot {
      width: 10px;
      height: 10px;
      background: #555;
      border-radius: 50%;
      cursor: pointer;
    }

    .dot.active {
      background: #00c853;
      width: 25px;
      border-radius: 10px;
    } */

/* RMODAL */
.Rmodal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.Rmodal.active {
    display: flex;
}

.Rmodal-content {
    background: linear-gradient(138deg, #1d8d32, #302c2c);
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    color: white;
}

.rw-tt-box h3 {
    color: white;
    font-size: 1.2rem;
}

.rw-tt-box p {
    color: #c4c4c4;
}

.Rmodal-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.Rmodal-content .close:hover {
    font-size: 25px;
}

.Rmodal-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #00c853;
}

.Rmodal-rating {
    color: #00c853;
    font-size: 20px;
    margin: 10px 0;
}

.Rmodal-message {
    color: #ccc;
    line-height: 1.6;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 8px;
    text-align: center;
}

.Rmodal-message::-webkit-scrollbar {
    width: 6px;
}

.Rmodal-message::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.Rmodal-message::-webkit-scrollbar-thumb {
    background: #ff9800;
    border-radius: 10px;
}

#mName {
    font-size: 1.2rem;
    margin-top: 1rem;
}

#mRole {
    color: #c4c4c4;
}

/* reviews.html  */


/* show messages  */

.custom-messages-wrapper {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 350px;
    max-width: 900px;
}

.custom-alert {
    position: relative;
    padding: 16px 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

    animation: slideIn 0.4s ease;
}

/* Success */
.alert-success {
    background: #16a34a;
}

/* Error */
.alert-error {
    background: #dc2626;
}

/* Warning */
.alert-warning {
    background: #f59e0b;
}

/* Info */
.alert-info {
    background: #2563eb;
}

.alert-close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* show messages  */

/* business hours css  */


.hours-empty-state {

    width: 100%;

    padding: 50px 35px;

    border-radius: 24px;

    text-align: center;

    background: linear-gradient(135deg,
            #111,
            #1d1d1d);

    border: 1px solid rgba(255, 255, 255, 0.08);

    margin-top: 20px;

    position: relative;

    overflow: hidden;
}

.hours-empty-icon {

    width: 80px;
    height: 80px;

    margin: 0 auto 22px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,
            #00c853,
            #109d54);

    color: #fff;

    font-size: 32px;
}

.hours-empty-state h3 {

    color: #fff;

    margin-bottom: 15px;

    font-size: 1.8rem;
}

.hours-empty-state p {

    color: #bdbdbd;

    line-height: 1.8;

    max-width: 550px;

    margin: auto auto 25px;
}

.hours-empty-line {

    width: 90px;
    height: 4px;

    margin: 20px auto;

    border-radius: 20px;

    background: linear-gradient(to right,
            #00c853,
            #ff9800);
}

.hours-empty-state span {

    color: #00c853;

    letter-spacing: 2px;

    font-size: 14px;

    font-weight: 600;
}


/* business hours css  */