        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            background-color: #f7fafc;
            color: #2D3748;
        }

        /* Section titles — Baloo 2 (Explore Services + Benefits) */
        .hero-stats-strip .stats-strip-title,
        .about-bidaboss-h,
        .explore-services-heading,
        .benefits-heading h2,
        .suppliers-heading h2,
        .partners-heading h2,
        .brands-header h2,
        .video-section .video-section-title,
        .stories-heading h2,
        .features-heading h2,
        .map-section-heading .map-section-title,
        .final-cta h2 {
            font-family: 'Baloo 2', cursive;
            font-weight: 800;
        }

        /* Custom scrollbar styles */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        
        /* Hero artwork overlap onto yellow stats strip */
        .hero,
        .hero-stats-strip {
            --hero-bg-overlap: clamp(4.5rem, 9vw, 8rem);
        }

        /* Hero Section – image overlaps stats strip; gradient fills transparent areas */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-image: linear-gradient(
                90deg,
                #D4A000 0%,
                #E8C020 31%,
                #E0B810 73%,
                #D4A000 97%
            );
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            padding: 2rem 1.5rem;
            position: relative;
            z-index: 2;
            overflow: visible;
            margin-bottom: calc(-1 * var(--hero-bg-overlap));
        }

        .hero::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: calc(-1 * var(--hero-bg-overlap));
            background-image: url('images/newdesign/home-bg.png');
            background-size: cover;
            background-position: center bottom;
            background-repeat: no-repeat;
            z-index: -1;
            pointer-events: none;
        }

        /* New hero section for Corporate */
        .corporate-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-image: url('images/corporate-bg.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            padding: 1rem 1rem;
            position: relative;
            overflow: hidden;
            transition: background-position 0.1s ease-out;
            color: white;
            text-align: center;
        }

        .corporate-hero .hero-content {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0;
        }

        /* New hero section for Supplier */
        .supplier-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-image: url('images/supplier-bg.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            padding: 1rem 1rem;
            position: relative;
            overflow: hidden;
            transition: background-position 0.1s ease-out;
            color: white;
            text-align: center;
        }
        
        .supplier-hero .hero-content {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin-left: 4rem;
            margin-right: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 2rem;
        }

        .hero-text {
            flex: 1;
            color: white;
            text-align: left;
            margin-right: 0rem; 
            padding-left: 0;
            margin-left: 0;
        }

        .hero-headline {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            font-size: 3.25rem;
            color: white;
            margin-bottom: 0.5rem;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            letter-spacing: -0.02em;
        }

        .hero-text-logo {
            display: block;
            max-width: 700px;
            height: auto;
            margin-bottom: 1.25rem;
        }

        .hero-tagline {
            text-shadow: 0 1px 2px rgba(0,0,0,0.4);
        }

        .hero-tagline .highlight {
            color: #FFCE00;
        }
        

        /* Hero Video Container - Sticky in top right corner */
        .hero-video {
            position: fixed !important;
            top: 70px;
            right: 30px;
            width: 320px;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 998;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            pointer-events: auto;
            margin: 0 !important;
            padding: 0 !important;
            display: block;
        }

        .hero-video:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .hero-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 900px) {
            .hero-video {
                width: 200px;
                height: 130px;
                top: 60px;
                right: 15px;
            }
        }

        @media (max-width: 576px) {
            .hero-video {
                display: none; /* Hide on very small screens */
            }
        }

        .hero-video iframe {
            width: 100%;
            height: 110%;
            border: none;
        }

        .hero-text h1 {
            font-family: 'Inter', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: white;
        }

        .oms-logo {
            height: 60px;
            margin-top: 0.5rem;
            display: inline-block;
            vertical-align: middle;
        }

        .hero-text p,
        .hero-tagline {
            font-size: 1.45rem;
            margin-bottom: 2rem;
            max-width: 520px;
            line-height: 1.6;
            color: white;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: flex-start;
            align-items: center;
        }

        .apply-btn, .shop-now {
            border: none;
            padding: 0.85rem 1.5rem;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1.25;
            min-height: 48px;
        }

        .apply-btn {
            background: #FFCE00;
            color: #1a202c;
            transition: all 0.3s ease;
        }
        
        .apply-btn:hover {
            background: linear-gradient(90deg, #FFC107 0%, #FF8C00 50%, #FF7F50 100%);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6), 0 4px 15px rgba(255, 140, 0, 0.4), 0 0 20px rgba(255, 193, 7, 0.3);
        }

        .apply-btn i {
            margin-left: 0.5rem;
        }

        .shop-now {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid white;
            backdrop-filter: blur(6px);
            transition: all 0.3s ease;
        }

        .shop-now:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #FFCE00;
            border-color: #FFCE00;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 206, 0, 0.4), 0 0 15px rgba(255, 206, 0, 0.3);
        }

        .shop-now i {
            margin-right: 0.5rem;
        }

        /* Hero Card - Replaced with video */
        .hero-card {
            display: none;
        }

        /* Stats strip below hero – sits under hero artwork overlap */
        .hero-stats-strip {
            width: 100%;
            position: relative;
            z-index: 1;
            padding-top: var(--hero-bg-overlap);
            background: linear-gradient(
                90deg,
                #D4A000 0%,
                #E8C020 31%,
                #E0B810 73%,
                #D4A000 97%
            );
            color: #1a1400;
        }

        .hero-stats-strip .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 2rem;
            box-sizing: border-box;
        }

        .hero-stats-strip .row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            align-items: stretch;
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            max-width: 100%;
        }

        /* Override Bootstrap col so grid items fill their tracks */
        .hero-stats-strip .row > [class*="col-"] {
            max-width: none;
            flex: none;
            width: 100%;
            min-width: 0;
        }

        .hero-stats-strip .stats-strip-col {
            text-align: center;
            padding: 0.5rem 2rem;
            position: relative;
        }

        .hero-stats-strip .stats-strip-title {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            color: #1a1400;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            margin-bottom: 0.5rem;
            line-height: 1.3;
            text-shadow: 0 1px 2px rgba(0,0,0,0.08);
        }

        .hero-stats-strip .stats-strip-subtitle {
            font-size: 0.9rem;
            color: rgba(26, 20, 0, 0.85);
            margin-bottom: 0;
            line-height: 1.4;
            text-shadow: 0 1px 2px rgba(0,0,0,0.06);
        }

        .hero-stats-strip .stats-strip-col-divider {
            position: relative;
        }

        .hero-stats-strip .stats-strip-col-divider::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 70%;
            background: rgba(26, 20, 0, 0.25);
        }

        @media (max-width: 767.98px) {
            .hero-stats-strip .stats-strip-col-divider::before {
                display: none;
            }

            .hero-stats-strip .stats-strip-col {
                padding-bottom: 1rem;
                border-bottom: 1px solid rgba(26, 20, 0, 0.2);
            }

            .hero-stats-strip .stats-strip-col:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

            .hero-stats-strip .stats-strip-title {
                font-size: 0.95rem;
            }
            .hero-stats-strip .stats-strip-subtitle {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .hero-stats-strip .container {
                padding-top: 1rem !important;
                padding-bottom: 1rem !important;
            }
            .hero-stats-strip .stats-strip-title {
                font-size: 0.875rem;
            }
            .hero-stats-strip .stats-strip-subtitle {
                font-size: 0.8rem;
            }
        }

        .search-container {
            position: relative;
            margin-bottom: 1.5rem;
            width: 100%;
        }

        .search-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border-radius: 30px;
            border: 1px solid #E2E8F0;
            font-size: 1rem;
            padding-right: 3rem;
        }

        .search-icon {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #A0AEC0;
        }

        .oms-logo {
            height: 80px;
            margin-top: 1rem;
            display: inline-block;
            vertical-align: middle;
            margin-left: -2%;
        }

        .welcome-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .welcome-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }
        
        .welcome-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 128, 0.8);
            color: white;
            padding: 0.5rem;
            text-align: center;
            font-weight: bold;
        }
        
        .image-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .nav-btn {
            background: #EDF2F7;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .nav-btn:hover {
            background: #E2E8F0;
        }

        .image-counter {
            font-weight: 600;
        }

        /* Features Section - sample layout */
        .features {
            padding: 5rem 2rem;
            background: #F7F7F5;
        }

        .features-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .features-heading {
            text-align: center;
            margin-bottom: 3.5rem;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-heading h2 {
            font-size: clamp(2rem, 4.5vw, 3.15rem);
            line-height: 1.08;
            letter-spacing: -0.5px;
            color: #2D3748;
            margin: 0 0 1rem 0;
        }

        .features-heading-accent {
            color: #FFC107;
            position: relative;
        }

        .features-heading p {
            font-size: 1.125rem;
            color: #718096;
            line-height: 1.7;
            margin: 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 16px;
        }

        .feature-card {
            background: #F7F7F5;
            border-radius: 24px;
            padding: 36px 32px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(0.22, 0.68, 0, 1.2), box-shadow 0.3s ease, background 0.3s, border-color 0.3s;
            border: 1.5px solid transparent;
            text-align: left;
        }

        .feature-card:not(.feature-card--hero) {
            border: 1px solid #E5E7EB;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            background: #fff;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.07);
            background: #fff;
            border-color: #EBEBEB;
        }

        .feature-card:hover .feature-icon-wrap {
            background: #FFC107;
            transform: rotate(-6deg) scale(1.08);
            color: #111;
        }

        .feature-card--hero {
            background: #FFC107;
            grid-column: span 1;
            border-color: transparent;
        }

        .feature-card--hero:hover {
            background: #FFC107;
            border-color: transparent;
            box-shadow: 0 24px 48px rgba(255, 193, 7, 0.35);
        }

        .feature-card--hero .feature-icon-wrap {
            background: rgba(0, 0, 0, 0.08);
            color: #111;
        }

        .feature-card--hero:hover .feature-icon-wrap {
            background: #fff;
        }

        .feature-card--hero .feature-card-title,
        .feature-card--hero .feature-card-desc,
        .feature-card--hero .feature-category {
            color: rgba(0, 0, 0, 0.75);
        }

        .feature-card--hero .feature-category {
            color: rgba(0, 0, 0, 0.5);
        }

        .feature-card--hero::before {
            content: '';
            position: absolute;
            right: -20px;
            top: -20px;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.05);
        }

        .feature-card--hero::after {
            content: '';
            position: absolute;
            right: 30px;
            top: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.04);
        }

        .feature-card--wide {
            grid-column: span 2;
        }

        .feature-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 28px;
            transition: background 0.3s, transform 0.3s, color 0.3s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            color: #2D3748;
        }

        .feature-category {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #718096;
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        .feature-card-title {
            font-size: 1.375rem;
            font-weight: 800;
            letter-spacing: -0.4px;
            margin: 0 0 10px 0;
            line-height: 1.2;
            color: #2D3748;
        }

        .feature-card-desc {
            font-size: 1rem;
            color: #718096;
            line-height: 1.7;
            margin: 0;
        }

        .features-trust-bar {
            margin-top: 3rem;
            margin-left: auto;
            margin-right: auto;
            max-width: 1100px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }

        .features-trust-card {
            background: #FFEC9E;
            border-radius: 16px;
            padding: 1.5rem 1.25rem;
            border: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: row;
            align-items: center;
            text-align: left;
            gap: 1rem;
        }

        .features-trust-text {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            min-width: 0;
        }

        .features-trust-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #FFC107;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            color: #111;
        }

        .features-trust-label {
            font-size: 15px;
            font-weight: 700;
            line-height: 1.2;
            color: #2D3748;
        }

        .features-trust-sub {
            font-size: 13px;
            color: #718096;
            margin: 0;
        }

        /* Benefits Section — rich yellow creative bg + geometric art (mirrors navy layout) */
        .benefits {
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
            background-color: #D4A000;
            background-image:
                linear-gradient(125deg, rgba(255, 255, 255, 0.12) 0%, transparent 42%),
                linear-gradient(305deg, rgba(255, 213, 79, 0.15) 0%, transparent 38%),
                repeating-linear-gradient(
                    -12deg,
                    transparent,
                    transparent 72px,
                    rgba(255, 255, 255, 0.14) 72px,
                    rgba(255, 255, 255, 0.14) 73px
                ),
                linear-gradient(
                    168deg,
                    #A67C00 0%,
                    #C99700 22%,
                    #E0B810 42%,
                    #FFD54F 58%,
                    #F5C518 75%,
                    #C9A000 100%
                );
        }

        .benefits::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 55% 45% at 50% -5%, rgba(255, 255, 255, 0.32) 0%, transparent 55%),
                radial-gradient(ellipse 40% 35% at 100% 50%, rgba(166, 124, 0, 0.28) 0%, transparent 50%);
            z-index: 0;
            pointer-events: none;
        }

        .benefits::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.16'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 1;
            z-index: 0;
            pointer-events: none;
        }

        .benefits-bg-art {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .benefits-shape {
            position: absolute;
            display: block;
            pointer-events: none;
        }

        .benefits-shape--ring-lg {
            width: min(520px, 90vw);
            height: min(520px, 90vw);
            border: 2px solid rgba(255, 255, 255, 0.48);
            border-radius: 50%;
            top: -18%;
            right: -12%;
            box-shadow:
                inset 0 0 60px rgba(255, 255, 255, 0.18),
                0 0 80px rgba(255, 213, 79, 0.25);
        }

        .benefits-shape--ring-md {
            width: min(280px, 50vw);
            height: min(280px, 50vw);
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            bottom: 8%;
            left: -6%;
            box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.12);
        }

        .benefits-shape--blob-tr {
            width: 340px;
            height: 340px;
            top: 12%;
            left: -8%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.38) 0%, transparent 68%);
            border-radius: 50%;
            filter: blur(2px);
        }

        .benefits-shape--blob-bl {
            width: 420px;
            height: 420px;
            bottom: -15%;
            right: -10%;
            background: radial-gradient(circle, rgba(120, 85, 0, 0.38) 0%, transparent 70%);
            border-radius: 50%;
        }

        .benefits-shape--arc {
            width: 200px;
            height: 200px;
            top: 42%;
            right: 8%;
            border: 3px solid transparent;
            border-top-color: rgba(255, 255, 255, 0.65);
            border-right-color: rgba(255, 255, 255, 0.32);
            border-radius: 50%;
            transform: rotate(-25deg);
        }

        .benefits-shape--dots {
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.65) 1.5px, transparent 1.5px);
            background-size: 28px 28px;
            opacity: 0.55;
            mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, #000 20%, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, #000 20%, transparent 75%);
        }

        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .benefits-heading {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        /* Section badges — icon capsule + label */
        .section-pill {
            position: relative;
            z-index: 0;
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.4rem 1.35rem 0.4rem 0.4rem;
            border-radius: 999px;
            font-family: 'Nunito', sans-serif;
            margin-bottom: 1.35rem;
            isolation: isolate;
            transition:
                transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
        }

        .section-pill::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: inherit;
            padding: 2px;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.65) 0%,
                rgba(255, 255, 255, 0.05) 40%,
                rgba(255, 255, 255, 0.35) 100%
            );
            -webkit-mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            opacity: 0.85;
        }

        .section-pill__icon {
            position: relative;
            z-index: 1;
            flex-shrink: 0;
            width: 2.15rem;
            height: 2.15rem;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.82rem;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.55),
                0 3px 10px rgba(0, 0, 0, 0.12);
        }

        .section-pill__label {
            position: relative;
            z-index: 1;
            font-size: 0.68rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            line-height: 1;
        }

        .section-pill:hover {
            transform: translateY(-2px) scale(1.02);
        }

        .section-pill--creative-amber {
            color: #7a5f00;
            background: linear-gradient(180deg, #fffef8 0%, #fff6d0 100%);
            border: 1px solid rgba(255, 255, 255, 0.85);
            box-shadow:
                0 8px 26px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(255, 236, 158, 0.35);
        }

        .section-pill--creative-amber .section-pill__icon {
            color: #fff9d6;
            background: linear-gradient(145deg, #f5c518 0%, #d4a000 100%);
        }

        .section-pill--creative-amber:hover {
            box-shadow:
                0 12px 32px rgba(0, 0, 0, 0.16),
                0 0 24px rgba(255, 214, 0, 0.25);
        }

        .section-pill--on-gold-dark {
            color: #7a5f00;
            background: linear-gradient(180deg, #fffef9 0%, #fff4d4 48%, #ffeab0 100%);
            border: 1px solid rgba(255, 255, 255, 0.95);
            box-shadow:
                0 10px 30px rgba(120, 90, 0, 0.16),
                0 0 0 1px rgba(245, 197, 24, 0.22);
        }

        .section-pill--on-gold-dark .section-pill__icon {
            color: #fff9d6;
            background: linear-gradient(145deg, #e8b810 0%, #c9a000 100%);
        }

        .section-pill--on-gold-dark:hover {
            box-shadow:
                0 14px 36px rgba(120, 90, 0, 0.22),
                0 0 0 1px rgba(245, 197, 24, 0.4);
        }

        .section-pill--on-neutral {
            color: #8a6b00;
            background: linear-gradient(180deg, #ffffff 0%, #fff9eb 100%);
            border: 1px solid rgba(245, 197, 24, 0.35);
            box-shadow:
                0 6px 22px rgba(180, 130, 0, 0.1),
                0 0 0 1px rgba(255, 248, 228, 0.8);
        }

        .section-pill--on-neutral .section-pill__icon {
            color: #fffef8;
            background: linear-gradient(145deg, #f5c518 0%, #e8b810 100%);
        }

        .section-pill--on-neutral:hover {
            box-shadow:
                0 10px 28px rgba(245, 197, 24, 0.18),
                0 0 0 1px rgba(245, 197, 24, 0.3);
        }

        .section-pill--on-cool {
            color: #4338ca;
            background: linear-gradient(180deg, #ffffff 0%, #eef2ff 55%, #e0e7ff 100%);
            border: 1px solid rgba(129, 140, 248, 0.45);
            box-shadow:
                0 8px 26px rgba(79, 70, 229, 0.12),
                0 0 0 1px rgba(199, 210, 254, 0.6);
        }

        .section-pill--on-cool .section-pill__icon {
            color: #fff;
            background: linear-gradient(145deg, #6366f1 0%, #4f46e5 100%);
        }

        .section-pill--on-cool:hover {
            box-shadow:
                0 12px 32px rgba(79, 70, 229, 0.18),
                0 0 0 1px rgba(129, 140, 248, 0.55);
        }

        .map-section-heading .map-section-title,
        .map-section-heading h2.map-section-title {
            white-space: nowrap;
            font-size: clamp(1.05rem, 2.65vw, 2.5rem);
            line-height: 1.15;
            margin-bottom: 1rem;
        }

        @media (prefers-reduced-motion: reduce) {
            .section-pill:hover {
                transform: none;
            }
        }

        @media (max-width: 520px) {
            .map-section-heading .map-section-title,
            .map-section-heading h2.map-section-title {
                font-size: clamp(0.92rem, 4.2vw, 1.35rem);
            }
        }

        .benefits-heading h2 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            color: #3A3A3A;
            letter-spacing: 0.01em;
            line-height: 1.1;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
        }

        .benefits-heading h2 em {
            font-style: normal;
            color: #fff;
            text-shadow: 0 2px 14px rgba(166, 124, 0, 0.45);
        }

        .benefits-heading p {
            margin-top: 1rem;
            font-size: 1rem;
            color: #FFEC9E;
            font-weight: 600;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.75rem;
        }

        .benefit-card {
            position: relative;
            border-radius: 26px;
            overflow: hidden;
            isolation: isolate;
            transform: translateZ(0);
            min-height: 260px;
            background: linear-gradient(
                155deg,
                rgba(255, 255, 255, 0.88) 0%,
                rgba(255, 253, 245, 0.8) 45%,
                rgba(255, 248, 228, 0.75) 100%
            );
            backdrop-filter: blur(36px) saturate(190%);
            -webkit-backdrop-filter: blur(36px) saturate(190%);
            box-shadow:
                0 20px 48px rgba(120, 90, 0, 0.14),
                0 4px 16px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.98);
            transition:
                transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
        }

        @keyframes benefit-card-in {
            from {
                opacity: 0;
                transform: translateY(28px) scale(0.97);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Glass edge ring */
        .benefit-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1.5px;
            background: linear-gradient(
                145deg,
                rgba(255, 255, 255, 0.95) 0%,
                rgba(255, 255, 255, 0.35) 30%,
                rgba(255, 193, 7, 0.2) 55%,
                rgba(255, 255, 255, 0.5) 100%
            );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: 0;
        }

        .benefit-card-no {
            position: absolute;
            top: 0.65rem;
            right: 1rem;
            font-family: 'Baloo 2', cursive;
            font-size: clamp(2.5rem, 4vw, 3.25rem);
            font-weight: 800;
            line-height: 1;
            color: rgba(10, 30, 100, 0.07);
            letter-spacing: -0.04em;
            pointer-events: none;
            z-index: 1;
            user-select: none;
        }

        .benefit-card-orb {
            position: absolute;
            width: 140px;
            height: 140px;
            top: -40px;
            right: -40px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 193, 7, 0.22) 0%, transparent 68%);
            pointer-events: none;
            z-index: 0;
            transition: transform 0.45s ease, opacity 0.45s ease;
        }

        .benefit-card-inner {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 260px;
            padding: 1.85rem 1.65rem 1.75rem;
        }

        .benefit-icon {
            width: 58px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.35rem;
            border-radius: 18px;
            font-size: 1.35rem;
            color: #fff;
            background: linear-gradient(145deg, #FFD54F 0%, #FFC107 48%, #E5A800 100%);
            box-shadow:
                0 10px 24px rgba(201, 160, 0, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.55),
                inset 0 -2px 0 rgba(166, 124, 0, 0.15);
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
        }

        .benefit-card h3 {
            font-family: 'Baloo 2', cursive;
            font-size: 1.22rem;
            font-weight: 700;
            color: #0A1E64;
            margin: 0 0 0.6rem 0;
            letter-spacing: 0.01em;
            line-height: 1.25;
            padding-right: 2rem;
        }

        .benefit-card p {
            margin: 0;
            font-size: 0.93rem;
            font-weight: 500;
            line-height: 1.72;
            color: #4A4030;
            flex-grow: 1;
        }

        .benefit-card-accent {
            display: block;
            width: 0;
            height: 3px;
            margin-top: 1.25rem;
            border-radius: 999px;
            background: linear-gradient(90deg, #FFC107, #FFE082, transparent);
            transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .benefit-card:hover {
            transform: translateY(-8px) scale(1.015);
            box-shadow:
                0 28px 56px rgba(120, 90, 0, 0.2),
                0 10px 24px rgba(0, 0, 0, 0.07),
                inset 0 1px 0 #fff;
        }

        .benefit-card:hover .benefit-card-orb {
            transform: scale(1.15);
            opacity: 1;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.06) rotate(-4deg);
            box-shadow:
                0 14px 28px rgba(201, 160, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
        }

        .benefit-card:hover .benefit-card-accent {
            width: 72px;
        }

        @supports not (backdrop-filter: blur(1px)) {
            .benefit-card {
                background: #FFF9E6;
                border: 1px solid rgba(255, 255, 255, 0.85);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .benefit-card {
                animation: none;
            }
            .benefit-card:hover {
                transform: translateY(-4px);
            }
        }

        /* Benefits responsive (match benefits-section.html) */
        @media (max-width: 900px) {
            .benefits-grid {
                grid-template-columns: 1fr 1fr;
            }
            .benefits-heading h2 {
                font-size: 2rem;
            }
            .benefits-heading p {
                font-size: 0.95rem;
            }
            .benefit-card h3 {
                font-size: 1.05rem;
            }
            .benefit-card p {
                font-size: 0.85rem;
            }
            .benefit-card-inner {
                padding: 1.6rem 1.35rem 1.65rem;
            }
        }

        @media (max-width: 600px) {
            .benefits {
                padding: 4rem 1.25rem;
            }
            .benefits-shape--ring-lg {
                width: 320px;
                height: 320px;
                top: -22%;
                right: -28%;
            }
            .benefits-shape--blob-tr,
            .benefits-shape--blob-bl {
                width: 220px;
                height: 220px;
            }
            .benefits-shape--arc {
                display: none;
            }
            .benefits-heading h2 {
                font-size: 1.6rem;
            }
            .benefits-heading p {
                font-size: 0.85rem;
            }
            .benefit-card h3 {
                font-size: 1rem;
                padding-right: 1.5rem;
            }
            .benefit-card p {
                font-size: 0.82rem;
            }
            .benefit-card {
                min-height: 220px;
                border-radius: 20px;
            }
            .benefit-card-inner {
                min-height: 220px;
                padding: 1.35rem 1.15rem 1.5rem;
            }
            .benefit-card-no {
                font-size: 2rem;
                top: 0.5rem;
                right: 0.75rem;
            }
            .benefit-icon {
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
                border-radius: 14px;
                margin-bottom: 1rem;
            }
            .benefits-grid {
                gap: 1rem;
            }
        }

        @media (max-width: 400px) {
            .benefits-heading h2 {
                font-size: 1.3rem;
            }
            .benefits-heading p {
                font-size: 0.78rem;
            }
            .benefit-card h3 {
                font-size: 0.88rem;
            }
            .benefit-card p {
                font-size: 0.73rem;
            }
            .benefit-card {
                padding: 1.1rem 0.9rem 1.3rem;
                border-radius: 14px;
            }
            .benefit-icon {
                width: 38px;
                height: 38px;
                font-size: 0.95rem;
            }
        }

        /* Video Section – cream base + random blurred shapes */
        .video-section {
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
            background-color: #fdfbf4;
            background-image: linear-gradient(
                165deg,
                #fffef9 0%,
                #fdfbf4 45%,
                #faf6eb 100%
            );
        }

        .video-section::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(245, 197, 24, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(245, 197, 24, 0.06) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, #000 15%, transparent 72%);
            -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, #000 15%, transparent 72%);
        }

        .video-section::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 45% 38% at 92% 78%, rgba(212, 160, 0, 0.1) 0%, transparent 52%),
                radial-gradient(ellipse 35% 30% at 50% 100%, rgba(255, 236, 158, 0.35) 0%, transparent 60%);
        }

        .video-section-bg-art {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            filter: blur(5px);
            /* Keep sides decorative; center stays clear for video content */
            mask-image: radial-gradient(ellipse 52% 48% at 50% 48%, transparent 0%, #000 68%);
            -webkit-mask-image: radial-gradient(ellipse 52% 48% at 50% 48%, transparent 0%, #000 68%);
        }

        .video-shape {
            position: absolute;
            display: block;
            pointer-events: none;
            opacity: var(--sh-opacity, 0.78);
            transform: rotate(var(--sh-rot, 0deg));
            transform-origin: center center;
            background: var(--sh-fill, #f5c518);
        }

        .video-shape--sm { --sh-scale: 0.65; }
        .video-shape--lg { --sh-scale: 1.35; }

        .video-shape--tone-a { --sh-fill: #f5c518; }
        .video-shape--tone-b { --sh-fill: #ffd54f; }
        .video-shape--tone-c { --sh-fill: #e8b810; }
        .video-shape--tone-d { --sh-fill: #ffec9e; }
        .video-shape--tone-e { --sh-fill: #d4a000; }

        .video-shape--circle {
            width: calc(28px * var(--sh-scale, 1));
            height: calc(28px * var(--sh-scale, 1));
            border-radius: 50%;
        }

        .video-shape--ring {
            width: calc(32px * var(--sh-scale, 1));
            height: calc(32px * var(--sh-scale, 1));
            border-radius: 50%;
            background: transparent;
            border: calc(4px * var(--sh-scale, 1)) solid var(--sh-fill, #f5c518);
        }

        .video-shape--tri {
            width: calc(26px * var(--sh-scale, 1));
            height: calc(26px * var(--sh-scale, 1));
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            border-radius: 0;
        }

        .video-shape--diamond {
            width: calc(22px * var(--sh-scale, 1));
            height: calc(22px * var(--sh-scale, 1));
            border-radius: 3px;
            transform: rotate(calc(var(--sh-rot, 0deg) + 45deg));
        }

        .video-shape--rect {
            width: calc(36px * var(--sh-scale, 1));
            height: calc(14px * var(--sh-scale, 1));
            border-radius: 4px;
        }

        .video-shape--pill {
            width: calc(44px * var(--sh-scale, 1));
            height: calc(16px * var(--sh-scale, 1));
            border-radius: 999px;
        }

        .video-shape--hex {
            width: calc(30px * var(--sh-scale, 1));
            height: calc(30px * var(--sh-scale, 1));
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
        }

        .video-shape--blob {
            width: calc(34px * var(--sh-scale, 1));
            height: calc(30px * var(--sh-scale, 1));
            border-radius: 58% 42% 62% 38% / 48% 55% 45% 52%;
        }

        .video-shape--arc {
            width: calc(30px * var(--sh-scale, 1));
            height: calc(30px * var(--sh-scale, 1));
            border-radius: 50%;
            background: transparent;
            border: calc(5px * var(--sh-scale, 1)) solid var(--sh-fill, #f5c518);
            border-color: var(--sh-fill, #f5c518) transparent transparent transparent;
        }

        .video-shape--semi {
            width: calc(28px * var(--sh-scale, 1));
            height: calc(14px * var(--sh-scale, 1));
            border-radius: 100px 100px 0 0;
        }

        .video-shape--cross {
            width: calc(24px * var(--sh-scale, 1));
            height: calc(24px * var(--sh-scale, 1));
            background: transparent;
        }

        .video-shape--cross::before,
        .video-shape--cross::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            background: var(--sh-fill, #f5c518);
            border-radius: 2px;
            transform: translate(-50%, -50%);
        }

        .video-shape--cross::before {
            width: calc(22px * var(--sh-scale, 1));
            height: calc(5px * var(--sh-scale, 1));
        }

        .video-shape--cross::after {
            width: calc(5px * var(--sh-scale, 1));
            height: calc(22px * var(--sh-scale, 1));
        }

        /* Scattered positions — left & right edges */
        .video-shape--s1  { top: 6%;  left: 4%;  --sh-rot: -18deg; }
        .video-shape--s2  { top: 14%; left: 12%; --sh-rot: 24deg; }
        .video-shape--s3  { top: 22%; left: 3%;  --sh-rot: 52deg; }
        .video-shape--s4  { top: 32%; left: 10%; --sh-rot: -32deg; }
        .video-shape--s5  { top: 42%; left: 5%;  --sh-rot: 12deg; }
        .video-shape--s6  { top: 52%; left: 14%; --sh-rot: -48deg; }
        .video-shape--s7  { top: 62%; left: 2%;  --sh-rot: 36deg; }
        .video-shape--s8  { top: 72%; left: 9%;  --sh-rot: -12deg; }
        .video-shape--s9  { top: 82%; left: 4%;  --sh-rot: 68deg; }
        .video-shape--s10 { top: 90%; left: 13%; --sh-rot: -24deg; }
        .video-shape--s11 { top: 48%; left: 16%; --sh-rot: 8deg; --sh-opacity: 0.65; }
        .video-shape--s12 { top: 18%; left: 18%; --sh-rot: -56deg; }
        .video-shape--s13 { top: 8%;  right: 5%;  --sh-rot: 22deg; }
        .video-shape--s14 { top: 16%; right: 11%; --sh-rot: -38deg; }
        .video-shape--s15 { top: 26%; right: 3%;  --sh-rot: 44deg; }
        .video-shape--s16 { top: 36%; right: 9%;  --sh-rot: -16deg; }
        .video-shape--s17 { top: 46%; right: 4%;  --sh-rot: 58deg; }
        .video-shape--s18 { top: 56%; right: 13%; --sh-rot: -42deg; }
        .video-shape--s19 { top: 66%; right: 2%;  --sh-rot: 14deg; }
        .video-shape--s20 { top: 76%; right: 8%;  --sh-rot: -28deg; }
        .video-shape--s21 { top: 86%; right: 5%;  --sh-rot: 72deg; }
        .video-shape--s22 { top: 94%; right: 12%; --sh-rot: -8deg; }

        .video-section-inner {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1060px;
            margin: 0 auto;
            isolation: isolate;
        }

        .video-section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .video-section-header .section-pill,
        .benefits-heading .section-pill {
            display: inline-flex;
        }

        .video-section .video-section-title {
            font-size: clamp(32px, 5vw, 52px);
            color: #1a1400;
            line-height: 1.1;
            margin: 0 0 0.75rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.25em 0.4em;
        }

        .video-section .video-section-title-logo {
            height: 0.9em;
            width: auto;
            vertical-align: middle;
            display: inline-block;
        }

        .video-section .video-section-subtitle {
            color: #7a6f50;
            font-size: clamp(0.9rem, 2vw, 1.05rem);
            line-height: 1.65;
            max-width: 36rem;
            margin: 0 auto;
        }

        .video-stage {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }

        /* Now-playing player — light showcase with floating info cards */
        .video-stage-card {
            position: relative;
            padding: 1.25rem;
            border-radius: 28px;
            background: linear-gradient(165deg, #fffdf8 0%, #fff6dc 48%, #fffdf8 100%);
            border: 1px solid rgba(245, 197, 24, 0.38);
            box-shadow:
                0 22px 55px rgba(180, 130, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
            overflow: visible;
        }

        .video-stage-card::before {
            content: '';
            position: absolute;
            top: -30px;
            right: 8%;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 197, 24, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .video-stage-player-block {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .video-stage-meta {
            margin-top: 1rem;
            padding: 0 0.15rem;
        }

        .video-section .video-main-player {
            position: relative;
            width: 100%;
            cursor: pointer;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .video-player-shell {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 20px;
            overflow: hidden;
            background: #2a2200;
            box-shadow:
                0 0 0 2px rgba(245, 197, 24, 0.5),
                0 16px 40px rgba(120, 90, 0, 0.18);
        }

        .video-player-shell::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.2) 0%,
                transparent 35%,
                transparent 70%,
                rgba(26, 20, 0, 0.15) 100%
            );
            z-index: 2;
        }

        .video-section .video-main-player video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .video-episode-tag {
            position: absolute;
            top: 14px;
            right: 14px;
            left: auto;
            z-index: 4;
            font-family: 'Nunito', sans-serif;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #1a1400;
            background: linear-gradient(135deg, #ffe566, #f5c518);
            padding: 0.4rem 0.7rem;
            border-radius: 999px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
        }

        .video-section .video-play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            background: rgba(26, 20, 0, 0.22);
            transition: opacity 0.25s ease, visibility 0.25s ease;
            border: none;
            padding: 0;
        }

        .video-section .video-main-player.playing .video-play-overlay {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .video-section .video-play-btn {
            position: relative;
            width: 88px;
            height: 88px;
            border: none;
            border-radius: 50%;
            background: linear-gradient(145deg, #fff 0%, #fff8d6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
            box-shadow:
                0 0 0 8px rgba(245, 197, 24, 0.25),
                0 12px 32px rgba(120, 90, 0, 0.2);
        }

        .video-play-btn-ring {
            position: absolute;
            inset: -14px;
            border-radius: 50%;
            border: 2px solid rgba(255, 236, 158, 0.55);
            animation: video-play-pulse 2.2s ease-in-out infinite;
        }

        @keyframes video-play-pulse {
            0%, 100% { transform: scale(1); opacity: 0.75; }
            50% { transform: scale(1.12); opacity: 0.25; }
        }

        .video-section .video-main-player:hover .video-play-btn {
            transform: scale(1.07);
        }

        .video-section .video-play-btn svg {
            width: 30px;
            height: 30px;
            fill: #c9a000;
            margin-left: 4px;
        }

        .video-stage-progress {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            padding: 0.15rem 0.25rem 0;
        }

        .video-stage-progress .video-progress-track {
            flex: 1;
            height: 6px;
            margin: 0;
            background: rgba(245, 197, 24, 0.28);
            border-radius: 999px;
            overflow: hidden;
        }

        .video-progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #e8b810, #f5c518, #ffe566);
            border-radius: 999px;
            transition: width 0.15s linear;
            box-shadow: 0 0 10px rgba(245, 197, 24, 0.35);
        }

        .video-progress-time {
            flex-shrink: 0;
            min-width: 4.75rem;
            text-align: right;
            font-family: 'Nunito', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: #7a6f50;
            letter-spacing: 0.02em;
        }

        .video-now-label {
            display: block;
            font-family: 'Nunito', sans-serif;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #9a7b00;
            margin-bottom: 0.35rem;
        }

        .video-section .video-info-title {
            font-family: 'Baloo 2', cursive;
            font-weight: 800;
            font-size: clamp(1.1rem, 2.2vw, 1.45rem);
            color: #1a1400;
            margin: 0 0 0.35rem 0;
            line-height: 1.15;
        }

        .video-section .video-info-desc {
            font-size: 0.88rem;
            color: #6b6248;
            margin: 0;
            line-height: 1.55;
        }

        .video-playlist {
            position: relative;
            padding: 1.35rem 1.35rem 1.5rem;
            border-radius: 22px;
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 248, 228, 0.75) 100%);
            border: 1px solid rgba(245, 197, 24, 0.32);
            box-shadow:
                0 16px 40px rgba(180, 130, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
            overflow: hidden;
        }

        .video-playlist::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -30px;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(245, 197, 24, 0.22) 0%, transparent 68%);
            pointer-events: none;
        }

        .video-playlist::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
            background-size: 28px 28px;
            mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
            -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
            pointer-events: none;
        }

        .video-playlist-header {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1.15rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed rgba(245, 197, 24, 0.4);
        }

        .video-playlist-heading {
            text-align: left;
        }

        .video-playlist-eyebrow {
            display: block;
            font-family: 'Nunito', sans-serif;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #c9a000;
            margin-bottom: 0.2rem;
        }

        .video-playlist-title {
            font-family: 'Baloo 2', cursive;
            font-size: 1.35rem;
            font-weight: 800;
            color: #1a1400;
            margin: 0;
            line-height: 1.2;
        }

        .video-playlist-nav {
            display: flex;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .video-section .video-strip-arrow {
            width: 42px;
            height: 42px;
            min-width: 44px;
            min-height: 44px;
            border-radius: 12px;
            border: 1px solid rgba(245, 197, 24, 0.45);
            background: rgba(255, 255, 255, 0.9);
            color: #1a1400;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .video-section .video-strip-arrow:hover:not(:disabled):not(.disabled) {
            background: #f5c518;
            border-color: #f5c518;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(245, 197, 24, 0.35);
        }

        .video-section .video-strip-arrow:disabled,
        .video-section .video-strip-arrow.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .video-section .video-strip-arrow svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .video-playlist-rail {
            position: relative;
            z-index: 1;
        }

        .video-section .video-thumbnails {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

        .video-section .video-thumb {
            position: relative;
            display: flex;
            flex-direction: column;
            font: inherit;
            color: inherit;
            appearance: none;
            -webkit-appearance: none;
            width: 100%;
            padding: 0;
            text-align: left;
            border: 1px solid rgba(245, 197, 24, 0.28);
            border-radius: 18px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.88);
            box-shadow: 0 8px 24px rgba(26, 20, 0, 0.06);
            transition:
                border-color 0.25s ease,
                background 0.25s ease,
                box-shadow 0.25s ease,
                transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            overflow: hidden;
        }

        .video-section .video-thumb::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            box-shadow: inset 0 0 0 0 rgba(245, 197, 24, 0);
            transition: box-shadow 0.25s ease;
        }

        .video-section .video-thumb:hover {
            transform: translateY(-6px) rotate(-0.4deg);
            border-color: rgba(245, 197, 24, 0.55);
            box-shadow: 0 16px 36px rgba(245, 197, 24, 0.2);
        }

        .video-section .video-thumb.active {
            border-color: rgba(245, 197, 24, 0.75);
            background: linear-gradient(180deg, #fffef8 0%, #fff6d8 100%);
            box-shadow: 0 18px 40px rgba(245, 197, 24, 0.22);
            transform: translateY(-4px);
        }

        .video-section .video-thumb.active::after {
            box-shadow: inset 0 0 0 2px rgba(245, 197, 24, 0.45);
        }

        .video-section .video-thumb-media {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: linear-gradient(135deg, #3d3200 0%, #1a1400 100%);
        }

        .video-thumb-episode {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 3;
            font-family: 'Baloo 2', cursive;
            font-size: 0.85rem;
            font-weight: 800;
            color: #1a1400;
            background: rgba(255, 255, 255, 0.92);
            padding: 0.2rem 0.45rem;
            border-radius: 6px;
            line-height: 1;
        }

        .video-thumb-live {
            position: absolute;
            bottom: 10px;
            left: 10px;
            z-index: 3;
            font-family: 'Nunito', sans-serif;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #1a1400;
            background: #f5c518;
            padding: 0.28rem 0.5rem;
            border-radius: 999px;
        }

        .video-section .video-thumb-img-wrap {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .video-section .video-thumb-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.35s ease;
        }

        .video-section .video-thumb:hover .video-thumb-img {
            transform: scale(1.06);
        }

        .video-section .video-thumb-gradient {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg, transparent 40%, rgba(26, 20, 0, 0.45) 100%);
        }

        .video-section .video-thumb-play {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s, background 0.2s;
        }

        .video-section .video-thumb:hover .video-thumb-play,
        .video-section .video-thumb.active .video-thumb-play {
            transform: translate(-50%, -50%) scale(1.08);
            background: #f5c518;
        }

        .video-section .video-thumb-play svg {
            width: 15px;
            height: 15px;
            fill: #1a1400;
            margin-left: 2px;
        }

        .video-section .video-thumb-body {
            padding: 0.85rem 0.9rem 1rem;
        }

        .video-thumb-tag {
            display: inline-block;
            font-family: 'Nunito', sans-serif;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #9a7b00;
            background: rgba(245, 197, 24, 0.2);
            padding: 0.22rem 0.5rem;
            border-radius: 999px;
            margin-bottom: 0.4rem;
        }

        .video-section .video-thumb-title {
            display: block;
            font-family: 'Baloo 2', cursive;
            font-size: 0.95rem;
            font-weight: 800;
            color: #1a1400;
            line-height: 1.25;
            margin-bottom: 0.35rem;
        }

        .video-section .video-thumb-desc {
            display: block;
            font-size: 0.76rem;
            color: #7a6f50;
            line-height: 1.45;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-section .video-thumb.active .video-thumb-title {
            color: #7a5f00;
        }


        /* Video Section - Responsive (match video-section.html) */
        @media (max-width: 900px) {
            .video-section {
                padding: 3.5rem 1.5rem;
            }

            .video-section-bg-art {
                filter: blur(4px);
            }

            .video-shape {
                --sh-opacity: 0.68;
            }

            .video-stage-card {
                padding: 0.75rem;
                border-radius: 18px;
            }

            .video-player-shell {
                border-radius: 14px;
            }
            .video-playlist {
                padding: 1.1rem;
            }

            .video-section .video-thumbnails {
                gap: 0.85rem;
            }

            .video-section .video-play-btn {
                width: 64px;
                height: 64px;
            }

            .video-section .video-play-btn svg {
                width: 24px;
                height: 24px;
            }
        }

        @media (max-width: 600px) {
            .video-section {
                padding: 2.5rem 1rem;
            }

            .video-section-header {
                margin-bottom: 1.75rem;
            }

            .video-section-bg-art {
                filter: blur(3px);
            }

            .video-shape--s11,
            .video-shape--s12,
            .video-shape--s20,
            .video-shape--s21,
            .video-shape--s22 {
                display: none;
            }

            .video-section-inner {
                max-width: 100%;
            }
            .video-section .video-section-title {
                font-size: clamp(24px, 7vw, 34px);
            }
            .video-playlist-header {
                flex-wrap: wrap;
            }

            .video-section .video-thumbnails {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.75rem;
            }

            .video-section .video-play-btn {
                width: 56px;
                height: 56px;
            }

            .video-section .video-play-btn svg {
                width: 22px;
                height: 22px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .video-play-btn-ring {
                animation: none;
            }

            .video-section .video-thumb:hover,
            .video-section .video-thumb.active {
                transform: none;
            }
        }

        @media (max-width: 380px) {
            .video-section {
                padding: 2rem 0.75rem;
            }
            .video-section .video-thumbnails {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }
            .video-section .video-section-title {
                font-size: clamp(22px, 8vw, 28px);
            }
        }

        .success-stories {
            padding: 5rem 2rem;
            background: url('images/newdesign/bg-yellow.png') center / cover no-repeat;
            color: #1a1400;
        }

        .stories-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .stories-heading {
            text-align: center;
            margin-bottom: 3rem;
        }

        .stories-heading h2 {
            font-size: clamp(2rem, 4.5vw, 3.15rem);
            line-height: 1.1;
            letter-spacing: 0.01em;
            margin-bottom: 1rem;
        }

        .stories-heading p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .story-card {
            background: #ffffff;
            padding: 1.75rem 1.5rem;
            border-radius: 16px;
            text-align: left;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            color: #343a40;
            position: relative;
            overflow: visible;
        }

        .story-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .story-card-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .story-stars {
            color: #ffc107;
            font-size: 1rem;
            letter-spacing: 0.1em;
        }

        .story-stars .fa-star {
            margin-right: 0.05em;
        }

        .story-quote-icon {
            position: absolute;
            top: -4px;
            right: 12px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #ffc107;
            color: #1a1400;
            font-size: 1.5rem;
            font-weight: 700;
            font-family: Georgia, serif;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
        }

        .story-quote {
            margin-bottom: 1rem;
        }

        .story-text {
            font-size: 1rem;
            line-height: 1.55;
            color: #343a40;
            font-weight: 600;
            margin: 0 0 0.5rem 0;
        }

        .story-tagline {
            font-size: 1rem;
            line-height: 1.5;
            color: #6c757d;
            font-weight: 400;
            margin: 0;
        }

        .story-divider {
            height: 1px;
            background: #dee2e6;
            margin: 1rem 0 1.25rem 0;
        }

        .story-author {
            display: flex;
            align-items: center;
            gap: 0.875rem;
        }

        .seller-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            background: #ebe8f3;
        }

        .story-author-info {
            min-width: 0;
        }

        .story-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #343a40;
            margin: 0 0 0.2rem 0;
        }

        .seller-title {
            font-size: 0.875rem;
            color: #6c757d;
            font-weight: 400;
            margin: 0;
        }

        /* Final CTA Section - full-width gradient, laptop & phone */
        .final-cta {
            width: 100%;
            padding: 4rem 1.5rem 5rem;
            background: linear-gradient(
                90deg,
                #F7C203 0%,
                #FFEC56 31%,
                #FFE30B 73%,
                #F7C203 97%
            );
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 15%;
            right: 8%;
            width: 280px;
            height: 280px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            pointer-events: none;
        }

        .final-cta::after {
            content: '';
            position: absolute;
            bottom: 20%;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 120px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 50%;
            pointer-events: none;
        }

        .final-cta-container {
            max-width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            align-items: center;
            gap: 1rem;
            position: relative;
            z-index: 1;
        }

        .final-cta-device {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 0;
            width: 100%;
        }

        .final-cta-laptop-img {
            max-width: 380px;
            width: 100%;
            height: auto;
            transform: rotate(-8deg);
            filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
            display: block;
        }

        .final-cta-phone-img {
            max-width: 300px;
            width: 100%;
            height: auto;
            transform: rotate(6deg);
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
            display: block;
        }

        .final-cta-content {
            text-align: center;
            padding: 0 1rem;
            min-width: 0;
        }

        .final-cta h2 {
            font-size: clamp(1.75rem, 3.5vw, 2.75rem);
            margin-bottom: 1rem;
            line-height: 1.15;
            color: #2D3748;
            letter-spacing: -0.02em;
            text-align: center;
        }

        .final-cta-line1 {
            white-space: nowrap;
        }

        .final-cta-highlight {
            color: #fff;
            display: block;
            margin-top: 0.15em;
        }

        .final-cta p {
            font-size: 1.05rem;
            margin-bottom: 1.75rem;
            line-height: 1.65;
            color: #4A5568;
            max-width: 570px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #f7d024 0%, #FFB300 100%);
            color: #2D3748;
            border: 2px solid #ffbb01;
            padding: 1rem 2rem;
            margin-top: 3rem;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s, gap 0.25s;
            text-decoration: none;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        }

        .final-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
            gap: 14px;
            border: 2px solid #fde452;
            color: #f7e05d;
            background: linear-gradient(135deg, #e47200 0%, #e69b00 100%);
        }

        .final-cta-btn .fa-arrow-right {
            font-size: 0.95em;
        }

        /* Footer Styles - greyish black background, yellow text */
        .footer {
            background: #474545;
            color: #facc15;
            padding: 4rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2.5rem;
        }

        .footer-logo-section {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            width: 140px;
            height: auto;
            margin-bottom: 1rem;
            margin-left: -4px;
        }

        .footer-description {
            margin-bottom: 1.25rem;
            line-height: 1.6;
            color: #facc15;
            font-size: 0.95rem;
            max-width: 280px;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
            margin-top: 0.25rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            background: #fff;
            color: inherit;
        }

        .social-icon:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .social-icon.fb-icon { color: #1877F2; }
        .social-icon.fb-icon:hover { background: #1877F2; color: #fff; }
        .social-icon.ig-icon { color: #E4405F; }
        .social-icon.ig-icon:hover { background: #E4405F; color: #fff; }
        .social-icon.x-icon { color: #facc15; }
        .social-icon.x-icon:hover { background: #facc15; color: #2a2a2a; }
        .social-icon.yt-icon { color: #FF0000; }
        .social-icon.yt-icon:hover { background: #FF0000; color: #fff; }

        .footer-heading {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            color: #facc15;
        }

        .footer-newsletter-heading {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #facc15;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.65rem;
        }

        .footer-links a {
            color: #facc15;
            text-decoration: none;
            transition: color 0.2s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #fde047;
        }

        .footer-contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.75rem;
            line-height: 1.5;
            color: #facc15;
            font-size: 0.95rem;
        }

        .footer-contact-info i {
            margin-right: 0.6rem;
            color: #facc15;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .footer-newsletter p {
            margin-bottom: 1rem;
            color: #facc15;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.25rem;
        }

        .newsletter-input {
            flex: 1;
            min-width: 0;
            padding: 0.65rem 1rem;
            border: 1px solid rgba(250, 204, 21, 0.4);
            border-radius: 8px;
            background: #1e1e1e;
            color: #facc15;
            font-size: 0.95rem;
        }

        .newsletter-input::placeholder {
            color: #a3a3a3;
        }

        .newsletter-btn {
            background: #facc15;
            color: #fff;
            border: none;
            padding: 0.65rem 1.25rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            transition: background 0.2s ease;
        }

        .newsletter-btn:hover {
            background: #1d4ed8;
        }

        .app-download {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: flex-start;
        }

        .app-download-btn {
            display: inline-block;
            padding: 0;
            border-radius: 6px;
            transition: opacity 0.2s ease;
        }

        .app-download-btn:hover {
            opacity: 0.9;
        }

        .app-download-btn img {
            height: 40px;
            width: auto;
            display: block;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 2.5rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(250, 204, 21, 0.3);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .copyright {
            color: #facc15;
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            color: #facc15;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

        .footer-bottom-links a:hover {
            color: #fde047;
        }
        
        /* Partners Section */
        .partners {
            position: relative;
            padding: 5rem 0;
            overflow: hidden;
            background: #f7fafc;
        }

        .partners-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .partners-heading {
            margin-bottom: 3rem;
        }

        .partners-heading h2 {
            font-size: clamp(2rem, 4.5vw, 3.15rem);
            line-height: 1.08;
            letter-spacing: -0.5px;
            color: #2D3748;
            margin-bottom: 1rem;
        }

        .partners-heading .section-heading-accent {
            color: #FFC107;
        }

        .partners-heading p {
            font-size: 1.1rem;
            color: #718096;
        }

        .partners-scroller-container {
            padding: 2rem 0;
            position: relative;
            z-index: 1;
        }

        .partners-scroller {
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(to right, 
                transparent, 
                black 20%, 
                black 80%, 
                transparent);
        }

        .partners-logo-track {
            display: flex;
            gap: 3rem;
            animation: scrollLogos 25s linear infinite;
            width: max-content;
        }

        .partners-logo-track img {
            height: 80px;
            width: auto;
            object-fit: contain;
            /* filter: grayscale(100%); */
            transition: filter 0.3s ease;
        }

        .partners-logo-track img:hover {
            filter: grayscale(0%);
        }

        @keyframes scrollLogos {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }

        /* Parallax Background for Partners Section */
        .partners::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 15% 50%, rgba(49, 130, 206, 0.1) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(0, 0, 128, 0.1) 0%, transparent 20%), radial-gradient(circle at 50% 80%, rgba(49, 130, 206, 0.1) 0%, transparent 20%);; 
            background-size: 100%;
            background-repeat: no-repeat;
            background-position: center 25%;
            opacity: 0.05;
            z-index: 0;
        }

        /* Add a new style for the login button */
        .login-btn {
            background-color: #e6e6e6; /* A vibrant blue that complements the dark blue header */
            color: #000080;
            padding: 0.6rem 1.5rem;
            border-radius: 20px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .login-btn:hover {
            background-color: #3182CE; /* Dark blue on hover */
            transform: translateY(-2px); /* A slight lift on hover */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* A more pronounced shadow */
        }

        /* Additional styles for new hero sections */
        .corporate-hero .hero-text, .supplier-hero .hero-text {
            color: white;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .corporate-hero .hero-text h1, .supplier-hero .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .corporate-hero .hero-text p, .supplier-hero .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .corporate-hero .hero-buttons, .supplier-hero .hero-buttons {
            justify-content: center;
        }

        .corporate-hero-content {
            background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
            padding: 2rem;
            border-radius: 20px;
        }
        .supplier-hero-content {
            background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
            padding: 2rem;
            border-radius: 20px;
        }

          /* New hero section for Corporate */
        .corporate-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-image: url('images/corporate.png');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            padding: 1rem 1rem;
            position: relative;
            overflow: hidden;
            transition: background-position 0.1s ease-out;
            color: white;
        }

        .corporate-hero .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: flex-end; /* Move content to the right */
            width: 100%;
            gap: 2rem;
        }

        .corporate-hero .hero-text {
            flex: 1;
            text-align: right; /* Align text to the right */
            max-width: 500px;
            margin-left: auto; /* Push to the right */
            padding: 2rem;
            background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
            border-radius: 20px;
        }

        /* New hero section for Supplier */
        .supplier-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-image: url('images/supplier.png');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            padding: 1rem 1rem;
            position: relative;
            overflow: hidden;
            transition: background-position 0.1s ease-out;
            color: white;
        }

        .supplier-hero .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Move content to the left */
            width: 100%;
            gap: 2rem;
        }

        .supplier-hero .hero-text {
            flex: 1;
            text-align: left; /* Align text to the left */
            max-width: 500px;
            margin-right: auto; /* Push to the left */
            padding: 2rem;
            background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
            border-radius: 20px;
        }

        .corporate-hero .hero-text h1, 
        .supplier-hero .hero-text h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .corporate-hero .hero-text p, 
        .supplier-hero .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .corporate-hero .hero-buttons, 
        .supplier-hero .hero-buttons {
            justify-content: center;
        }

        /* --- About BidaBoss Section (match about-bidaboss-section.html) --- */
        .about-bidaboss-section {
            background: #FFFFFF;
            padding: 0;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        .about-bidaboss-topband {
            background: #FDCD0A;
            padding: 1.1rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2.5rem;
            overflow: hidden;
            position: relative;
        }
        .about-bidaboss-topband-track {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            animation: about-bidaboss-ticker 22s linear infinite;
            white-space: nowrap;
        }
        @keyframes about-bidaboss-ticker {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }
        .about-bidaboss-topband-item {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.8rem;
            font-weight: 700;
            color: #0C2461;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            flex-shrink: 0;
        }
        .about-bidaboss-topband-item i {
            font-size: 0.9rem;
            opacity: 0.7;
        }
        .about-bidaboss-topband-sep {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #0C2461;
            opacity: 0.3;
            flex-shrink: 0;
        }

        .about-bidaboss-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 5.5rem 3rem 6rem;
        }

        .about-bidaboss-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .about-bidaboss-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #FFF9D6;
            border: 1.5px solid #FDCD0A;
            border-radius: 6px;
            padding: 0.4rem 0.9rem;
            font-size: 0.72rem;
            font-weight: 700;
            color: #7A5800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }
        .about-bidaboss-tag i {
            color: #FDCD0A;
            font-size: 0.75rem;
        }

        .about-bidaboss-h {
            font-size: clamp(2rem, 3.8vw, 3rem);
            color: #111827;
            line-height: 1.18;
            letter-spacing: -0.025em;
            margin-bottom: 1.5rem;
        }
        .about-bidaboss-h .about-bidaboss-hl {
            background: #FDCD0A;
            padding: 0 0.18em;
            border-radius: 4px;
            color: #0C2461;
        }
        .about-bidaboss-h .about-bidaboss-bl {
            color: #1A3A8F;
        }

        .about-bidaboss-p {
            font-size: 1rem;
            color: #6B7280;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-weight: 400;
        }
        .about-bidaboss-p strong {
            color: #111827;
            font-weight: 600;
        }

        .about-bidaboss-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .about-bidaboss-pill-item {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            background: #E8EFFE;
            color: #1A3A8F;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.45rem 0.9rem;
            border-radius: 100px;
            border: 1px solid #CBD5FF;
        }
        .about-bidaboss-pill-item i {
            font-size: 0.75rem;
        }

        .about-bidaboss-visual {
            position: relative;
        }
        .about-bidaboss-visual-bg {
            position: absolute;
            inset: 0;
            background: #FFF9D6;
            border-radius: 24px;
            transform: translate(14px, 14px);
            border: 2px solid #FDCD0A;
        }
        .about-bidaboss-visual-card {
            position: relative;
            background: #FFFFFF;
            border-radius: 24px;
            border: 1.5px solid #E5E7EB;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
        }
        .about-bidaboss-vc-head {
            background: #FDCD0A;
            padding: 1.25rem 1.75rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .about-bidaboss-vc-head-logo {
            height: 28px;
            width: auto;
            display: block;
            object-fit: contain;
        }
        .about-bidaboss-vc-dots {
            display: flex;
            gap: 6px;
        }
        .about-bidaboss-vc-dots b {
            display: block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
        }
        .about-bidaboss-vc-dots b:first-child {
            background: #FF5F57;
        }
        .about-bidaboss-vc-dots b:nth-child(2) {
            background: #947e00;
        }
        .about-bidaboss-vc-dots b:last-child {
            background: #28C840;
        }

        .about-bidaboss-vc-body {
            padding: 1.75rem;
        }
        .about-bidaboss-vc-metric {
            background: #FDCD0A;
            border-radius: 14px;
            padding: 1.2rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.25rem;
        }
        .about-bidaboss-vc-metric-val {
            font-size: 2rem;
            font-weight: 800;
            color: #0C2461;
            line-height: 1;
            letter-spacing: -0.03em;
        }
        .about-bidaboss-vc-metric-label {
            font-size: 0.72rem;
            font-weight: 600;
            color: rgba(12, 36, 97, 0.6);
            margin-top: 0.2rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        .about-bidaboss-vc-metric-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(12, 36, 97, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #0C2461;
        }

        .about-bidaboss-vc-row {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            padding: 0.85rem 0;
            border-bottom: 1px solid #E5E7EB;
        }
        .about-bidaboss-vc-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .about-bidaboss-vc-row-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .about-bidaboss-vc-row-icon--y {
            background: #FFF9D6;
            color: #8a6200;
            border: 1px solid rgba(245, 194, 0, 0.19);
        }
        .about-bidaboss-vc-row-icon--b {
            background: #E8EFFE;
            color: #1A3A8F;
            border: 1px solid #CBD5FF;
        }
        .about-bidaboss-vc-row-info {
            flex: 1;
        }
        .about-bidaboss-vc-row-title {
            font-size: 0.85rem;
            font-weight: 600;
            color: #111827;
        }
        .about-bidaboss-vc-row-sub {
            font-size: 0.72rem;
            color: #6B7280;
            margin-top: 1px;
        }
        .about-bidaboss-vc-row-badge {
            font-size: 0.68rem;
            font-weight: 700;
            padding: 0.25rem 0.6rem;
            border-radius: 100px;
            flex-shrink: 0;
        }
        .about-bidaboss-vc-row-badge--g {
            background: #D1FAE5;
            color: #065F46;
        }
        .about-bidaboss-vc-row-badge--y {
            background: #FFF9D6;
            color: #7A5800;
        }

        .about-bidaboss-cards-label {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.75rem;
        }
        .about-bidaboss-cards-label span {
            font-size: 0.72rem;
            font-weight: 700;
            color: #6B7280;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }
        .about-bidaboss-cards-label::before,
        .about-bidaboss-cards-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #E5E7EB;
        }

        .about-bidaboss-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .about-bidaboss-card-new {
            border-radius: 18px;
            border: 1.5px solid #E5E7EB;
            background: #FFFFFF;
            padding: 1.5rem 1.25rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
            cursor: default;
        }
        .about-bidaboss-card-new:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(12, 36, 97, 0.12);
            border-color: #FDCD0A;
        }
        .about-bidaboss-card-new::after {
            content: '';
            position: absolute;
            top: 0;
            left: 1.25rem;
            right: 1.25rem;
            height: 3px;
            background: #FDCD0A;
            border-radius: 0 0 4px 4px;
            transform: scaleX(0);
            transition: transform 0.25s ease;
        }
        .about-bidaboss-card-new:hover::after {
            transform: scaleX(1);
        }

        .about-bidaboss-card-icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        .about-bidaboss-card-icon--1 {
            background: #FDCD0A;
            color: #0C2461;
        }
        .about-bidaboss-card-icon--2 {
            background: #0C2461;
            color: #FDCD0A;
        }
        .about-bidaboss-card-icon--3 {
            background: #FDCD0A;
            color: #0C2461;
        }
        .about-bidaboss-card-icon--4 {
            background: #0C2461;
            color: #FDCD0A;
        }

        .about-bidaboss-card-n {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            font-size: 0.7rem;
            font-weight: 700;
            color: #E5E7EB;
            letter-spacing: 0.05em;
        }

        .about-bidaboss-card-title-new {
            font-size: 0.975rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.4rem;
            line-height: 1.3;
        }
        .about-bidaboss-card-text-new {
            font-size: 0.825rem;
            color: #6B7280;
            line-height: 1.65;
        }

        .about-bidaboss-fade {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }
        .about-bidaboss-fade.about-bidaboss-in {
            opacity: 1;
            transform: translateY(0);
        }
        .about-bidaboss-d1 { transition-delay: 0.05s; }
        .about-bidaboss-d2 { transition-delay: 0.15s; }
        .about-bidaboss-d3 { transition-delay: 0.25s; }
        .about-bidaboss-d4 { transition-delay: 0.35s; }
        .about-bidaboss-d5 { transition-delay: 0.45s; }

        /* About BidaBoss responsive (match about-bidaboss-section.html) */
        @media (max-width: 1024px) {
            .about-bidaboss-inner {
                padding: 4.5rem 2rem 5rem;
            }
            .about-bidaboss-split {
                gap: 3rem;
            }
            .about-bidaboss-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .about-bidaboss-split {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .about-bidaboss-visual-bg {
                transform: translate(10px, 10px);
            }
            .about-bidaboss-inner {
                padding: 3.5rem 1.5rem 4.5rem;
            }
            .about-bidaboss-h {
                font-size: 2rem;
            }
        }
        @media (max-width: 560px) {
            .about-bidaboss-inner {
                padding: 3rem 1.25rem 4rem;
            }
            .about-bidaboss-cards {
                grid-template-columns: 1fr 1fr;
                gap: 0.75rem;
            }
            .about-bidaboss-card-new {
                padding: 1.25rem 1rem;
            }
            .about-bidaboss-topband-track {
                animation-duration: 14s;
            }
        }
        @media (max-width: 380px) {
            .about-bidaboss-cards {
                grid-template-columns: 1fr;
            }
        }

        /* Explore Our Services Section (replaces supplier-section) */
        .explore-services-section {
            padding: 0;
            position: relative;
            z-index: 1;
        }

        .explore-services-title {
            background: #FFC107;
            color: #fff;
            text-align: center;
            padding: 2.5rem 1.5rem;
        }

        .explore-services-title .section-pill {
            display: inline-flex;
        }

        .explore-services-title .explore-services-heading,
        .explore-services-title .explore-services-subtitle {
            display: block;
            width: 100%;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .explore-services-heading {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            text-transform: uppercase;
            letter-spacing: 0.02em;
            margin-top: 0;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .explore-services-subtitle {
            font-size: clamp(0.95rem, 2vw, 1.15rem);
            margin-top: 0;
            margin-bottom: 0;
            color: #000;
            white-space: nowrap;
        }

        .explore-services-content {
            min-height: 75vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .explore-services-content::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.35);
            z-index: 0;
        }

        .explore-services-inner {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 1rem 3rem;
            display: grid;
            grid-template-columns: 1fr auto;
            grid-template-areas: "left right";
            align-items: center;
            gap: 1.5rem;
            min-height: 70vh;
        }

        .explore-services-left {
            grid-area: left;
            max-width: 560px;
            display: flex;
            align-items: center;
        }

        .explore-content-inner {
            width: 100%;
        }

        /* Placeholder (like half-circle-menu.html) — shown when no selection */
        .explore-placeholder {
            opacity: 1;
            transition: opacity 0.35s ease;
        }

        .explore-placeholder.hidden {
            display: none;
        }

        .explore-placeholder-title {
            font-family: 'Baloo 2', cursive;
            font-size: 2.75rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.01em;
            line-height: 1.1;
            margin: 0 0 1rem 0;
        }

        .explore-placeholder-title-accent {
            color: #FFC107;
            font-weight: 800;
        }

        .explore-placeholder-desc {
            color: #FFEC9E;
            font-size: 1.2rem;
            max-width: 28rem;
            margin: 0 0 1.25rem 0;
            line-height: 1.6;
        }

        .explore-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .explore-tag {
            padding: 0.35rem 0.75rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            color: #FFEC9E;
            font-size: 1rem;
            font-weight: 500;
        }

        /* Card (like half-circle-menu.html + for-store.png design) — shown when item selected */
        .explore-card {
            background: #fefefe;
            border-radius: 1.5rem;
            padding: 2.25rem;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 0, 0, 0.06);
            position: relative;
            overflow: hidden;
            transform: translateX(-40px) perspective(1000px) rotateY(-6deg);
            opacity: 0;
            transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .explore-card.visible {
            transform: translateX(0) perspective(1000px) rotateY(0);
            opacity: 1;
        }

        .explore-card.explore-card-switching {
            opacity: 0;
            transform: translateX(-32px) perspective(1000px) rotateY(-5deg);
            transition: opacity 0.3s ease-in, transform 0.3s ease-in;
        }

        .explore-card.hidden {
            display: none;
        }

        .explore-card-deco-tr {
            position: absolute;
            top: 0;
            right: 0;
            width: 8rem;
            height: 8rem;
            background: linear-gradient(to bottom left, rgba(234, 179, 8, 0.08), transparent);
            border-bottom-left-radius: 5rem;
        }

        .explore-card-deco-bl {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 6rem;
            height: 6rem;
            background: linear-gradient(to top right, rgba(234, 179, 8, 0.06), transparent);
            border-top-right-radius: 3.75rem;
        }

        .explore-card-inner {
            position: relative;
            z-index: 2;
        }

        .explore-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .explore-card-icon {
            width: 3.75rem;
            height: 3.75rem;
            border-radius: 1rem;
            background: linear-gradient(135deg, rgba(234, 179, 8, 0.18), rgba(234, 179, 8, 0.06));
            border: 1px solid rgba(234, 179, 8, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e67e22;
            font-size: 1.25rem;
            flex-shrink: 0;
            animation: explore-spin-in 0.5s ease-out;
        }

        @keyframes explore-spin-in {
            from { transform: rotate(-180deg) scale(0); }
            to { transform: rotate(0) scale(1); }
        }

        .explore-card-label {
            display: block;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #e67e22;
            margin-bottom: 0.15rem;
        }

        .explore-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0;
        }

        .explore-card-stat {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.85rem 1rem;
            border-radius: 1rem;
            background: rgba(234, 179, 8, 0.08);
            border: 1px solid rgba(234, 179, 8, 0.15);
            margin-bottom: 1.25rem;
        }

        .explore-card-stat-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: #e67e22;
        }

        .explore-card-stat-label {
            font-size: 0.85rem;
            color: #555;
            font-weight: 500;
        }

        .explore-card-desc {
            color: #444;
            line-height: 1.65;
            margin: 0 0 1.5rem 0;
            font-size: 0.95rem;
        }

        .explore-card-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.6rem;
            margin-bottom: 1.5rem;
        }

        .explore-card-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            padding: 0.65rem 0.75rem;
            border-radius: 0.75rem;
            background: #f8f9fa;
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: border-color 0.2s;
            opacity: 0;
            transform: translateY(12px);
            animation: explore-feature-in 0.4s ease-out forwards;
        }

        .explore-card-feature:nth-child(1) { animation-delay: 0.15s; }
        .explore-card-feature:nth-child(2) { animation-delay: 0.23s; }
        .explore-card-feature:nth-child(3) { animation-delay: 0.31s; }

        .explore-card-feature:hover {
            border-color: rgba(234, 179, 8, 0.35);
        }

        .explore-card-feature-icon {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            background: rgba(234, 179, 8, 0.12);
            color: #b45309;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            flex-shrink: 0;
        }

        .explore-card-feature-text {
            font-size: 0.85rem;
            color: #555;
            line-height: 1.45;
        }

        .explore-card-feature-text strong {
            color: #1a1a1a;
        }

        @keyframes explore-feature-in {
            to { opacity: 1; transform: translateY(0); }
        }

        .explore-card-cta {
            width: 100%;
            padding: 0.9rem 1rem;
            border-radius: 1rem;
            background: linear-gradient(135deg, #d97706, #b45309);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: opacity 0.2s, transform 0.15s, background 0.2s;
            box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
        }

        .explore-card-cta:hover {
            background: linear-gradient(135deg, #b45309, #92400e);
            color: #fff;
            opacity: 0.95;
        }

        .explore-card-cta:active {
            transform: scale(0.98);
        }

        .explore-services-right {
            grid-area: right;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding-right: 0;
            justify-self: end;
            min-height: 620px;
        }

        /* Half-circle menu (from half-circle-menu.html) — hub at center-right, arc opens left */
        .explore-radial-menu {
            position: relative;
            flex-shrink: 0;
            width: 360px;
            height: 620px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            pointer-events: none;
        }

        .explore-radial-menu.open {
            pointer-events: auto;
        }

        /* SVG arcs and lines — built in JS, shown when open */
        .explore-radial-menu .explore-arcs-svg,
        .explore-radial-menu .explore-lines-svg {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .explore-radial-menu.open .explore-arcs-svg,
        .explore-radial-menu.open .explore-lines-svg {
            opacity: 1;
        }

        /* Hub button (Explore / ✕) — light yellow with attention animations */
        .explore-toggle-btn {
            position: absolute;
            z-index: 10;
            width: 5.5rem;
            height: 5.5rem;
            border-radius: 50%;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #FFF59D, #FFEC9E);
            box-shadow: 0 8px 32px rgba(255, 255, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
            border: 2px solid rgba(255, 255, 255, 0.55);
            color: #1a1a1a;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            transition: box-shadow 0.25s ease, border-color 0.25s ease;
            pointer-events: all;
            animation: explore-btn-attention 2s ease-in-out infinite;
        }

        .explore-toggle-btn::before,
        .explore-toggle-btn::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.75);
            pointer-events: none;
            animation: explore-btn-ripple 2.4s ease-out infinite;
        }

        .explore-toggle-btn::after {
            animation-delay: 1.2s;
        }

        .explore-toggle-btn .explore-toggle-text {
            position: relative;
            z-index: 1;
            animation: explore-btn-text-pulse 2s ease-in-out infinite;
        }

        .explore-toggle-btn:hover {
            animation: explore-btn-attention 1.2s ease-in-out infinite;
            border-color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 10px 44px rgba(255, 255, 255, 0.65), 0 0 28px 10px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
        }

        .explore-toggle-btn:hover::before,
        .explore-toggle-btn:hover::after {
            border-color: rgba(255, 255, 255, 0.95);
            animation-duration: 1.6s;
        }

        .explore-toggle-btn:active {
            animation-play-state: paused;
            transform: translateY(-50%) scale(0.94);
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4), inset 0 2px 6px rgba(0, 0, 0, 0.12);
        }

        .explore-toggle-btn:focus-visible {
            outline: 3px solid rgba(255, 255, 255, 0.9);
            outline-offset: 4px;
        }

        .explore-radial-menu.open .explore-toggle-btn {
            animation: none;
            transform: translateY(-50%);
            border-color: rgba(255, 255, 255, 0.45);
        }

        .explore-radial-menu.open .explore-toggle-btn:active {
            transform: translateY(-50%) scale(0.94);
        }

        .explore-radial-menu.open .explore-toggle-btn::before,
        .explore-radial-menu.open .explore-toggle-btn::after {
            animation: none;
            opacity: 0;
        }

        .explore-radial-menu.open .explore-toggle-btn .explore-toggle-text {
            animation: none;
        }

        .explore-toggle-btn .explore-toggle-icon-close {
            display: none;
            font-size: 1.5rem;
        }

        .explore-radial-menu.open.explore-has-selection .explore-toggle-btn .explore-toggle-text {
            display: none;
        }

        .explore-radial-menu.open.explore-has-selection .explore-toggle-btn .explore-toggle-icon-close {
            display: inline-block;
        }

        @keyframes explore-btn-attention {
            0%, 100% {
                transform: translateY(-50%) scale(1);
                box-shadow: 0 8px 32px rgba(255, 255, 255, 0.45), 0 0 0 0 rgba(255, 255, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
            }
            50% {
                transform: translateY(-50%) scale(1.08);
                box-shadow: 0 14px 52px rgba(255, 255, 255, 0.75), 0 0 32px 12px rgba(255, 255, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.45);
            }
        }

        @keyframes explore-btn-ripple {
            0% {
                transform: scale(1);
                opacity: 0.85;
            }
            100% {
                transform: scale(1.75);
                opacity: 0;
            }
        }

        @keyframes explore-btn-text-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @media (prefers-reduced-motion: reduce) {
            .explore-toggle-btn,
            .explore-toggle-btn::before,
            .explore-toggle-btn::after,
            .explore-toggle-btn .explore-toggle-text {
                animation: none !important;
            }
            .explore-toggle-btn::before,
            .explore-toggle-btn::after {
                display: none;
            }
        }

        /* Service buttons on the half-circle — yellow theme, proper icons */
        .explore-radial-menu .explore-radial-btn {
            position: absolute;
            z-index: 20;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px solid rgba(234, 179, 8, 0.35);
            background: linear-gradient(135deg, rgba(254, 252, 232, 0.98), rgba(254, 249, 195, 0.95));
            box-shadow: 0 4px 15px rgba(234, 179, 8, 0.2);
            color: #b45309;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            opacity: 0;
            pointer-events: none;
            overflow: visible;
            transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
        }

        .explore-radial-tooltip {
            position: absolute;
            right: calc(100% + 14px);
            top: 50%;
            transform: translateY(-50%) translateX(8px);
            padding: 0.45rem 0.85rem;
            border-radius: 999px;
            background: rgba(26, 26, 26, 0.92);
            border: 1px solid rgba(255, 193, 7, 0.45);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            z-index: 30;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
        }

        .explore-radial-tooltip::after {
            content: '';
            position: absolute;
            left: 100%;
            top: 50%;
            transform: translateY(-50%);
            border: 6px solid transparent;
            border-left-color: rgba(26, 26, 26, 0.92);
        }

        .explore-radial-menu .explore-radial-btn:hover .explore-radial-tooltip,
        .explore-radial-menu .explore-radial-btn:focus-visible .explore-radial-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateY(-50%) translateX(0);
        }

        .explore-radial-menu.open .explore-radial-btn {
            pointer-events: all;
            animation: explore-btn-appear 0.5s ease-out forwards;
        }

        .explore-radial-menu.open .explore-radial-btn:nth-child(4) { animation-delay: 0.1s; }
        .explore-radial-menu.open .explore-radial-btn:nth-child(5) { animation-delay: 0.2s; }
        .explore-radial-menu.open .explore-radial-btn:nth-child(6) { animation-delay: 0.3s; }
        .explore-radial-menu.open .explore-radial-btn:nth-child(7) { animation-delay: 0.4s; }

        .explore-radial-menu .explore-radial-btn:hover {
            border-color: #eab308;
            color: #92400e;
            box-shadow: 0 8px 25px rgba(234, 179, 8, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }

        .explore-radial-menu .explore-radial-btn.active {
            border-color: #eab308;
            color: #1a1a1a;
            background: linear-gradient(135deg, #eab308, #f59e0b);
            box-shadow: 0 8px 30px rgba(234, 179, 8, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        @keyframes explore-btn-appear {
            from { opacity: 0; transform: translate(50%, -50%) scale(0) rotate(-90deg); }
            to   { opacity: 1; transform: translate(50%, -50%) scale(1) rotate(0); }
        }

        /* Tab grid for mobile (hidden by default, shown at ≤900px) */
        .explore-mobile-tabs {
            display: none;
            justify-content: center;
            align-items: stretch;
            gap: 1rem;
            flex-wrap: wrap;
            padding: 1.5rem 0 0.5rem;
            width: 100%;
            max-width: 520px;
            margin: 0 auto;
        }
        .explore-mobile-tab-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            padding: 1.1rem 1.4rem;
            min-width: 6.5rem;
            flex: 1 1 calc(50% - 0.5rem);
            max-width: calc(50% - 0.5rem);
            border-radius: 1.25rem;
            border: 2px solid rgba(234, 179, 8, 0.35);
            background: linear-gradient(135deg, rgba(254, 252, 232, 0.97), rgba(254, 249, 195, 0.94));
            box-shadow: 0 3px 14px rgba(234, 179, 8, 0.15);
            color: #b45309;
            cursor: pointer;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: background 0.22s, border-color 0.22s, box-shadow 0.22s, transform 0.15s;
        }
        .explore-mobile-tab-btn i {
            font-size: 1.6rem;
            color: #d97706;
            transition: color 0.22s;
        }
        .explore-mobile-tab-btn:hover {
            border-color: #eab308;
            box-shadow: 0 6px 20px rgba(234, 179, 8, 0.28);
        }
        .explore-mobile-tab-btn:active {
            transform: scale(0.96);
        }
        .explore-mobile-tab-btn.active {
            background: linear-gradient(135deg, #eab308, #f59e0b);
            border-color: #eab308;
            color: #1a1a1a;
            box-shadow: 0 6px 24px rgba(234, 179, 8, 0.45);
        }
        .explore-mobile-tab-btn.active i {
            color: #1a1a1a;
        }

        /* Accessibility and Mobile Responsiveness - Core Changes */
        .apply-btn, .shop-now,
        .apply-now-btn, .final-cta-btn, .video-strip-arrow,
        .video-thumb, .footer-links a, .social-icon {
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .apply-btn, .shop-now,
        .apply-now-btn, .final-cta-btn {
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* New Map Section Styles */
        .map-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #e6e8ff 0%, #f7fafc 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .map-section-heading .section-pill {
            display: inline-flex;
        }

        .map-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 15% 50%, rgba(49, 130, 206, 0.1) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(0, 0, 128, 0.1) 0%, transparent 20%), radial-gradient(circle at 50% 80%, rgba(49, 130, 206, 0.1) 0%, transparent 20%);
            z-index: 0;
        }

        .map-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        #map {
            height: 600px; /* Default height for desktop */
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border: 1px solid #e6e6e6;
        }

        /* 1080p desktop (e.g. 1920×1080 @ 100% scale) — taller explore section */
        @media (min-width: 1200px) and (min-height: 900px) and (max-height: 1100px) {
            .explore-services-content {
                min-height: 98vh;
            }
            .explore-services-inner {
                min-height: 94vh;
                padding: 3rem 1.5rem 4rem;
            }
            .explore-services-right {
                min-height: 860px;
            }
            .explore-radial-menu {
                height: 860px;
            }
        }

         /* Responsive CSS for existing sections */
        @media (max-width: 900px) {
            /* Hero section: tablet – centered, stacked (match hero-and-stats-section.html) */
            .hero,
            .hero-stats-strip {
                --hero-bg-overlap: clamp(3rem, 6vw, 5rem);
            }

            .hero {
                min-height: auto;
                padding: 5rem 1.5rem 3.5rem;
                align-items: flex-start;
            }

            .hero-content {
                padding-left: 0;
                flex-direction: column;
                text-align: center;
                gap: 2rem;
                align-items: center;
                margin-left: auto;
                margin-right: auto;
                display: flex;
                justify-content: center;
            }

            .hero-text {
                max-width: 100%;
                margin-left: 0;
                text-align: center;
                color: white;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-text p,
            .hero-tagline {
                font-size: 1rem;
                margin-bottom: 2rem;
                max-width: 520px;
                color: white;
            }

            .hero-headline {
                font-size: clamp(1.6rem, 3.5vw, 2.25rem);
                font-weight: 800;
                text-align: center;
            }

            .hero-text-logo {
                max-width: 380px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                gap: 1rem;
            }

            .apply-btn, .shop-now {
                min-width: 180px;
            }

            .hero-card {
                display: none; /* Hide hero card on mobile */
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            /* Stats strip: tighten padding on tablet */
            .hero-stats-strip .stats-strip-col {
                padding: 0.5rem 1rem;
            }

            .oms-logo {
                height: 50px;
                margin-left: 0;
            }

            .header-logo, .header-nav, .header-actions {
                flex: none;
                width: 100%;
                justify-content: center;
                margin-bottom: 0.5rem;
            }
            
            .header-nav {
                gap: 1.5rem;
            }


            /* Explore services section responsive (match explore-services-section.html) */
            .explore-services-inner {
                grid-template-columns: 1fr;
                grid-template-areas: "left" "right";
                gap: 1.75rem;
                padding: 2rem 1.5rem 2.5rem;
                min-height: auto;
            }
            .explore-services-left {
                max-width: 100%;
                justify-content: center;
                text-align: center;
            }
            .explore-tags {
                display: none !important;
            }
            .explore-placeholder-desc {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            .explore-placeholder-title {
                text-align: center;
                font-size: clamp(1.5rem, 5vw, 2.75rem);
            }
            .explore-services-right {
                justify-content: center;
                justify-self: center;
                padding: 0;
                min-height: auto;
            }
            .explore-radial-menu {
                display: none !important;
            }
            .explore-mobile-tabs {
                display: flex !important;
            }
            .explore-card-title {
                font-size: 1.25rem;
            }
            .explore-card {
                transform: translateY(16px);
            }
            .explore-card.visible {
                transform: translateY(0);
                opacity: 1;
            }

            /* Features section: tablet 2×3 equal grid (match features-section.html) */
            .features {
                padding: 3.5rem 1.5rem;
            }
            .features-heading h2 {
                font-size: clamp(1.6rem, 5vw, 2.25rem);
            }
            .features-heading p {
                font-size: 1rem;
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .feature-card--wide {
                grid-column: span 1;
            }
            .feature-card {
                padding: 28px 24px;
                border-radius: 20px;
            }
            .feature-icon-wrap {
                width: 48px;
                height: 48px;
                font-size: 22px;
                margin-bottom: 20px;
            }
            .feature-category {
                font-size: 11px;
            }
            .feature-card-title {
                font-size: 1.15rem;
            }
            .feature-card-desc {
                font-size: 0.9rem;
            }
            /* Stories grid stays single column on tablet */
            .stories-grid {
                grid-template-columns: 1fr;
            }

            .features-trust-bar {
                grid-template-columns: repeat(2, 1fr);
                max-width: 100%;
            }

            /* Final CTA responsive (match final-cta-section.html) */
            .final-cta-container {
                grid-template-columns: 1fr;
                gap: 0;
                position: relative;
                min-height: 420px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .final-cta-device {
                position: absolute;
                pointer-events: none;
            }
            .final-cta-laptop {
                left: -5%;
                bottom: -10px;
                width: 55%;
                max-width: 260px;
                opacity: 0.28;
                z-index: 0;
                justify-content: flex-start;
            }
            .final-cta-phone {
                right: -2%;
                bottom: -10px;
                width: 32%;
                max-width: 150px;
                opacity: 0.28;
                z-index: 0;
                justify-content: flex-end;
            }
            .final-cta-laptop-img {
                width: 100%;
                max-width: 100%;
                transform: rotate(-8deg);
            }
            .final-cta-phone-img {
                width: 100%;
                max-width: 100%;
                transform: rotate(6deg);
            }
            .final-cta-content {
                position: relative;
                z-index: 2;
                padding: 2rem 1rem 2.5rem;
                width: 100%;
            }
            .final-cta-line1 {
                white-space: normal;
            }

            /* Map section responsive adjustments */
            .map-section {
                padding: 3rem 1rem;
            }
            #map {
                height: 400px; /* Smaller height for mobile devices */
            }
        }

        /* Hero & stats strip: mobile (match hero-and-stats-section.html) */
        @media (max-width: 640px) {
            .hero {
                padding: 4.5rem 1.25rem 3rem;
            }
            .hero-text-logo {
                max-width: 280px;
            }
            .hero-buttons {
                flex-direction: column;
                width: 100%;
                gap: 0.85rem;
            }
            .apply-btn, .shop-now {
                width: 100%;
                max-width: 320px;
                font-size: 1rem;
            }
            .hero-stats-strip .row {
                grid-template-columns: 1fr;
            }
            .hero-stats-strip .stats-strip-col {
                padding: 1rem 0.5rem;
                border-bottom: 1px solid rgba(26, 20, 0, 0.18);
            }
            .hero-stats-strip .stats-strip-col:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }
            .hero-stats-strip .stats-strip-col-divider::before {
                display: none;
            }
            .hero-stats-strip .stats-strip-title {
                font-size: 0.9rem;
            }
            .hero-stats-strip .stats-strip-subtitle {
                font-size: 0.83rem;
            }
        }

        /* Hero & stats strip: small mobile (match hero-and-stats-section.html) */
        @media (max-width: 400px) {
            .hero {
                padding: 4rem 1rem 2.5rem;
            }
            .hero-headline {
                font-size: 1.4rem;
                font-weight: 800;
            }
            .hero-text-logo {
                max-width: 230px;
            }
            .hero-tagline {
                font-size: 0.9rem;
            }
            .apply-btn, .shop-now {
                font-size: 0.95rem;
                padding: 0.75rem 1.25rem;
            }
            .hero-stats-strip .container {
                padding: 1.25rem 1rem;
            }
            .hero-stats-strip .stats-strip-title {
                font-size: 0.82rem;
                letter-spacing: 0.03em;
            }
            .hero-stats-strip .stats-strip-subtitle {
                font-size: 0.78rem;
            }
        }

        /* Features section: mobile single column (match features-section.html) */
        @media (max-width: 540px) {
            .features {
                padding: 2.5rem 1rem;
            }
            .features-heading {
                margin-bottom: 2rem;
            }
            .features-heading h2 {
                font-size: clamp(1.4rem, 7vw, 1.75rem);
            }
            .features-heading p {
                font-size: 0.9rem;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .feature-card--wide {
                grid-column: span 1;
            }
            .feature-card {
                padding: 24px 20px;
                border-radius: 18px;
            }
            .feature-icon-wrap {
                width: 44px;
                height: 44px;
                font-size: 20px;
                margin-bottom: 16px;
                border-radius: 12px;
            }
            .feature-category {
                font-size: 10px;
                letter-spacing: 1.5px;
            }
            .feature-card-title {
                font-size: 1.05rem;
            }
            .feature-card-desc {
                font-size: 0.875rem;
                line-height: 1.6;
            }
        }

        @media (max-width: 600px) {
            .header-nav {
                gap: 1rem;
                flex-wrap: wrap;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .hero-text {
                padding-left: 0;
            }

            .explore-services-title {
                padding: 1.75rem 1rem;
            }
            .explore-services-heading {
                font-size: 1.2rem;
            }
            .explore-services-subtitle {
                font-size: 0.85rem;
                white-space: normal;
            }
            .explore-services-inner {
                padding: 1.25rem 1rem 2rem;
                gap: 1.25rem;
            }
            .explore-placeholder-title {
                font-size: 1.6rem;
            }
            .explore-placeholder-desc {
                font-size: 0.95rem;
            }
            .explore-card-title {
                font-size: 1.1rem;
            }
            .explore-card-stat-value {
                font-size: 1.4rem;
            }
            .explore-card {
                padding: 1.25rem;
            }
            .explore-mobile-tab-btn {
                min-width: 4.75rem;
                padding: 0.75rem 0.85rem;
                font-size: 0.68rem;
            }
            .explore-mobile-tab-btn i {
                font-size: 1.2rem;
            }

            /* Final CTA ≤600px (match final-cta-section.html) */
            .final-cta-container {
                min-height: 380px;
            }
            .final-cta-laptop {
                left: -8%;
                width: 60%;
                opacity: 0.22;
            }
            .final-cta-phone {
                right: -4%;
                width: 35%;
                opacity: 0.22;
            }

            .features-trust-bar {
                grid-template-columns: 1fr;
            }
        }

        /* Footer Responsive */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-bottom-links {
                justify-content: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .app-download {
                flex-direction: column;
                align-items: stretch;
            }

            .app-download-btn img {
                height: 44px;
            }
        }
        #map {
 height: 100%;
 width: 100%; /* Ensure map width adjusts as well */
}
/* Optional: Makes the sample page fill the window */
html, body {
 height: 100%;
 margin: 0;
 padding: 0;
 width: 100%; /* Ensure body and html take full width */
}

/* Custom Info Window Styling */
.infoWindowContent {
 font-family: Arial, sans-serif;
 font-size: 14px;
 color: #333;
 background-color: #f5f5f5;
 border-radius: 4px;
 padding: 10px;
 width: 300px;
 margin-top: 10px;
 margin-left: 5px;
}

.infoWindowContent strong {
 color: #2a5d84; 
 font-size: 16px;
 font-weight: bold;
}


/* Hero Video Player - styles handled in main hero-video container above */
#hero-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

/* Close Button for the Hero Video */
.close-hero-video-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    z-index: 20;
    display: flex; /* Use flexbox for centering the x */
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.close-hero-video-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* --- Mobile Responsiveness --- */

/* Popup Overlay - full-screen modal, not in document flow */
.popup-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    background: rgba(0, 0, 0, 0.75) !important;
    display: none !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 99999 !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    overflow-y: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none; /* when hidden, don't block clicks */
}

.popup-overlay[style*="display: flex"],
.popup-overlay[style*="display:flex"],
.popup-overlay.active {
    display: flex !important;
    pointer-events: auto !important;
}

        /* Prevent body scroll when popup is open */
        body.popup-open {
            overflow: hidden !important;
            position: fixed !important;
            width: 100% !important;
        }

        /* Ensure hero video doesn't create layout space - purely fixed overlay */
        .hero-video {
            position: fixed !important;
            top: 70px !important;
            right: 30px !important;
            width: 320px !important;
            height: 200px !important;
            margin: 0 !important;
            padding: 0 !important;
            border: none !important;
            outline: none !important;
        }

        .popup-content {
            background: transparent;
            border-radius: 0;
            padding: 1rem;
            text-align: center;
            max-width: min(580px, 94vw);
            width: 92%;
            position: relative;
            box-shadow: none;
            animation: popupAppear 0.5s ease-out;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: auto;
        }

        .popup-visual {
            position: relative;
            width: 100%;
            max-width: 540px;
            margin: 0 auto;
            line-height: 0;
        }

        @keyframes popupAppear {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .popup-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 0;
            margin-bottom: 0;
        }

        .popup-title {
            font-size: 24px;
            font-weight: 700;
            color: #000080;
            margin-bottom: 15px;
            width: 100%;
        }

        .popup-message {
            font-size: 16px;
            color: #fff;
            margin-bottom: 5px;
            line-height: 1.5;
            width: 100%;
        }

        /* Countdown Timer - Centered and responsive */
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 25px 0;
            width: 80%; /* Match image width */
            max-width: 400px; /* Match max image width */
            margin-top: -10px;
        }

        .countdown-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            flex: 1; /* Make items responsive */
            max-width: 70px; /* Limit max size */
            border: 2px solid #000080;
            backdrop-filter: blur(10px);
            margin-top: -5rem;
        }

        .countdown-number {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            display: block;
        }

        .countdown-label {
            font-size: 10px;
            color: #ddd;
            text-transform: uppercase;
            margin-top: 5px;
        }

        .popup-highlight {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
            font-weight: 600;
            font-size: 18px;
            width: 80%; /* Match image width */
            max-width: 400px; /* Match max image width */
        }

        .close-popup {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
            transition: color 0.3s;
            z-index: 10;
        }

        .close-popup:hover {
            color: #e74c3c;
        }

        /* CTA overlays the "Shop Now" area on the popup image */
        .popup-visual .continue-btn.popup-cta-overlay {
            position: absolute;
            left: 52.1%;
            bottom: 17%;
            transform: translateX(-50%);
            width: 37.4%;
            min-height: 8.8%;
            margin: 0;
            padding: 0;
            background: transparent;
            border: none;
            border-radius: 999px;
            color: transparent;
            font-size: 0;
            cursor: pointer;
            z-index: 3;
            transition: filter 0.2s ease;
        }

        .popup-visual .continue-btn.popup-cta-overlay:hover,
        .popup-visual .continue-btn.popup-cta-overlay:focus-visible {
            filter: brightness(1.08);
            outline: 2px solid rgba(255, 255, 255, 0.85);
            outline-offset: 2px;
        }

        /* Inventory value — centered on popup image */
        .inventory-value-display {
            position: absolute;
            left: 50%;
            top: 46%;
            transform: translate(-50%, -50%);
            width: 80%;
            margin: 0;
            padding: 0;
            text-align: center;
            pointer-events: none;
            z-index: 2;
            line-height: 1.1;
        }

        .inventory-value-display .inventory-value-amount {
            margin: 0;
            font-size: clamp(1.12rem, 5.1vw, 2.35rem);
            font-weight: 900;
            letter-spacing: normal;
            font-family: 'Arial Black', Arial, sans-serif;
            text-transform: uppercase;
            color: #ffffff;
            -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
            text-shadow:
                /* Metallic silver border (static, no animation) */
                -1px -1px 0 #aeb7c1,
                0 -1px 0 #9aa4af,
                1px -1px 0 #858f9a,
                -1px 0 0 #7f8994,
                1px 0 0 #5f6975,
                -1px 1px 0 #747f8a,
                0 1px 0 #535d69,
                1px 1px 0 #3f4954,
                0 -2px 0 #b2bcc6,
                0 2px 0 #38424e,
                2px 0 0 #666f7b,
                -2px 0 0 #8d97a2,
                0 2px 8px rgba(0, 0, 0, 0.42);
        }

        /* Responsive adjustments for popup */
        @media (max-width: 768px) {
            .popup-content {
                width: 95%;
                padding: 0.75rem;
            }

            .popup-visual {
                max-width: 100%;
            }

            .inventory-value-display {
                top: 47%;
                width: 84%;
            }

            .inventory-value-display .inventory-value-amount {
                font-size: clamp(0.96rem, 4.9vw, 1.9rem);
                letter-spacing: normal;
            }

            .popup-visual .continue-btn.popup-cta-overlay {
                width: 40%;
                left: 51.9%;
                bottom: 16.3%;
                min-height: 8.4%;
            }

            .countdown-timer {
                width: 90%;
                gap: 10px;
                margin-top: 5px;
            }

            .countdown-item {
                padding: 10px;
                max-width: 70px;
            }

            .countdown-number {
                font-size: 24px;
            }

            .popup-highlight {
                width: 90%;
                font-size: 16px;
                padding: 12px;
            }
        }

        @media (max-width: 480px) {
            .inventory-value-display {
                top: 46.5%;
                width: 86%;
            }

            .inventory-value-display .inventory-value-amount {
                font-size: clamp(0.82rem, 5.2vw, 1.5rem);
                letter-spacing: normal;
            }

            .popup-visual .continue-btn.popup-cta-overlay {
                width: 41.7%;
                left: 51.6%;
                bottom: 15.7%;
            }

            .close-popup {
                top: 8px;
                right: 8px;
                font-size: 22px;
            }

            .countdown-item {
                max-width: 60px;
                padding: 8px;
            }

            .countdown-number {
                font-size: 20px;
            }

            .countdown-label {
                font-size: 10px;
            }
        }

      /* Floating Ticketing Menu Styles */
    .ticket-menu-container {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
    }

    .ticket-main-btn {
        width: 60px;
        height: 60px;
        background: #FDCD0A;
        color: #0C2461;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(253, 205, 10, 0.45);
        transition: all 0.3s ease;
        border: 2px solid rgba(12, 36, 97, 0.15);
        font-size: 1.5rem;
        position: relative;
        z-index: 10;
    }

    .ticket-main-btn:hover {
        background: #F5C200;
        color: #0C2461;
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(253, 205, 10, 0.55);
        border-color: rgba(12, 36, 97, 0.25);
    }

    .ticket-menu-items {
        position: absolute;
        bottom: 70px;
        right: 0;
        background: #FFFEF5;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(253, 205, 10, 0.25);
        border: 1px solid rgba(253, 205, 10, 0.4);
        padding: 10px;
        min-width: 180px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 9;
    }

    .ticket-menu-container:hover .ticket-menu-items {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .ticket-menu-item {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease;
        color: #0C2461;
        text-decoration: none;
    }

    .ticket-menu-item:hover {
        background: #FFF9D6;
        color: #0C2461;
    }

    .ticket-menu-item i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
        color: #FDCD0A;
    }

    .ticket-menu-item:hover i {
        color: #0C2461;
    }

    .ticket-menu-item span {
        font-weight: 500;
    }

    /* Modal styles remain the same */
    .ticket-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 1001;
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(5px);
    }

    .ticket-modal-content {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        width: 90%;
        max-width: 500px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        position: relative;
        animation: modalAppear 0.3s ease-out;
    }

    @keyframes modalAppear {
        from {
            opacity: 0;
            transform: scale(0.8);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .close-ticket-modal {
        position: absolute;
        top: 15px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #718096;
    }

    .close-ticket-modal:hover {
        color: #000080;
    }

    .ticket-form h3 {
        color: #000080;
        margin-bottom: 1.5rem;
        text-align: center;
        font-size: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: #2D3748;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #E2E8F0;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #000080;
        box-shadow: 0 0 0 3px rgba(0, 0, 128, 0.1);
    }

    .form-group textarea {
        height: 120px;
        resize: vertical;
    }

    .submit-ticket-btn {
        background: #000080;
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        width: 100%;
        transition: all 0.3s;
    }

    .submit-ticket-btn:hover {
        background: #3182CE;
        transform: translateY(-2px);
    }

    .submit-ticket-btn:disabled {
        background: #A0AEC0;
        cursor: not-allowed;
        transform: none;
    }

    .form-message {
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1rem;
        text-align: center;
        display: none;
    }

    .form-message.success {
        background: #C6F6D5;
        color: #22543D;
        border: 1px solid #9AE6B4;
    }

    .form-message.error {
        background: #FED7D7;
        color: #742A2A;
        border: 1px solid #FEB2B2;
        }

        /* --- NEW STYLES FOR SUPPLIER AND PRODUCTS CAROUSELS --- */
        
        /* Partner Suppliers Section */
        .suppliers-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
            position: relative;
            overflow: hidden;
        }

        .suppliers-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 85% 15%, rgba(49, 130, 206, 0.1) 0%, transparent 25%), radial-gradient(circle at 15% 85%, rgba(0, 0, 128, 0.1) 0%, transparent 25%);
            z-index: 0;
        }

        .suppliers-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .suppliers-heading {
            text-align: center;
            margin-bottom: 3rem;
        }

        .suppliers-heading h2 {
            font-size: clamp(2rem, 4.5vw, 3.15rem);
            line-height: 1.08;
            letter-spacing: -0.5px;
            color: #2D3748;
            margin-bottom: 1rem;
        }

        .suppliers-heading .section-heading-accent {
            color: #FFC107;
        }

        .suppliers-heading p {
            font-size: 1.1rem;
            color: #718096;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Supplier Carousel */
        .suppliers-scroller-container {
            padding: 2rem 0;
            position: relative;
            z-index: 1;
        }

        .suppliers-scroller {
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(to right, 
                transparent, 
                black 10%, 
                black 90%, 
                transparent);
        }

        .suppliers-logo-track {
            display: flex;
            gap: 4rem;
            animation: scrollSuppliers var(--supplier-scroll-duration, 120s) linear infinite;
            width: max-content;
            padding: 1rem 0;
        }

        .supplier-logo-item {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-width: 150px;
        }

        .supplier-logo-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #e6e6e6;
            padding: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }

        .supplier-logo-img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-color: #000080;
        }

        .supplier-name {
            font-weight: 600;
            color: #2D3748;
            font-size: 0.95rem;
            max-width: 140px;
            line-height: 1.3;
        }

        @keyframes scrollSuppliers {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }


        /* Pause animation on hover */
        .suppliers-logo-track:hover,
        .products-logo-track:hover {
            animation-play-state: paused;
        }

        /* Responsive adjustments for new sections */
        @media (max-width: 900px) {
            .suppliers-section,
            .products-section {
                padding: 3rem 1rem;
            }
            
            .suppliers-heading h2,
            .products-heading h2 {
                font-size: 2rem;
            }
            
            .supplier-logo-img {
                width: 100px;
                height: 100px;
            }
            
            .product-logo-img {
                width: 120px;
                height: 120px;
            }
            
            .suppliers-logo-track,
            .products-logo-track {
                gap: 2rem;
            }
        }

        @media (max-width: 600px) {
            .suppliers-heading h2,
            .products-heading h2 {
                font-size: 1.8rem;
            }
            
            .supplier-logo-item {
                min-width: 120px;
            }
            
            .product-logo-item {
                min-width: 140px;
            }
            
            .supplier-logo-img {
                width: 80px;
                height: 80px;
            }
            
            .product-logo-img {
                width: 100px;
                height: 100px;
            }
            
            .supplier-name,
            .product-name {
                font-size: 0.85rem;
            }
        }


        /* ==================== PRODUCTS & BRANDS SECTION ==================== */
.products-brands-section {
    background: linear-gradient(135deg, #F5C842 0%, #F4C430 50%, #E6B800 100%);
    padding: 60px 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.products-brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(0,0,0,0.06)" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,165.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.brands-header {
    text-align: center;
    margin-bottom: 40px;
}

.brands-header .section-pill {
    display: inline-flex;
}

.brands-header h2 {
    font-size: clamp(2rem, 4.5vw, 2.5rem);
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.brands-header p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Brands grid wrapper: limits visible rows until "See more" expands */
.brands-grid-wrapper {
    --brands-row-height: 250px;
    --brands-visible-rows: 2;
    max-height: calc(var(--brands-visible-rows) * var(--brands-row-height));
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-bottom: 0;
}

.brands-grid-wrapper.expanded {
    max-height: none;
}

/* Single grid for all brands */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.brand-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: white;
    border-color: rgba(67, 97, 238, 0.3);
}

.brand-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 15px;
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
    transform: scale(1.1);
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-item:hover .brand-logo img {
    transform: scale(1.05);
}

/* For brands without images - show initial letter */
.brand-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4361ee, #3f37c9);
    color: white;
    font-size: 36px;
    font-weight: 700;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.brand-item h3 {
    font-size: 1.3rem;
    color: #2b2d42;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.brand-item p {
    font-size: 0.95rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

/* View More Button */
.view-more-brands {
    text-align: center;
    margin: 40px 0 20px;
}

.view-more-btn {
    background: white;
    color: #4361ee;
    border: 2px solid #4361ee;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(67, 97, 238, 0.2);
}

.view-more-btn:hover {
    background: #4361ee;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateY(2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Brand logos styling */
.brand-logo img[src*=".jpg"],
.brand-logo img[src*=".png"] {
    mix-blend-mode: multiply;
}

/* Responsive: visible rows and grid columns per breakpoint */
@media (max-width: 992px) {
    .brands-grid-wrapper {
        --brands-row-height: 240px;
        --brands-visible-rows: 2;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 25px;
    }
    
    .brand-logo {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .brands-grid-wrapper {
        --brands-row-height: 230px;
        --brands-visible-rows: 2;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
    }
    
    .brands-header h2 {
        font-size: 2rem;
    }
    
    .brand-header p {
        font-size: 1rem;
    }
    
    .brand-item {
        padding: 25px 15px;
        min-height: 200px;
    }
    
    .brand-logo {
        width: 80px;
        height: 80px;
        padding: 12px;
    }
    
    .brand-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .brands-grid-wrapper {
        --brands-row-height: 200px;
        --brands-visible-rows: 2;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .brands-header h2 {
        font-size: 1.8rem;
    }
    
    .brand-item {
        padding: 20px 10px;
        min-height: 180px;
    }
    
    .brand-logo {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
    
    .brand-item h3 {
        font-size: 1.1rem;
    }
    
    .view-more-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Index page – extra responsiveness */
@media (max-width: 576px) {
    .hero {
        min-height: 85vh;
        padding: 1.5rem 1rem;
    }
    .benefits-container,
    .partners-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .benefits-heading h2 {
        font-size: 1.6rem;
    }
    .partners-heading h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding: 1rem 0.75rem;
    }
    .hero-headline {
        font-size: 1.75rem;
        font-weight: 800;
    }
    .hero-text-logo {
        max-width: 260px;
    }
    .apply-btn, .shop-now {
        width: 100%;
        max-width: none;
        font-size: 1rem;
    }
    .explore-services-heading {
        font-size: 1.25rem;
    }
}

/* Landing page — sunrise / sunset scroll reveal (landing-scroll-reveal.js) */
.scroll-reveal-item {
    opacity: 0;
    transform: translateY(1.75rem);
    transition:
        opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

.scroll-reveal-item.is-sunrise {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-item.is-sunset {
    opacity: 0;
    transform: translateY(-1rem);
    transition-delay: 0s;
    transition-duration: 0.34s;
}

.scroll-reveal-section .benefit-card.scroll-reveal-item,
.scroll-reveal-section .benefits-heading h2.scroll-reveal-item,
.scroll-reveal-section .benefits-heading > p.scroll-reveal-item {
    animation: none !important;
}

/* Explore hub + card use their own transforms/animations — do not override */
.explore-toggle-btn.scroll-reveal-item,
.explore-toggle-btn.scroll-reveal-item.is-sunrise,
.explore-toggle-btn.scroll-reveal-item.is-sunset {
    opacity: 1 !important;
    transform: translateY(-50%) !important;
    transition: none !important;
}

.scroll-reveal-popup.is-sunrise {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-reveal-popup {
    transform: translateY(1.75rem) scale(0.98);
}

/* Keep inventory value centered while popup reveal animates */
.inventory-value-display.scroll-reveal-popup {
    transform: translate(-50%, calc(-50% + 1.75rem)) scale(0.98);
}

.inventory-value-display.scroll-reveal-popup.is-sunrise {
    transform: translate(-50%, -50%) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal-item,
    .scroll-reveal-item.is-sunrise,
    .scroll-reveal-item.is-sunset {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}