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

        /* 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 Section – gradient behind image so white/transparent areas match hero-stats-strip */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-image: url('images/newdesign/home-bg.png'), linear-gradient(
                90deg,
                #D4A000 0%,
                #E8C020 31%,
                #E0B810 73%,
                #D4A000 97%
            );
            background-size: cover, cover;
            background-position: center center, center center;
            background-repeat: no-repeat, no-repeat;
            padding: 2rem 1.5rem;
            position: relative;
            overflow: hidden;
            transition: background-position 0.1s ease-out;
        }

        /* 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 {
            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-size: 3.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .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-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 - darker yellow gradient (match hero-and-stats-section.html) */
        .hero-stats-strip {
            width: 100%;
            position: relative;
            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: 1rem;
            font-weight: 700;
            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);
            font-weight: 800;
            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:hover .feature-arrow-link {
            opacity: 1;
            transform: translateX(0);
        }

        .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 .feature-arrow-link {
            color: #111;
        }

        .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;
        }

        .feature-arrow-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 24px;
            font-size: 14px;
            font-weight: 700;
            color: #2D3748;
            text-decoration: none;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity 0.3s, transform 0.3s;
        }

        .feature-arrow-link .fa-arrow-right {
            font-size: 13px;
        }

        .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 - bg image, yellow/blue overlay, glass cards (benefits-section.html) */
        .benefits {
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
            background-color: #1a2a6c;
            background-image: url("images/newdesign/benefits-bg.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .benefits::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(247, 190, 19, 0.35);
            z-index: 0;
        }

        .benefits::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                160deg,
                rgba(10, 25, 90, 0.62) 0%,
                rgba(10, 25, 90, 0.30) 50%,
                rgba(10, 25, 90, 0.65) 100%
            );
            z-index: 0;
        }

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

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

        .benefits-pill {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(247, 190, 19, 0.28);;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1.25rem;
            letter-spacing: 0.02em;
        }

        .benefits-heading h2 {
            font-family: 'Baloo 2', cursive;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.01em;
            line-height: 1.1;
            text-shadow: 0 3px 18px rgba(10, 25, 90, 0.4);
        }

        .benefits-heading h2 em {
            font-style: normal;
            color: #FFC107;
        }

        .benefits-heading p {
            margin-top: 1rem;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 600;
        }

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

        .benefit-card {
            background: rgba(247, 190, 19, 0.28);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            border-radius: 22px;
            padding: 2.25rem 1.75rem 2.5rem;
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
            box-shadow: 0 8px 32px rgba(247, 190, 19, 0.2);
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
        }

        .benefit-card::after {
            content: '';
            position: absolute;
            top: 1.75rem;
            left: 0;
            width: 3px;
            height: 2.5rem;
            background: #FFC107;
            border-radius: 0 4px 4px 0;
            transition: height 0.35s ease;
        }

        .benefit-card:hover {
            transform: translateY(-6px);
            background: rgba(247, 190, 19, 0.42);
            box-shadow: 0 18px 48px rgba(247, 190, 19, 0.3);
        }

        .benefit-card:hover::after {
            height: 4rem;
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #FFC107;
            border-radius: 16px;
            font-size: 1.4rem;
            color: #0A1E64;
            margin-bottom: 1.4rem;
            transition: transform 0.3s ease, background 0.3s ease;
            box-shadow: 0 4px 16px rgba(247, 190, 19, 0.3);
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.08) rotate(-3deg);
            background: #f7be13;
        }

        .benefit-card h3 {
            font-family: 'Baloo 2', cursive;
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.65rem;
            letter-spacing: 0.01em;
        }

        .benefit-card p {
            font-size: 0.88rem;
            font-weight: 600;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.8);
        }

        /* 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 {
                padding: 1.75rem 1.4rem 2rem;
            }
        }

        @media (max-width: 600px) {
            .benefits {
                padding: 4rem 1.25rem;
            }
            .benefits-heading h2 {
                font-size: 1.6rem;
            }
            .benefits-heading p {
                font-size: 0.85rem;
            }
            .benefit-card h3 {
                font-size: 0.95rem;
            }
            .benefit-card p {
                font-size: 0.78rem;
            }
            .benefit-card {
                padding: 1.35rem 1.1rem 1.6rem;
                border-radius: 16px;
            }
            .benefit-icon {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
                border-radius: 12px;
            }
            .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;
            }
        }

        .benefits-heading {
            animation: benefitsFadeUp 0.55s ease both 0.1s;
        }
        .benefit-card {
            animation: benefitsFadeUp 0.55s ease both;
        }
        .benefit-card:nth-child(1) { animation-delay: 0.18s; }
        .benefit-card:nth-child(2) { animation-delay: 0.26s; }
        .benefit-card:nth-child(3) { animation-delay: 0.34s; }
        .benefit-card:nth-child(4) { animation-delay: 0.42s; }
        .benefit-card:nth-child(5) { animation-delay: 0.50s; }
        .benefit-card:nth-child(6) { animation-delay: 0.58s; }
        @keyframes benefitsFadeUp {
            from { opacity: 0; transform: translateY(22px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* Video Section - sample.html style */
        .video-section {
            padding: 5rem 2rem;
            background: #fdfbf4;
            position: relative;
            overflow: hidden;
        }

        .video-section-inner {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .video-section .video-badge {
            display: inline-block;
            background: #f5c518;
            color: #000;
            font-family: 'Nunito', sans-serif;
            font-weight: 800;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 20px;
            border-radius: 999px;
            margin-bottom: 20px;
        }

        .video-section .video-section-title {
            font-family: 'Nunito', sans-serif;
            font-weight: 900;
            font-size: clamp(32px, 5vw, 52px);
            color: #1a1400;
            line-height: 1.1;
            margin: 0 0 14px 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: 15px;
            margin: 0 0 40px 0;
        }

        .video-section .video-main-player {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 16px;
            overflow: hidden;
            background: linear-gradient(135deg, #f5c518 0%, #ffe066 50%, #ffd000 100%);
            cursor: pointer;
            margin-bottom: 20px;
            box-shadow: 0 20px 60px rgba(245,197,24,0.3), 0 4px 20px rgba(0,0,0,0.08);
        }

        .video-section .video-main-player::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.25) 0%, transparent 60%),
                        radial-gradient(ellipse at 20% 80%, rgba(200,140,0,0.3) 0%, transparent 50%);
            z-index: 1;
            pointer-events: none;
        }

        .video-section .video-main-player::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 1;
            pointer-events: none;
        }

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

        .video-section .video-duration-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(0,0,0,0.35);
            color: #fff;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: 6px;
            z-index: 2;
        }

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

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

        .video-section .video-play-btn {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 0 0 12px rgba(255,255,255,0.2), 0 8px 24px rgba(0,0,0,0.15);
        }

        .video-section .video-main-player:hover .video-play-btn {
            transform: scale(1.1);
            box-shadow: 0 0 0 20px rgba(255,255,255,0.18), 0 8px 32px rgba(0,0,0,0.2);
        }

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

        .video-section .video-info {
            text-align: left;
            margin-bottom: 28px;
        }

        .video-section .video-info-title {
            font-family: 'Nunito', sans-serif;
            font-weight: 800;
            font-size: 22px;
            color: #1a1400;
            margin: 0 0 6px 0;
        }

        .video-section .video-info-desc {
            font-size: 14px;
            color: #7a6f50;
            margin: 0;
        }

        .video-section .video-strip-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .video-section .video-strip-arrow {
            flex-shrink: 0;
            width: 38px;
            height: 38px;
            min-width: 44px;
            min-height: 44px;
            border-radius: 50%;
            border: 1.5px solid #f0e08a;
            background: #fff8d6;
            color: #1a1400;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .video-section .video-strip-arrow:hover {
            background: #f5c518;
            border-color: #f5c518;
            box-shadow: 0 2px 10px rgba(245,197,24,0.4);
        }

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

        .video-section .video-strip-arrow:disabled:hover,
        .video-section .video-strip-arrow.disabled:hover {
            background: #fff8d6;
            border-color: #f0e08a;
            box-shadow: none;
        }

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

        .video-section .video-thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            flex: 1;
            overflow: hidden;
        }

        .video-section .video-thumb {
            position: relative;
            aspect-ratio: 4/3;
            min-height: 44px;
            border-radius: 10px;
            background: #fef3b0;
            cursor: pointer;
            overflow: hidden;
            border: 2px solid #f0e08a;
            transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .video-section .video-thumb:hover {
            transform: translateY(-2px);
            border-color: #f5c518;
            box-shadow: 0 4px 16px rgba(245,197,24,0.25);
        }

        .video-section .video-thumb.active {
            border-color: #f5c518;
            box-shadow: 0 4px 16px rgba(245,197,24,0.3);
            background: #fff3c4;
        }

        .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;
        }

        .video-section .video-thumb-gradient {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,240,150,0.3));
        }

        .video-section .video-thumb-play {
            position: relative;
            z-index: 1;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1.5px solid rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            transition: border-color 0.2s, background 0.2s;
        }

        .video-section .video-thumb:hover .video-thumb-play,
        .video-section .video-thumb.active .video-thumb-play {
            border-color: #1a1400;
            background: #f5c518;
        }

        .video-section .video-thumb-play svg {
            width: 11px;
            height: 11px;
            fill: rgba(0,0,0,0.5);
            margin-left: 2px;
        }

        .video-section .video-thumb.active .video-thumb-play svg,
        .video-section .video-thumb:hover .video-thumb-play svg {
            fill: #000;
        }

        .video-section .video-thumb-label {
            position: relative;
            z-index: 1;
            font-size: 10px;
            color: #7a6f50;
            text-align: center;
            padding: 0 8px;
            line-height: 1.3;
            font-weight: 500;
        }

        .video-section .video-thumb.active .video-thumb-label {
            color: #1a1400;
        }

        /* Video Section - Responsive (match video-section.html) */
        @media (max-width: 900px) {
            .video-section {
                padding: 3.5rem 1.5rem;
            }
            .video-section .video-thumbnails {
                grid-template-columns: repeat(3, 1fr);
            }
            .video-section .video-play-btn {
                width: 60px;
                height: 60px;
            }
            .video-section .video-play-btn svg {
                width: 22px;
                height: 22px;
            }
            .video-section .video-info-title {
                font-size: 19px;
            }
        }

        @media (max-width: 600px) {
            .video-section {
                padding: 2.5rem 1rem;
            }
            .video-section-inner {
                max-width: 100%;
            }
            .video-section .video-section-title {
                font-size: clamp(24px, 7vw, 34px);
            }
            .video-section .video-section-subtitle {
                font-size: 13px;
                margin-bottom: 24px;
            }
            .video-section .video-main-player {
                border-radius: 12px;
                margin-bottom: 14px;
            }
            .video-section .video-play-btn {
                width: 52px;
                height: 52px;
                box-shadow: 0 0 0 8px rgba(255,255,255,0.2), 0 6px 16px rgba(0,0,0,0.15);
            }
            .video-section .video-play-btn svg {
                width: 20px;
                height: 20px;
            }
            .video-section .video-duration-badge {
                font-size: 11px;
                top: 10px;
                right: 10px;
            }
            .video-section .video-info {
                margin-bottom: 18px;
            }
            .video-section .video-info-title {
                font-size: 16px;
            }
            .video-section .video-info-desc {
                font-size: 13px;
            }
            .video-section .video-strip-wrapper {
                gap: 6px;
            }
            .video-section .video-strip-arrow {
                width: 32px;
                height: 32px;
                min-width: 40px;
                min-height: 40px;
            }
            .video-section .video-strip-arrow svg {
                width: 14px;
                height: 14px;
            }
            .video-section .video-thumbnails {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .video-section .video-thumb {
                border-radius: 8px;
            }
            .video-section .video-thumb-label {
                font-size: 9px;
            }
            .video-section .video-thumb-play {
                width: 26px;
                height: 26px;
                margin-bottom: 5px;
            }
            .video-section .video-thumb-play svg {
                width: 9px;
                height: 9px;
            }
        }

        @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: 2.5rem;
            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);
            font-weight: 800;
            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-family: 'Inter', sans-serif;
            font-size: clamp(2rem, 4.5vw, 3.15rem);
            font-weight: 800;
            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);
            font-weight: 800;
            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: none;
        }
        .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 .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);
            font-weight: 700;
            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-icon-wrap {
            width: 6.5rem;
            height: 6.5rem;
            border-radius: 1.5rem;
            background: linear-gradient(135deg, rgba(234, 179, 8, 0.25), rgba(245, 200, 0, 0.08));
            border: 1px solid rgba(234, 179, 8, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: #eab308;
            font-size: 2.5rem;
            animation: explore-float 3s ease-in-out infinite;
        }

        @keyframes explore-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .explore-placeholder-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: #FFC107;
            margin: 0 0 0.75rem 0;
        }

        .explore-placeholder-desc {
            color: #FFEC9E;
            font-size: 1.2rem;
            max-width: 28rem;
            margin: 0 0 1.25rem 0;
            line-height: 1.6;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
        }

        .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: #FFC107;
            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.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 / ✕) — yellow theme */
        .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, #eab308, #f59e0b);
            box-shadow: 0 8px 32px rgba(234, 179, 8, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
            border: none;
            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;
            transition: transform 0.3s, box-shadow 0.3s;
            pointer-events: all;
            animation: explore-pulse-glow 3s ease-in-out infinite;
        }

        .explore-toggle-btn:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 40px rgba(234, 179, 8, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }

        .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-pulse-glow {
            0%, 100% { box-shadow: 0 8px 32px rgba(234, 179, 8, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
            50%      { box-shadow: 0 8px 40px rgba(245, 200, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
        }

        /* 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;
            transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
        }

        .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::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;
        }

         /* Responsive CSS for existing sections */
        @media (max-width: 900px) {
            /* Hero section: tablet – centered, stacked (match hero-and-stats-section.html) */
            .hero {
                min-height: auto;
                padding: 5rem 1.5rem 3.5rem;
                background-position: center center;
                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);
                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-placeholder-icon-wrap {
                margin-left: auto;
                margin-right: auto;
            }
            .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;
            }
            .feature-arrow-link {
                font-size: 13px;
                margin-top: 18px;
            }

            /* 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;
            }
            .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;
            }
            .feature-arrow-link {
                font-size: 12px;
                margin-top: 14px;
            }
        }

        @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: 2rem;
            text-align: center;
            max-width: 500px;
            width: 90%;
            position: relative;
            box-shadow: none;
            animation: popupAppear 0.5s ease-out;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: auto;
        }

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

        .popup-image {
            width: 80%;
            max-width: 400px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .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;
        }

        /* Continue Shopping Button - Centered and responsive */
        .continue-btn {
            background: linear-gradient(135deg, #000080, #000b70);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: -4.9rem;
        }

        .continue-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }

        .continue-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 128, 0.4);
        }

        /* Inventory Value Display */
        .inventory-value-display {
            text-align: center;
            margin-bottom: 0px;
            margin-left: 10px;
        }

        .inventory-value-display h1 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            margin-top: 10.8rem;
            font-family: Impact, 'Arial Black', Arial, sans-serif;
            text-transform: uppercase;
            color: #FF4444;
            text-shadow: 
                /* 3D extrusion effect */
                1px 1px 0 #E63939,
                2px 2px 0 #CC2E2E,
                3px 3px 0 #B32424,
                4px 4px 0 #991919,
                5px 5px 0 #800F0F,
                6px 6px 0 #660404,
                7px 7px 0 #4D0000,
                8px 8px 0 #330000,
                9px 9px 0 #1A0000,
                10px 10px 0 #000000,
                /* Highlight on top edge */
                -1px -1px 0 #FF6666,
                0px -1px 0 #FF6666,
                1px -1px 0 #FF6666,
                /* Shadow at the bottom */
                11px 11px 10px rgba(0,0,0,0.4),
                12px 12px 20px rgba(0,0,0,0.3),
                13px 13px 30px rgba(0,0,0,0.2);
            filter: brightness(1);
        }

        .inventory-value-display p {
            color: white;
            font-size: 1rem;
            margin-top: -20.5rem !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-weight: bold;
            letter-spacing: 2px;
        }

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

            .inventory-value-display {
            text-align: center;
            margin-bottom: 30.5px;
            }   

            inventory-value-display h1 {
            font-size: 1rem;
            font-weight: 900;
            margin-left: 10px;
        }

            
            
            .popup-image {
                width: 90%;
            }
            
            .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;
            }
            
            .continue-btn {
                width: 45%;
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .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-family: 'Inter', sans-serif;
            font-size: clamp(2rem, 4.5vw, 3.15rem);
            font-weight: 800;
            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 30s 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 h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.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;
    }
    .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;
    }
}