:root {
            --primary-purple: #3d2b99;
            --purple-dark: rgb(45, 30, 110);
            --primary-orange: #f27e03;
            --orange-hover: #d66e02;
            --white: #ffffff;
            --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
         }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        /* ==========================================
           0. HEADER & NAVBAR
           ========================================== */
        .header {
            background-color: var(--white);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.9rem 1.8rem;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 52px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        .nav-logo {
            display: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.2rem;
            align-items: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .nav-link-item {
            position: relative;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary-purple);
            padding: 8px 4px;
            display: inline-block;
            overflow: hidden;
            letter-spacing: 0.5px;
        }

        .nav-link-item .text-wrap {
            display: inline-block;
            position: relative;
            transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
        }

        .nav-link-item .text-wrap::after {
            content: attr(data-text);
            position: absolute;
            left: 0;
            top: 120%;
            color: var(--primary-orange);
            font-weight: 800;
            white-space: nowrap;
        }

        .nav-link-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-purple), var(--primary-orange));
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(242, 126, 0, 0.4);
            transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .nav-link-item:hover .text-wrap {
            transform: translateY(-130%);
        }

        .nav-link-item:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .badge-btn {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
        }

        .badge-btn:hover {
            transform: translateY(-2px);
        }

        .badge-btn:active {
            transform: translateY(2px);
            box-shadow: 0 2px 0 #111111;
        }

        .badge-btn .btn-text {
            background-color: #2b2b2b;
            color: var(--white);
            padding: 9px 22px 9px 18px;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
            z-index: 2;
            transition: background-color var(--transition-smooth);
        }

        .badge-btn .btn-icon-box {
            background-color: var(--primary-orange);
            color: var(--white);
            padding: 9px 14px 9px 20px;
            margin-left: -12px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            transition: background-color var(--transition-smooth);
        }

        .badge-btn .btn-icon-box svg {
            width: 18px;
            height: 18px;
            fill: var(--white);
            animation: phonePulse 2s infinite;
        }

        .badge-btn:hover .btn-text {
            background-color: var(--primary-purple);
        }

        .badge-btn:hover .btn-icon-box {
            background-color: var(--orange-hover);
        }

        @keyframes phonePulse {
            0%, 100% { transform: rotate(0deg) scale(1); }
            10% { transform: rotate(-15deg) scale(1.1); }
            20% { transform: rotate(15deg) scale(1.1); }
            30% { transform: rotate(-15deg) scale(1.1); }
            40% { transform: rotate(0deg) scale(1); }
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            z-index: 1001;
            padding: 5px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background-color: var(--primary-purple);
            border-radius: 3px;
            transition: all var(--transition-smooth);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-smooth);
            z-index: 998;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 992px) {
            .navbar {
                padding: 0.8rem 1.2rem;
            }

            .logo img {
                height: 44px;
            }

            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: -300px;
                width: 280px;
                height: 100vh;
                background-color: var(--primary-purple);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 2rem;
                gap: 1.8rem;
                box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
                transition: left 0.35s ease-in-out;
                z-index: 999;
                overflow-y: auto;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-logo {
                display: flex;
                align-items: center;
                width: 100%;
                padding-bottom: 1.5rem;
                margin-bottom: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            }

            .nav-logo img {
                height: 40px;
                width: auto;
                object-fit: contain;
                background-color: var(--white);
                padding: 6px 10px;
                border-radius: 6px;
            }

            .nav-link-item {
                color: var(--white);
                font-size: 1.2rem;
            }

            .nav-link-item .text-wrap::after {
                color: var(--primary-orange);
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
                background-color: var(--white);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
                background-color: var(--white);
            }
        }

        @media (max-width: 768px) {
            .badge-btn .btn-text {
                display: none;
            }

            .badge-btn {
                border-radius: 50%;
                box-shadow: 0 4px 10px rgba(242, 126, 3, 0.3);
            }

            .badge-btn .btn-icon-box {
                margin-left: 0;
                padding: 10px;
                border-radius: 50%;
            }

            .badge-btn .btn-icon-box svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0.6rem 1rem;
                z-index: 2000 !important;
            }

            .logo img {
                height: 38px;
            }

            .nav-actions {
                gap: 0.6rem;
            }
        }

        /* 1. Hero Section with JS-driven Parallax Background */
        .hero-banner {
            position: relative;
            width: 100%;
            min-height: 85vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 80px 8% 140px;
        }

        .hero-bg-layer {
            position: absolute;
            top: -80px;
            left: 0;
            width: 100%;
            height: calc(100% + 160px);
            background-image: linear-gradient(90deg, rgba(12, 12, 14, 0.93) 0%, rgba(12, 12, 14, 0.78) 55%, rgba(12, 12, 14, 0.35) 100%),
                              url('../images/bannermain.webp');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            will-change: transform;
            z-index: 0;
        }

        .frost-layer {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            will-change: transform;
        }

        .frost-particle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.05) 70%);
            filter: blur(0.5px);
            animation: driftFade 7s ease-in-out infinite;
        }

        @keyframes driftFade {
            0%   { transform: translateY(0) translateX(0); opacity: 0.15; }
            50%  { transform: translateY(-18px) translateX(6px); opacity: 0.55; }
            100% { transform: translateY(0) translateX(0); opacity: 0.15; }
        }

        .banner-content {
            position: relative;
            max-width: 660px;
            color: #ffffff;
            z-index: 2;
            will-change: transform, opacity;
        }

        .banner-title,
        .banner-description,
        .banner-buttons {
            opacity: 0;
            transform: translateY(28px);
            animation: heroReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .banner-title      { animation-delay: 0.15s; }
        .banner-description { animation-delay: 0.35s; }
        .banner-buttons     { animation-delay: 0.55s; }

        @keyframes heroReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .banner-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.5px;
            margin-bottom: 20px;
        }

        .banner-description {
            font-size: 1.05rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 36px;
        }

        .banner-buttons {
            display: flex;
            align-items: center;
            gap: 22px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background-color: var(--primary-orange);
            color: #ffffff;
            font-weight: 700;
            font-size: 1.05rem;
            padding: 16px 30px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 18px rgba(242, 126, 3, 0.3);
        }

        .btn-primary .fa-arrow-up-right-from-square {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .btn-primary:hover {
            background-color: var(--orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(242, 126, 3, 0.5);
        }

        .btn-primary:hover .fa-arrow-up-right-from-square {
            transform: translate(3px, -3px);
        }

        .btn-video {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
        }

        .play-circle-outer {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            backdrop-filter: blur(4px);
        }

        .play-circle-inner {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .play-circle-inner .fa-play {
            color: var(--primary-orange);
            font-size: 0.95rem;
            margin-left: 2px;
        }

        .btn-video:hover .play-circle-outer {
            background-color: rgba(255, 255, 255, 0.4);
            transform: scale(1.08);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
        }

        .play-circle-outer {
            animation: playPulse 2.6s ease-in-out 1.4s infinite;
        }

        @keyframes playPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25); }
            50%      { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
        }

        /* 2. Feature Cards Section (Overlapping Parallax Section) */
        .features-section {
            position: relative;
            margin-top: -90px;
            z-index: 10;
            padding: 0 5% 80px;
        }

        .cards-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .card-item {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 40px 24px 36px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transform: translateY(40px) scale(0.96);
            transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
        }

        .card-item.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .card-item:hover {
            transform: translateY(-8px) scale(1) !important;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
        }

        .card-icon {
            font-size: 2.8rem;
            color: var(--primary-orange);
            margin-bottom: 24px;
            display: inline-block;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .card-item:hover .card-icon {
            transform: scale(1.15) rotate(-4deg);
        }

        .card-title {
            font-size: 1.15rem;
            font-weight: 800;
            color: #111111;
            line-height: 1.35;
        }

        .demo-scroll-space {
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            text-align: center;
            padding: 0 10%;
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-bg-layer,
            .frost-layer,
            .banner-title,
            .banner-description,
            .banner-buttons,
            .card-item,
            .play-circle-outer {
                animation: none !important;
                transition: none !important;
                opacity: 1 !important;
                transform: none !important;
            }
        }

        @media (max-width: 1024px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Tablet-range fix: hero shrinks between 600-1024px so the
               overlapping features section needs a smaller negative
               margin here too, otherwise cards can overlap hero text. */
            .features-section {
                margin-top: -60px;
            }

            .hero-banner {
                min-height: 70vh;
                padding: 70px 6% 110px;
            }
        }

        @media (max-width: 768px) {
            .hero-banner {
                padding: 60px 6% 90px;
            }
        }

        @media (max-width: 600px) {
            .banner-title {
                font-size: 2.1rem;
            }
            .cards-grid {
                grid-template-columns: 1fr;
            }
            .features-section {
                margin-top: -50px;
            }
            .hero-banner {
                min-height: auto;
                padding: 50px 6% 70px;
            }
        }

        @media (max-width: 400px) {
            .hero-banner {
                padding: 40px 5% 60px;
            }
            .banner-title {
                font-size: 1.75rem;
            }
            .banner-description {
                font-size: 0.95rem;
            }
        }

        /* ==========================================
           3. FAQ SECTION
           ========================================== */
        .faq-section {
            padding: 60px 20px 100px;
        }

        .faq-container {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .faq-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-orange);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .faq-badge::before,
        .faq-badge::after {
            content: "";
            display: inline-block;
            width: 20px;
            height: 2px;
            background-color: var(--primary-orange);
            position: relative;
        }

        .faq-badge::before {
            box-shadow:
                -4px -3px 0 var(--primary-orange),
                -4px 3px 0 var(--primary-orange);
        }

        .faq-badge::after {
            box-shadow:
                4px -3px 0 var(--primary-orange),
                4px 3px 0 var(--primary-orange);
        }

        .faq-title {
            font-size: 42px;
            font-weight: 800;
            color: #0b0b0b;
            margin-bottom: 48px;
            letter-spacing: -0.5px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            display: flex;
            align-items: flex-start;
            text-align: left;
        }

        .faq-number {
            font-size: 20px;
            font-weight: 800;
            color: #0b0b0b;
            padding: 24px 16px 0 0;
            min-width: 45px;
        }

        .faq-card {
            flex: 1;
            background-color: #f4f5f9;
            border-radius: 12px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-card::before {
            content: "";
            position: absolute;
            top: 22px;
            left: -1px;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid #ffffff;
            z-index: 2;
        }

        .faq-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 28px;
        }

        .faq-question {
            font-size: 20px;
            font-weight: 700;
            color: #0b0b0b;
            padding-right: 20px;
        }

        .faq-arrow {
            width: 16px;
            height: 16px;
            border-right: 2px solid #0b0b0b;
            border-bottom: 2px solid #0b0b0b;
            transform: rotate(45deg);
            transition: transform 0.3s ease;
            margin-right: 4px;
            flex-shrink: 0;
        }

        .faq-body {
            padding: 0 28px 24px 28px;
            font-size: 15px;
            line-height: 1.6;
            color: #ffffff;
            display: none;
        }

        .faq-item.active .faq-card {
            background-color: var(--primary-orange);
        }

        .faq-item.active .faq-question {
            color: #ffffff;
        }

        .faq-item.active .faq-arrow {
            border-color: #ffffff;
            transform: rotate(-135deg);
        }

        .faq-item.active .faq-body {
            display: block;
        }

        .faq-item:not(.active) .faq-card:hover {
            background-color: #eeeef3;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .faq-title {
                font-size: 32px;
                margin-bottom: 35px;
            }

            .faq-question {
                font-size: 17px;
            }

            .faq-header {
                padding: 20px;
            }

            .faq-body {
                padding: 0 20px 20px 20px;
                font-size: 14px;
            }

            .faq-number {
                font-size: 16px;
                min-width: 38px;
                padding-right: 10px;
                padding-top: 21px;
            }
        }

        @media (max-width: 480px) {
            .faq-title {
                font-size: 27px;
            }

            .faq-badge {
                font-size: 12px;
            }

            .faq-question {
                font-size: 16px;
            }

            .faq-number {
                font-size: 14px;
                min-width: 32px;
            }

            .faq-arrow {
                width: 13px;
                height: 13px;
            }
        }
        .btn-explore {
            background-color: var(--primary-orange);
        }

        .btn-explore:hover {
            background-color: var(--orange-hover);
        }

        /* ==========================================
           GALLERY HEADER
           ========================================== */
        .gallery-header {
            text-align: center;
            margin-bottom: 40px;
            width: 100%;
            max-width: 1300px;
            box-sizing: border-box;
            padding: 0 20px;
            margin-left: auto;
            margin-right: auto;
        }

        .gallery-header .gallery-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #f27e03;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
            box-sizing: border-box;
        }

        .gallery-header .gallery-badge span {
            display: inline-block;
            width: 20px;
            height: 2px;
            background-color: #f27e03;
            border-top: 2px solid #f27e03;
            border-bottom: 2px solid #f27e03;
            padding: 1px 0;
            box-sizing: border-box;
        }

        .gallery-header h1 {
            margin: 0 0 12px 0;
            font-size: 42px;
            font-weight: 900;
            color: #0f172a;
            letter-spacing: -0.5px;
            line-height: 1.2;
            box-sizing: border-box;
        }

        .gallery-header p {
            margin: 0 auto;
            font-size: 16px;
            color: #64748b;
            max-width: 650px;
            line-height: 1.6;
            font-weight: 500;
            box-sizing: border-box;
        }

        /* ==========================================
           GALLERY WRAPPER + CENTERED (SWIPER-STYLE) SLIDER
           ========================================== */
        #fleetGalleryWrapper {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-color: #ffffff;
            padding: 20px 20px 90px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            box-sizing: border-box;
        }

        /* The viewport that clips the track. Slides are sized so the
           CURRENT slide sits centered inside this box, with neighboring
           slides peeking (partially) on either side - just like Swiper's
           centeredSlides option. */
        #sliderContainer {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            box-sizing: border-box;
        }

        #sliderTrack {
            display: flex;
            align-items: center;
            gap: 20px;
            will-change: transform;
            box-sizing: border-box;
        }

        .slide-item {
            flex-shrink: 0;
            overflow: hidden;
            border-radius: 6px;
            background-color: #f1f5f9;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            box-sizing: border-box;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
            opacity: 0.55;
            transform: scale(0.92);
        }

        /* The centered / active slide is scaled up and fully opaque */
        .slide-item.is-active {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
        }

        .slide-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            cursor: pointer;
        }

        /* Prev / Next controls, centered under the slider */
        .gallery-slider-nav {
            position: absolute;
            left: 50%;
            bottom: 20px;
            transform: translateX(-50%);
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .gallery-slider-nav .nav-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid #f27e03;
            background-color: #ffffff;
            color: #f27e03;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(242, 126, 3, 0.15);
        }

        .gallery-slider-nav .nav-btn:hover {
            background-color: #f27e03;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(242, 126, 3, 0.35);
        }

        .gallery-slider-nav .nav-btn:active {
            transform: translateY(0);
            box-shadow: 0 3px 8px rgba(242, 126, 3, 0.25);
        }

        /* Pagination dots (Swiper-style) */
        .gallery-slider-dots {
            position: absolute;
            left: 50%;
            bottom: -6px;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 5;
        }

        .gallery-slider-dots .dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background-color: #d9d9d9;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-slider-dots .dot.is-active {
            background-color: #f27e03;
            width: 24px;
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            .gallery-header {
                margin-bottom: 28px;
            }
            .gallery-header h1 {
                font-size: 30px;
            }
            .gallery-header p {
                font-size: 15px;
            }
            #fleetGalleryWrapper {
                padding: 15px 10px 84px;
            }
        }

        @media (max-width: 480px) {
            .gallery-header h1 {
                font-size: 24px;
            }
            .gallery-header .gallery-badge {
                font-size: 12px;
                letter-spacing: 1.5px;
            }
            .gallery-header p {
                font-size: 14px;
            }
            .gallery-slider-nav {
                gap: 10px;
            }
            .gallery-slider-nav .nav-btn {
                width: 42px;
                height: 42px;
                font-size: 14px;
            }
        }

        /* ==========================================
           GALLERY LIGHTBOX POPUP
           ========================================== */
        .lightbox-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            padding: 40px;
        }

        .lightbox-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .lightbox-overlay.active .lightbox-content {
            transform: scale(1);
        }

        .lightbox-content img {
            display: block;
            max-width: 90vw;
            max-height: 90vh;
            width: auto;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 3px;
            right: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            border: none;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .lightbox-close:hover {
            background-color: var(--primary-orange);
            transform: rotate(90deg);
        }

        .lightbox-nav-btn {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background-color: rgba(255, 255, 255, 0.12);
            color: #ffffff;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
            z-index: 5001;
        }

        .lightbox-nav-btn:hover {
            background-color: var(--primary-orange);
        }

        .lightbox-prev { left: 25px; }
        .lightbox-next { right: 25px; }

        @media (max-width: 600px) {
            .lightbox-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }
            .lightbox-close {
                top: -40px;
                right: -5px;
            }
        }

        /* ==========================================
           5. FOOTER
           ========================================== */
        .site-footer {
            background-color: #1a1333;
            background-image: radial-gradient(circle at 15% 0%, rgba(242, 126, 3, 0.08), transparent 45%);
            color: rgba(255, 255, 255, 0.75);
            padding: 70px 5% 0;
        }

        .footer-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
            gap: 40px;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-col-brand .footer-logo {
            display: inline-block;
            background-color: #ffffff;
            padding: 8px 14px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .footer-col-brand .footer-logo img {
            height: 40px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        .footer-col-brand p {
            font-size: 0.92rem;
            line-height: 1.7;
            max-width: 320px;
            margin-bottom: 24px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition-smooth);
        }

        .footer-social a:hover {
            background-color: var(--primary-orange);
            transform: translateY(-3px);
        }

        .footer-heading {
            color: #ffffff;
            font-size: 1.05rem;
            font-weight: 800;
            letter-spacing: 0.4px;
            margin-bottom: 22px;
            position: relative;
        }

        .footer-heading::after {
            content: '';
            display: block;
            width: 32px;
            height: 3px;
            background-color: var(--primary-orange);
            border-radius: 3px;
            margin-top: 10px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 0.92rem;
            transition: color 0.25s ease, padding-left 0.25s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
            padding-left: 4px;
        }

        .footer-contact {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.92rem;
            line-height: 1.55;
        }

        .footer-contact a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .footer-contact a:hover {
            color: var(--primary-orange);
        }

        .footer-contact i {
            color: var(--primary-orange);
            font-size: 1rem;
            margin-top: 3px;
            width: 18px;
            flex-shrink: 0;
        }

        .footer-bottom {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            padding: 22px 0;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.55);
        }

        .footer-bottom-links {
            display: flex;
            gap: 22px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary-orange);
        }

        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ==========================================
           4. CALL TO ACTION SECTION
           ========================================== */
        .cta-section {
            position: relative;
                background: linear-gradient(115deg, rgba(11, 28, 57, 0.96) 0%, rgba(45, 30, 110, 0.92) 55%, rgba(242, 126, 3, 0.85) 130%);
            color: #ffffff;
            min-height: 400px;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 40px 20px 0px;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 140%;
            height: 200%;
           /* background: repeating-linear-gradient(
                -45deg,
                rgba(255, 255, 255, 0.03),
                rgba(255, 255, 255, 0.03) 20px,
                transparent 20px,
                transparent 60px
            );*/
            pointer-events: none;
        }

        .cta-section .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .worker-image-container {
            flex: 1;
            max-width: 450px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .worker-image-container img {
            width: 100%;
            height: auto;
            max-height: 450px;
            object-fit: contain;
            display: block;
        }

        .cta-content {
            flex: 1.2;
            padding-left: 40px;
            padding-bottom: 20px;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .cta-content p {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #e2dcfc;
            margin-bottom: 30px;
            max-width: 650px;
        }

        .cta-section .btn-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-section .btn {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 2px;
            transition: all 0.3s ease;
            height: 48px;
            cursor: pointer;
        }

        .btn-orange {
            background-color: var(--primary-orange);
            color: #ffffff;
            padding-left: 20px;
        }

        .btn-orange .arrow-box {
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--primary-orange);
        }

        .btn-orange:hover {
            background-color: var(--orange-hover);
        }

        .btn-white {
            background-color: #ffffff;
            color: var(--primary-purple);
            padding-left: 20px;
        }

        .btn-white .arrow-box {
            background-color: var(--primary-orange);
            color: #ffffff;
        }

        .btn-white:hover {
            background-color: #f4f4f4;
        }

        .arrow-box {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            margin-right: 6px;
            font-size: 1.1rem;
            transition: transform 0.2s ease;
        }

        .cta-section .btn:hover .arrow-box {
            transform: translateX(3px);
        }

        @media (max-width: 992px) {
            .cta-section .container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .cta-content {
                padding-left: 0;
                margin-top: 30px;
            }

            .cta-section .btn-group {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .cta-content h2 {
                font-size: 1.8rem;
            }

            .cta-content p {
                font-size: 0.95rem;
            }

            .cta-section .btn-group {
                flex-direction: column;
                width: 100%;
            }

            .cta-section .btn {
                width: 100%;
            }
        }





        .enquiry-card-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center!important;
  justify-content:center;
  max-width: 1050px;
  width: 100%;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 150, 255, 0.08);
  align-items: flex-start;
}

/* Left Form Section */
.enquiry-form-wrapper {
  flex: 1;
}

.input-field-group {
  margin-bottom: 20px;
}

.input-field-group label {
  display: flex;
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 6px;
}

.mandatory-indicator {
  color: #e52e3d;
  margin-left: 2px;
}

.dual-field-row {
  display: flex;
  gap: 15px;
}

.single-field-col {
  flex: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  outline: none;
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #00a8ff;
  box-shadow: 0 0 8px rgba(0, 168, 255, 0.3);
}

.input-helper-text {
  display: block;
  font-size: 12px;
  color: #666666;
  margin-top: 4px;
}

/* Phone Input Customization */
.telephone-input-wrapper {
  display: flex;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  overflow: hidden;
}

.telephone-input-wrapper input {
  border: none;
  border-left: 1px solid #dcdcdc;
  border-radius: 0;
}

.country-code-selector {
  display: flex;
  align-items: center;
  padding: 0 10px;
  background-color: #fff;
  gap: 6px;
  cursor: pointer;
}

.country-flag-icon {
  width: 18px;
  height: auto;
}

.selector-arrow-icon {
  font-size: 8px;
  color: #555;
}

/* Form Action Button */
.form-button-container {
  text-align: center;
  margin-top: 25px;
}

.form-submit-btn {
  background-color:var(--orange-hover);
  color: #ffffff;
  border: none;
  padding: 12px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.form-submit-btn:hover {
  background-color: var(--primary-orange);
  transform: translateY(-1px);
}

/* Right Section - Cold Effect & Image */
.visual-content-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.frost-visual-card {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 210, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Cold / Frost Glow Animation */
.frost-visual-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 225, 255, 0.2) 0%, rgba(0, 100, 255, 0.1) 100%);
  pointer-events: none;
  animation: coldGlow 4s ease-in-out infinite alternate;
}

@keyframes coldGlow {
  0% { opacity: 0.3; filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.4)); }
  100% { opacity: 0.8; filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.8)); }
}

.frost-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.1) brightness(0.95);
}

.snowflake-svg-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  stroke: #a0eeff;
  z-index: 2;
  filter: drop-shadow(0 0 6px #00e1ff);
  animation: spinSlow 12s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive View */
@media (max-width: 768px) {
  .enquiry-card-container {
    flex-direction: column;
  }
}