
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
        }

        a {
            text-decoration: none;
            color:#000000;
        }
/* ===== ROOT TOKENS ===== */

        :root {
            --primary: #FF5F15;
            --secondary: #0056D2;
            --muted: #6b7280;
            --border: #e5e7eb;
            --section-bg: #f5f7fa;
            --bg: #ffffff;
            --text-muted: #6b7280;
            --accent: #2563eb;
            --text-dark: #111827;
            --text-white: #ffffff;
        }
        
.icon-color{
   color: var(--accent);
}

        /* ===== GLOBAL SECTIONS ===== */
        section {
            width: 100%;
        }

        .section-wrap {
            padding: 80px 0;
            background: var(--section-bg);
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: #000;
            color: #fff;
            font-size: 14px;
        }

        .top-bar-right {
            background: var(--secondary);
            clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
        }

        /* ===== NAVBAR ===== */
/* =========================
   NAVBAR — SYSTEM ALIGNED
========================= */

#nav-section {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: var(--bg);
}

/* Base shell */
.voyzo-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Container */
.voyzo-navbar-container {
    max-width: 1400px;
    height: 72px; /* reduced to match site scale */
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* =========================
   BRAND
========================= */

.voyzo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.voyzo-logo {
    width: 100px;   /* FIX: was absurdly large */
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
}

.voyzo-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

/* =========================
   DESKTOP NAV
========================= */

.voyzo-nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
}

.voyzo-link {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    transition: color .2s ease;
}

.voyzo-link:hover {
    color: var(--text-dark);
}

.voyzo-link.active {
    color: var(--accent);
    font-weight: 600;
}

.voyzo-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* =========================
   CTA (DESKTOP)
========================= */

.voyzo-cta {
    position: relative;
}

.voyzo-cta-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(255,95,21,0.28);
    transition: all .25s ease;
}

.voyzo-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(255,95,21,0.35);
}

/* =========================
   DESKTOP AUTH DROPDOWN
========================= */

.voyzo-cta {
    position: relative;
}

/* Dropdown base */
.voyzo-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    padding: 6px;
    min-width: 260px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.25s ease;
    z-index: 1100;
}

/* Hover trigger (desktop only) */
@media (min-width: 992px) {
    .voyzo-cta:hover .voyzo-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Dropdown items */
.voyzo-dropdown a {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

/* Hover effect */
.voyzo-dropdown a:hover {
    background: #f3f4f6;
    padding-left: 18px;
}


/* =========================
   MOBILE OVERLAY
========================= */

/* OVERLAY */
.voyzo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 1049;
}
.voyzo-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* HAMBURGER */
.voyzo-hamburger {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.voyzo-hamburger span {
    width: 22px;
    height: 2px;
    background: #111;
}

/* DRAWER */
.voyzo-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: .35s cubic-bezier(.4,0,.2,1);
    z-index: 1050;
    display: flex;
    flex-direction: column;
}
.voyzo-drawer.show {
    transform: translateX(0);
}

/* HEADER */
.voyzo-drawer-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}
.voyzo-drawer-header button {
    background: none;
    border: none;
    font-size: 20px;
}

/* LINKS */
.voyzo-drawer-links {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.voyzo-drawer-links a {
    padding: 12px 14px;
    border-radius: 12px;
    color: #374151;
    font-weight: 500;
}
.voyzo-drawer-links a.active {
    background: #eff6ff;
    color: var(--accent);
}

/* =========================
   MOBILE NAV DRAWER
========================= */

@media (max-width: 991px) {

    .voyzo-navbar-container {
        height: 64px;
        padding: 0 20px;
    }

    .voyzo-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 300px;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 16px;
        gap: 6px;
        transform: translateX(100%);
        transition: transform .35s cubic-bezier(0.4,0,0.2,1);
        z-index: 1050;
        box-shadow: -24px 0 60px rgba(0,0,0,0.18);
    }

    .voyzo-nav.show {
        transform: translateX(0);
    }

    .voyzo-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .voyzo-close-btn {
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
        color: var(--text-dark);
    }

    .voyzo-link {
        padding: 12px 12px;
        border-radius: 12px;
        font-size: 15px;
    }

    .voyzo-link:hover {
        background: #f3f4f6;
    }

    .voyzo-link.active {
        background: #eff6ff;
        color: var(--accent);
    }

    .voyzo-link.active::after {
        display: none;
    }

    .voyzo-mobile-cta {
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid var(--border);
    }

    .voyzo-mobile-cta a {
        display: block;
        width: 100%;
        text-align: center;
        background: var(--primary);
        color: #fff;
        padding: 12px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 14px;
    }
}



        /* ===== HERO ==================================================================================== */
        .hero h1 {
            font-weight: 800;
            line-height: 1.1;
        }

        .hero p {
            color: var(--muted);
            font-size: 18px;
        }

        .badge-flat {
            border: 2px solid var(--border);
            border-radius: 50px;
            padding: 8px 16px;
            font-weight: 500;
            color: var(--muted);
            display: inline-flex;
            gap: 8px;
            align-items: center;
        }

        .btn-primary-flat {
            background: var(--primary);
            color: #fff;
            border-radius: 50px;
            padding: 14px 32px;
            border: none;
            font-weight: 600;
        }

        .icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #333;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== IMAGES ===== */
        .oval-img {
            width: 340px;
            height: 460px;
            border-radius: 45%;
            padding: 6px;
            border: 2px solid #0d6efd;
            overflow: hidden;
            background: #fff;
        }

        .oval-img img,
        .circle-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 43%;
        }

        .circle-img {
            width: 200px;
            height: 200px;
            overflow: hidden;
            border-radius: 43%;
            border: 2px solid var(--border);
        }

        .floating-badge {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: 600;
            display: inline-flex;
            gap: 10px;
            align-items: center;
        }

        /* Hover dropdown =============================================================================================================*/
        .dropdown:hover .dropdown-menu {
            display: block;
        }

        @media (max-width: 576px) {
            .section-wrap {
                padding: 60px 0;
            }

            .btn-primary-flat {
                background: var(--primary);
                color: #fff;
                border-radius: 50px;
                padding: 10px 28px;
                border: none;
                font-weight: 500;
            }
        }

        @media (min-width: 992px) {
            .dropdown:hover .dropdown-menu {
                display: block;
            }

            .btn-primary-flat {
                background: var(--primary);
                color: #fff;
                border-radius: 50px;
                padding: 12px 30px;
                border: none;
                font-weight: 600;
            }


        }

        @media (max-width: 576px) {
            .card-img-top {
                height: 120px !important;
                object-fit: cover;
            }

            .card-body {
                padding-top: 1.25rem;
                padding-bottom: 1.25rem;
            }

            .card-body p {
                font-size: 12px;
            }

            h5 {
                font-size: 16px;
            }
        }

        /* ========================== SERVICES SECTION ========================== */
/* =================  HERO (DARK MODE) ================= */
.vendors-hero {
    background: radial-gradient(
        circle at top left,
        #1f2933,
        #0b0b0b
    );

    /* Core responsiveness */
    min-height: 100svh;        /* modern mobile-safe viewport */
    height: auto;
    display: flex;
    align-items: center;

    padding-top: clamp(60px, 8vh, 120px);
    padding-bottom: clamp(60px, 8vh, 120px);
}

/* Headline */
.vendors-hero .vendors-title {
    color: #ffffff;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    line-height: 1.15;
}

/* Accent highlight */
.vendors-hero .text-accent {
    color: #ff7a18;
}

/* Body text */
.vendors-hero .vendors-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.7;
}

/* Bullet points */
.vendors-hero .vendors-points {
    padding-left: 0;
    list-style: none;
}

.vendors-hero .vendors-points li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: clamp(0.9rem, 1vw, 0.95rem);
}

/* Badge */
.vendors-hero .badge-flat {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-size: clamp(0.75rem, 1vw, 0.85rem);
}

/* Stats */
.vendors-hero .vendors-stat h4 {
    color: #ffffff;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    margin-bottom: 4px;
}

.vendors-hero .vendors-stat p {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.7rem, 1vw, 0.85rem);
}

/* Muted helper text */
.vendors-hero .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* =========================
   BREAKPOINT REFINEMENTS
========================= */

/* Tablets & small laptops */
@media (max-width: 992px) {
    .vendors-hero {
        text-align: center;
    }

    .vendors-hero ul {
        display: inline-block;
        text-align: left;
    }
}

/* Phones */
@media (max-width: 576px) {
    .vendors-hero {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .vendors-hero .vendors-stat {
        margin-bottom: 12px;
    }
}

/* Ultra-wide screens (4K+) */
@media (min-width: 1600px) {
    .vendors-hero .container {
        max-width: 1400px;
    }
}



/**/
        .service-card {
            transition: all 0.3s ease;
            border-bottom: 4px solid transparent;
        }

        /* Hover effect */
        .service-card:hover {
            transform: translateY(-4px);
            border-bottom-color: #dc3545 !important;
            /* Bootstrap danger */
        }

        /* Image control */
        .service-card,
        .service-img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        /* Floating icon */
        .service-card .icon-bubble {
            width: 60px;
            height: 60px;
        }


        /* Tablets */
        @media (max-width: 992px) {

            .service-card img {
                height: 120px;
            }

            .service-card h5 {
                font-size: 1rem;
            }

            .service-card p {
                font-size: 0.85rem;
            }

            .service-card .icon-bubble {
                width: 45px;
                height: 45px;
            }
        }

        /* Phones */
        @media (max-width: 576px) {

            .service-card {
                border-radius: 1rem;
            }

            .service-card img {
                height: 120px !important;
            }

            .service-card h5 {
                font-size: 0.6rem;
            }

            .service-card p {
                font-size: 0.6rem;
                line-height: 1.2;
            }

            .service-card .icon-bubble {
                width: 40px;
                height: 40px;
            }
        }
        


.vendors-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
}

.vendors-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Intro bullet list */
.vendors-points li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* Vendor type cards */
.vendor-type-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.vendor-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.vendor-type-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.vendor-type-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Stats */
.vendors-stat h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.vendors-stat p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA */
.vendors-cta-text {
    max-width: 600px;
    margin: 0 auto;
}

/* =========================
   RESPONSIVE TUNING
========================= */

/* Tablets */
@media (max-width: 992px) {
    .vendors-title {
        font-size: 1.9rem;
    }
}

/* Phones */
@media (max-width: 576px) {
    .vendors-title {
        font-size: 1.5rem;
    }

    .vendors-text,
    .vendors-points li,
    .vendor-type-card p,
    .vendors-stat p {
        font-size: 0.8rem;
    }

    .vendor-type-card {
        padding: 1.5rem;
    }

    .vendors-stat h4 {
        font-size: 1.5rem;
    }
}


        /* ================= BOOK NOW SECTION ========================================================================================= */
        #book-now-section {
            background: #ffffff;
        }

        #book-now-section .info-card {
            background: linear-gradient(135deg, #0d6efd, #004ecb);
        }
        
        
        

        /* ================= WHY CHOOSE US SECTION ========================================================================================= */


        .why-choose-us {
            background: #0b0b0b;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        /* Background text */
        .why-choose-us .bg-text {
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 120px;
            font-weight: 900;
            letter-spacing: 8px;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
            pointer-events: none;
            white-space: nowrap;
        }

        /* Header */
        .section-label {
            letter-spacing: 4px;
            font-size: 14px;
            font-weight: 600;
        }

        .headline span.orange {
            color: #ff5f15;
        }

        /* =========================
   IMAGE SHAPES
========================= */

        .image-circle {
            width: 300px;
            height: 300px;
            border-radius: 50%;
        }

        .image-oval {
            width: 280px;
            height: 400px;
            border-radius: 50%;
        }

        .image-circle,
        .image-oval {
            overflow: hidden;
        }

        /* Hover border effect */
        .hover-frame {
            border: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .hover-frame:hover {
            border-color: #ff5f15;
            transform: translateY(-4px);
        }

        /* Rating badge */
        .rating-badge {
            position: absolute;
            bottom: 20px;
            background: #ff5f15;
            padding: 10px 22px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
        }

        /* =========================
   STATS
========================= */

        .stat-number {
            font-size: 48px;
            font-weight: 800;
        }

        .stat-divider {
            width: 1px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
        }

        /* =========================
   FEATURES
========================= */

        .feature-item {
            padding: 10px 12px;
            border-radius: 12px;
            transition: all 0.25s ease;
        }

        .feature-item:hover {
            background: rgba(255, 95, 21, 0.08);
        }

        .check-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #ff5f15;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        /* =========================
   BUTTON
========================= */

        .btn-learn {
            background: #0056d2;
            color: #fff;
            border-radius: 50px;
            padding: 14px 36px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-learn:hover {
            background: #0042a8;
            transform: translateY(-2px);
        }

        /* =========================
   RESPONSIVE SCALING
========================= */

        /* Large tablets */
        @media (max-width: 992px) {
            .bg-text {
                font-size: 72px;
            }

            .image-circle {
                width: 240px;
                height: 240px;
            }

            .image-oval {
                width: 220px;
                height: 320px;
            }

            .stat-number {
                font-size: 40px;
            }
        }

        /* Phones */
        @media (max-width: 576px) {
            .bg-text {
                font-size: 42px;
                top: 20px;
            }

            .image-circle,
            .image-oval {
                width: 180px;
                height: 180px;
            }

            .rating-badge {
                font-size: 13px;
                padding: 8px 16px;
            }

            .stat-number {
                font-size: 32px;
            }

            .btn-learn {
                padding: 12px 28px;
                font-size: 14px;
            }
        }


        /* =================================================== HOW IT WORKS =================================================================== */
        /* Core layout */
        .process-scroll {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            width: 100%;
        }

        /* Steps auto-fit */
        .process-step {
            flex: 1 1 0;
            max-width: 25%;
            text-align: center;
        }

        /* Icon bubble */
        .process-icon {
            width: 72px;
            height: 72px;
            background: #0056D2;
            border-radius: 50%;
        }

        /* Step number */
        .badge-num {
            position: absolute;
            top: 0;
            right: 0;
            transform: translate(40%, -40%);
            width: 28px;
            height: 28px;
            background: #FF5F15;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 600;
        }

        /* Connector line */
        .process-line {
            flex: 0 0 40px;
            height: 2px;
            background: #e5e7eb;
        }

        /* ---------- RESPONSIVE SCALING ---------- */

        /* Tablets */
        @media (max-width: 992px) {
            .process-icon {
                width: 64px;
                height: 64px;
            }

            .process-step h5 {
                font-size: 0.95rem;
            }

            .process-step p {
                font-size: 0.8rem;
            }

            .process-line {
                flex-basis: 28px;
            }
        }

        /* Phones */
        @media (max-width: 576px) {
            .process-icon {
                width: 40px;
                height: 40px;
            }

            .process-step h5 {
                font-size: 0.7rem;
            }

            .process-step p {
                font-size: 0.6rem;
                line-height: 1.2;
            }

            .badge-num {
                width: 15px;
                height: 15px;
                font-size: 0.5rem;
            }

            .process-line {
                flex-basis: 15px;
            }
        }

        /* =========================== REVIEW SECTION ============================================================================================================================= */

        /* SECTION BASE */
        #vendor-spotlight-section {
            background: radial-gradient(circle at top, #151515, #0a0a0a);
        }

        /* UTIL */
        .text-accent {
            color: #ff7a18;
        }

        .letter-space {
            letter-spacing: 0.15em;
        }

        /* CARD */
        .vendor-card {
            background: #111;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow:
                inset 0 0 12px rgba(255, 255, 255, 0.04),
                0 20px 40px rgba(0, 0, 0, 0.7);
            transition: transform .4s ease;
        }

        .vendor-card:hover {
            transform: translateY(-4px);
        }

        /* AVATAR */
        .vendor-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.12);
        }

        .vendor-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* TEXT */
        .vendor-text {
            color: #cfcfcf;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .vendor-category {
            color: #9ca3af;
        }

        /* RATING */
        .rating i {
            color: #ffc107;
        }

        .rating span {
            font-size: 0.9rem;
            color: #ddd;
        }

        /* ACTION */
        .vendor-action .btn {
            white-space: nowrap;
        }

        /* CAROUSEL DOTS */
        .carousel-indicators button {
            width: 30px;
            height: 4px;
            border-radius: 10px;
            background-color: rgba(255, 255, 255, 0.3);
        }

        .carousel-indicators .active {
            background-color: #ff7a18;
        }

        /* RESPONSIVE TUNING */
        @media (max-width: 991px) {
            .vendor-card {
                padding: 2rem;
            }
        }

        @media (max-width: 576px) {
            .vendor-avatar {
                width: 90px;
                height: 90px;
            }

            .vendor-text {
                font-size: 0.9rem;
            }
        }

        /* =========================== VENDOR ADS SECTION ============================================================================================================================= */

        .vendor-ads-section {
            background: #f5f5f5;
            position: relative;
            overflow: hidden;
        }

        /* background text */
        .ads-bg-text {
            position: absolute;
            top: 30px;
            left: 15px;
            font-size: 90px;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 1px rgba(0, 0, 0, 0.04);
            letter-spacing: 6px;
            white-space: nowrap;
            pointer-events: none;
        }

        /* header */
        .ads-label {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            color: #6b7280;
            margin-bottom: 12px;
        }

        .ads-heading {
            font-size: 44px;
            font-weight: 700;
            color: #111;
            line-height: 1.2;
        }

        .ads-heading span {
            color: #0056d2;
        }

        /* view all button */
        .ads-view-all {
            background: #ff5f15;
            color: #fff;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all .3s ease;
        }

        .ads-view-all:hover {
            background: #e55410;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 95, 21, .3);
            color: #fff;
        }

        .ads-arrow {
            width: 24px;
            height: 24px;
            background: rgba(0, 0, 0, .2);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* card */
        .ads-card {
            position: relative;
            height: 560px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
        }

        .ads-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ads-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                    rgba(0, 0, 0, .85) 0%,
                    rgba(0, 0, 0, .4) 45%,
                    transparent 100%);
        }

        /* content */
        .ads-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 24px;
        }

        .ads-title {
            color: #fff;
            font-size: 32px;
            font-weight: 700;
            max-width: 680px;
        }

        .ads-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 16px;
        }

        .ads-tags span {
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 13px;
            background: rgba(255, 255, 255, .15);
            color: #fff;
            backdrop-filter: blur(8px);
        }

        /* action */
        .ads-action {
            width: 68px;
            height: 68px;
            background: #ff5f15;
            border-radius: 50%;
            color: #fff;
            font-size: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .3s ease;
        }

        .ads-action:hover {
            background: #e55410;
            transform: scale(1.1) rotate(45deg);
            color: #fff;
        }

        /* responsive */
        @media (max-width: 991px) {
            .ads-heading {
                font-size: 32px;
            }

            .ads-card {
                height: 420px;
            }

            .ads-title {
                font-size: 22px;
            }

            .ads-content {
                padding: 24px;
                flex-direction: column;
                align-items: flex-start;
            }

            .ads-action {
                align-self: flex-end;
                width: 54px;
                height: 54px;
                font-size: 22px;
            }

            .ads-bg-text {
                font-size: 48px;
            }
        }


        /* ===== FOOTER =============================================================================== */
        .footer-section {
            margin-top: 80px;
        }

        .footer-main {
            background: #0b0b0b;
            padding: 80px 0 60px;
            border-radius: 40px 40px 0 0;
            color: #fff;
        }

        .footer-logo {
            width: 100px;
            height: 100px;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
        }

        .footer-text {
            color: #ffffff;
            font-size: 15px;
            line-height: 1.7;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-right: 10px;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: rgba(0, 86, 210, 0.15);
            border-color: #0056d2;
            transform: translateY(-2px);
        }

        .footer-newsletter {
            display: flex;
            background: #1a1a1a;
            border-radius: 50px;
            padding: 6px;
        }

        .footer-newsletter input {
            flex: 1;
            background: transparent;
            border: none;
            color: #fff;
            padding: 12px 18px;
            outline: none;
            min-width: 0;
            /* Prevents input from breaking layout on narrow screens */
        }

        .footer-newsletter button {
            width: 48px;
            height: 48px;
            background: #ff5f15;
            border: none;
            border-radius: 50%;
            color: #fff;
            cursor: pointer;
            flex-shrink: 0;
        }

        .footer-bottom {
            background: #0056d2;
            padding: 10px 0;
            color: #fff;
        }

        .footer-legal a {
            color: #fff;
            text-decoration: none;
            margin: 0 6px;
            font-size: 14px;
        }

        .footer-legal span {
            opacity: 0.6;
        }

        /* Added for mobile optimization of the radius */
        @media (max-width: 576px) {
            .footer-main {
                border-radius: 20px 20px 0 0;
                padding: 60px 0 40px;
            }
        }


        /* COOKIE SECTION */
        .cookie-alert {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: min(92vw, 340px);
            background: #ffffff;
            border: 1px solid #000000;
            border-radius: 6px;
            /* reduced radius */
            padding: 0.85rem 0.9rem;
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
            z-index: 9999;

            /* animation */
            transform: translateX(120%);
            opacity: 0;
            transition: transform 0.35s ease, opacity 0.35s ease;
        }

        .cookie-alert.show {
            transform: translateX(0);
            opacity: 1;
        }

        .cookie-alert h6 {
            font-size: 0.85rem;
            font-weight: 600;
            margin: 0 0 0.2rem;
            color: #000000;
        }

        .cookie-alert p {
            font-size: 0.78rem;
            color: #000000;
            line-height: 1.45;
            margin: 0 0 0.55rem;
        }

        .cookie-actions {
            display: flex;
            justify-content: flex-end;
            gap: 0.4rem;
        }

        .cookie-actions button {
            font-size: 0.72rem;
            padding: 0.28rem 0.7rem;
            border-radius: 4px;
            cursor: pointer;
            background: none;
        }

        .cookie-actions .btn-cancel {
            background: #ffffff;
            color: #000000;
            border: 1px solid #000000;
        }

        .cookie-actions .btn-accept {
            background: #000000;
            color: #ffffff;
            border: 1px solid #000000;
        }

        /* THANK YOU TOAST */
        .cookie-toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #000000;
            color: #ffffff;
            padding: 0.45rem 0.8rem;
            border-radius: 6px;
            font-size: 0.72rem;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.25s ease, transform 0.25s ease;
            z-index: 10000;
        }

        .cookie-toast.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile polish */
        @media (max-width: 480px) {
            .cookie-alert {
                right: 50%;
                transform: translateX(150%);
                bottom: 3rem;
            }

            .cookie-alert.show {
                transform: translateX(50%);
            }

            .cookie-toast {
                right: 50%;
                transform: translate(50%, 10px);
            }

            .cookie-toast.show {
                transform: translate(50%, 0);
            }
        }

        .brand-logo {
            width: 100px;
            height: 100px;
            object-fit: contain;
        }
        
        
/* ===== CONTACT US =============================================================================== */



/* SECTION BASE */
#contact-us-section {
    background: #ffffff;
}

/* UTIL */
.letter-space {
    letter-spacing: 0.2em;
}

/* FORM CARD */
.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* INPUTS */
.contact-card .form-control {
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
}
.contact-card .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* BUTTON */
.btn-orange {
    background: #f97316;
    color: #fff;
}
.btn-orange:hover {
    background: #ea580c;
}

/* ARROW */
.arrow-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE */
.contact-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sparkles {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #f97316;
    font-size: 22px;
}

/* INFO CARDS */
.info-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform .3s ease;
}
.info-card:hover {
    transform: translateY(-4px);
}
.icon-circle {
    width: 52px;
    height: 52px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #2563eb;
    font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-card {
        padding: 2rem 1.5rem;
    }
    .contact-image {
        margin-top: 1.5rem;
        min-height: 320px;
    }
    
.info-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform .3s ease;
}
.info-card:hover {
    transform: translateY(-4px);
}
.icon-circle {
    width: 52px;
    height: 52px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #2563eb;
    font-size: 20px;
}
}

/* ===== ABOUT US =============================================================================== */
/* SECTION BASE */
#about-us-section {
    background: #f9fafb;
}

/* UTIL */
.letter-space {
    letter-spacing: 0.18em;
}

/* CARD */
.about-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.about-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ICON */
.about-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e0e7ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* MEDIA */
.about-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

/* PLAY BUTTON */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-btn {
    width: 72px;
    height: 72px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.play-btn::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 20px;
    width: 0;
    height: 0;
    border-left: 18px solid #2563eb;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-card {
        padding: 2rem 1.5rem;
    }
    .play-btn {
        width: 60px;
        height: 60px;
    }
    .play-btn::before {
        left: 22px;
        top: 16px;
        border-left-width: 14px;
        border-top-width: 9px;
        border-bottom-width: 9px;
    }
}

@media (max-width: 576px) {
    #about-us-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}
/**/

/* FAQ CORE */
.letter-space { letter-spacing: 0.2em; }

.faq-accordion { display: flex; flex-direction: column; gap: 16px; }

.faq-item {
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: #0d6efd;
    color: #fff;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    text-align: left;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    background: rgba(255,255,255,0.2);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* SIDEBAR */
.category-box {
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.category-btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-btn.active {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

/* HELP CARD */
.help-card {
    background: #fff7ed;
    border-radius: 16px;
    padding: 24px;
}

.help-icon {
    font-size: 28px;
}

/* BUTTON */
.btn-orange {
    background: #ff6b35;
    color: #fff;
}
.btn-orange:hover {
    background: #f25a2b;
}

/* ====================================== Privacy and Policy + terms and condition ====================================================*/
/* =========================
   PRIVACY POLICY SECTION
========================= */

.policy-section {
    padding: 60px 0;
    background: #ffffff;
}

.policy-card {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #111827;
    line-height: 1.75;
}

/* Main title */
.policy-card h1,
.policy-card h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Section headings (1., 2., 3...) */
.policy-card h3,
.policy-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 12px;
    color: #0f172a;
}

/* Paragraphs */
.policy-card p {
    font-size: 15px;
    color: #374151;
    margin-bottom: 14px;
}

/* Lists */
.policy-card ul {
    padding-left: 22px;
    margin: 12px 0 18px;
}

.policy-card li {
    font-size: 15px;
    color: #374151;
    margin-bottom: 8px;
}

/* Highlight important labels */
.policy-card strong {
    color: #111827;
    font-weight: 600;
}

/* Links */
.policy-card a {
    color: #2563eb;
    text-decoration: underline;
    word-break: break-word;
}

/* Last updated text */
.policy-card .last-updated {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Divider feel between sections */
.policy-card hr {
    border: none;
    height: 1px;
    background: #e5e7eb;
    margin: 40px 0;
}

/* Mobile tuning */
@media (max-width: 768px) {
    .policy-section {
        padding: 40px 16px;
    }

    .policy-card h1,
    .policy-card h2 {
        font-size: 26px;
    }

    .policy-card h3,
    .policy-card h4 {
        font-size: 20px;
    }

    .policy-card p,
    .policy-card li {
        font-size: 14px;
    }
}

/* ================= PASSWORD RESET ================= */

.password-reset-section {
    background: var(--section-bg);
}

.password-reset-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: var(--bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* LEFT */
.password-left {
    padding: 3rem;
}

.password-left h2 {
    font-weight: 800;
    color: var(--text-dark);
}

.password-left p {
    font-size: 0.95rem;
}

/* INPUT */
.input-group-custom {
    position: relative;
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.input-group-custom input {
    width: 100%;
    padding: 14px 44px;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
}

.icon-left {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
}

.icon-right {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    cursor: pointer;
}

/* STRENGTH */
.strength {
    font-size: 0.8rem;
    margin-top: 6px;
}
.strength.weak { color: #dc2626; }
.strength.medium { color: #f59e0b; }
.strength.strong { color: #16a34a; }

/* RIGHT */
.password-right {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--text-white);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.password-right .main-icon {
    font-size: 52px;
    margin-bottom: 1rem;
}

.password-right h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.password-right p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.password-right .sub-icon {
    font-size: 26px;
    margin-top: 1.2rem;
    opacity: 0.8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .password-reset-card {
        grid-template-columns: 1fr;
    }

    .password-right {
        order: -1;
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 576px) {
    .password-left {
        padding: 2rem 1.5rem;
    }

    .password-right {
        padding: 2rem 1.5rem;
    }

    .password-right .main-icon {
        font-size: 42px;
    }
}


/**/


/* ================= PASSWORD RESET ================= */

.password-reset-section {
    background: var(--section-bg);
}

.password-reset-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: var(--bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* LEFT */
.password-left {
    padding: 3rem;
}

.password-left h2 {
    font-weight: 800;
    color: var(--text-dark);
}

.password-left p {
    font-size: 0.95rem;
}

/* INPUT */
.input-group-custom {
    position: relative;
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.input-group-custom input {
    width: 100%;
    padding: 14px 44px;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
}

.icon-left {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
}

.icon-right {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    cursor: pointer;
}

/* STRENGTH */
.strength {
    font-size: 0.8rem;
    margin-top: 6px;
}
.strength.weak { color: #dc2626; }
.strength.medium { color: #f59e0b; }
.strength.strong { color: #16a34a; }

/* RIGHT */
.password-right {
    background: linear-gradient(135deg, #000000, var(--secondary));
    color: var(--text-white);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.password-right .main-icon {
    font-size: 52px;
    margin-bottom: 1rem;
}

.password-right h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.password-right p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.password-right .sub-icon {
    font-size: 26px;
    margin-top: 1.2rem;
    opacity: 0.8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .password-reset-card {
        grid-template-columns: 1fr;
    }

    .password-right {
        order: -1;
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 576px) {
    .password-left {
        padding: 2rem 1.5rem;
    }

    .password-right {
        padding: 2rem 1.5rem;
    }

    .password-right .main-icon {
        font-size: 42px;
    }
}

/* ========================= Verify OTP=================================== */


/* OTP BOX */
.otp-box {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* OTP INPUT */
.otp-input {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #f9fafb;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    outline: none;
    transition: all .2s ease;
}

.otp-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
    background: #fff;
}

.otp-input.error {
    border-color: #dc2626;
    background: #fef2f2;
}

/* RESEND LINK */
.link-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 576px) {
    .otp-box {
        justify-content: center;
    }

    .otp-input {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

/* ULTRA-WIDE SCREENS */
@media (min-width: 1600px) {
    .password-reset-card {
        max-width: 1100px;
        margin: auto;
    }
}


/* =========================================== login-signup =============================================== */

    .auth-scope * {
    box-sizing: border-box;
}


    /* ---------------- GLOBAL FONT SCALE ---------------- */
.auth-scope {
    font-size: 16px;
}

@media(max-width:1200px){ .auth-scope { font-size:15px } }
@media(max-width:992px){ .auth-scope { font-size:14px } }
@media(max-width:768px){ .auth-scope { font-size:13px } }
@media(max-width:576px){ .auth-scope { font-size:12px } }
@media(max-width:420px){ .auth-scope { font-size:11px } }



    /* ---------------- MOBILE TABS ---------------- */
    .auth-scope .mobile-tabs {
        display: none;
    }

    @media(max-width:768px) {
        .auth-scope .mobile-tabs {
            display: flex;
            width: 100%;
            max-width: 480px;
            background: white;
            padding: 10px;
            border-radius: 14px;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 15px;
        }

        .auth-scope .mobile-tabs button {
            flex: 1;
            padding: 12px 0;
            border: none;
            background: #f0f4f8;
            border-radius: 10px;
            color: #4b5563;
            font-weight: 600;
            font-size: 1rem;
            transition: .25s;
        }

        .auth-scope .mobile-tabs button.active {
            background: linear-gradient(90deg, #34d399, var(--secondary));
            
            color: white;
            box-shadow: 0 3px 12px rgba(16, 185, 129, 0.4);
        }
    }
@media(max-width:768px) {
    .auth-scope .mobile-tabs {
        margin-left: auto;
        margin-right: auto;
    }
}


    /* ---------------- MAIN CARD ---------------- */
    .auth-scope .container {
        width: 1050px;
        max-width: 100%;
        min-height: 620px;
        background: #fff;
        border-radius: 22px;
        box-shadow: 0 25px 55px rgba(0, 0, 0, 0.10);
        position: relative;
        overflow: hidden;
        transition: .4s;
    }


    
    @media(max-width:768px) {
   .auth-scope .container {
        width: 100%;
        min-height: 700px;
        border-radius: 16px;      
        padding-bottom: 40px;      
   }
}

@media(max-width:768px) {
    .auth-scope .form-container {
        justify-content: flex-start;
        align-items: flex-start;
    }
}


    /* ---------------- FORM PANELS (DESKTOP) ---------------- */
    .auth-scope .form-container {
        position: absolute;
        top: 0;
        width: 50%;
        height: 100%;
        padding: 40px 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .6s ease-in-out;
    }

    .auth-scope .sign-in-container {
        left: 0;
        z-index: 2;
        background: linear-gradient(135deg, #ffffff, #e6f7f1);
    }

    .auth-scope .sign-up-container {
        left: 0;
        opacity: 0;
        z-index: 1;
        background: linear-gradient(135deg, #ffffff, #f0fdf4);
    }

    .auth-scope .container.right-panel-active .sign-up-container {
        transform: translateX(100%);
        opacity: 1;
        z-index: 5;
    }

    /* ---------------- MOBILE STACKED WITH SMOOTH SLIDE ---------------- */
    @media(max-width:768px) {

        .overlay-container {
            display: none !important;
        }

        .auth-scope .form-container {
            position: absolute;
            width: 100%;
            left: 0;
            top: 0;
            padding: 35px 25px;
            height: auto;
            background: white !important;

            /* Animation base state */
            opacity: 0;
            pointer-events: none;
            transform: translateX(40px);
            transition: transform .35s ease, opacity .35s ease;
        }

        .auth-scope .form-container.active {
            opacity: 1 !important;
            pointer-events: auto;
            transform: translateX(0);
            z-index: 5;
        }

        /* When hiding, slide left */
        .auth-scope .form-container.hide-left {
            opacity: 0 !important;
            pointer-events: none;
            transform: translateX(-40px);
        }

        .auth-scope .sign-in-container,
        .sign-up-container {
            background: white !important;
        }
    }

    /* ---------------- FORM ELEMENTS ---------------- */
    .auth-scope form {
        width: 100%;
        max-width: 380px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .auth-scope h1 {
        margin-bottom: 18px;
        font-size: 2.2rem;
        font-weight: 700;
    }

    .input-wrapper {
        width: 100%;
        position: relative;
    }

    .auth-scope input {
        width: 100%;
        padding: 14px 16px;
        padding-right: 45px;
        border-radius: 14px;
        border: 1px solid #d1d5db;
        background: white;
        margin-top: 12px;
        font-size: 1rem;
    }

    /* Eye Icon */
    .toggle-password {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #6b7280;
        font-size: 1.2rem;
    }

    .auth-scope button {
        width: 100%;
        max-width: 260px;
        padding: 13px 50px;
        border: none;
        border-radius: 50px;
        margin-top: 18px;
        /*background: linear-gradient(90deg, #34d399, #10b981);*/
        color: #fff;
        font-size: 1.05rem;
        font-weight: 600;
        cursor: pointer;
        transition: .25s;
    }

    /* ---------------- DESKTOP OVERLAY ---------------- */
    .overlay-container {
        position: absolute;
        top: 0;
        left: 50%;
        width: 50%;
        height: 100%;
        overflow: hidden;
        transition: .6s ease-in-out;
        z-index: 100;
    }

    .container.right-panel-active .overlay-container {
        transform: translateX(-100%);
    }

    .overlay {
        background: linear-gradient(135deg, #d1fae5, #f0fdf4);
        left: -100%;
        width: 200%;
        height: 100%;
        position: relative;
        transition: .6s ease-in-out;
    }

    .container.right-panel-active .overlay {
        transform: translateX(50%);
    }

    .overlay-panel {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 40px;
        height: 100%;
        width: 50%;
    }

    .overlay-left {
        transform: translateX(-20%);
    }

    .container.right-panel-active .overlay-left {
        transform: translateX(0);
    }

    .overlay-right {
        right: 0;
    }

    /* ---------------- GOOGLE SIGN IN BUTTON ---------------- */
    .google-btn {
        width: 100%;
        max-width: 260px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 12px 18px;
        margin-bottom: 14px;
        border: 1px solid #d1d5db;
        border-radius: 50px;
        background: #fff;
        color: #374151;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        transition: .25s ease;
        text-decoration: none;
    }

    .google-btn img {
        width: 18px;
        height: 18px;
    }

    .google-btn:hover {
        background: #f9fafb;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        transform: translateY(-1px);
    }
    
    @media (max-width: 768px) {
    .auth-scope .form-container {
        padding-top: 55px;   /* 👈 pushes form below tabs */
    }
}
@media (max-width: 768px) {
    .auth-scope .mobile-tabs {
        margin-top: 16px;
        margin-bottom: 18px;
    }
}
@media (max-width: 576px) {
    .auth-scope .mobile-tabs button {
        padding: 10px 0;
        font-size: 0.95rem;
    }
}
    /* ===== Overlay Slider ===== */
.overlay-slider {
    position: relative;
    max-width: 420px;
}

.overlay-slider .slide {
    opacity: 0;
    transform: translateY(15px);
    position: absolute;
    inset: 0;
    transition: opacity .6s ease, transform .6s ease;
}

.overlay-slider .slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.overlay-slider h1 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000000;
}

.overlay-slider p {
    font-size: 1rem;
    color: #064e3b;
    line-height: 1.6;
}



