
        /* --- THEME VARIABLES --- */
        :root { 
            --primary: #3a0a6f; 
            --dark: #0b0e14; 
            --accent: #78ddff; 
            --bg-gradient: radial-gradient(circle at center, #3a0a6f, #0b0316);
            --text-muted: #b0b0b0;
        }
        
        /* --- GLOBAL BASE STYLES --- */
        body, html {
            margin: 0; padding: 0; 
            width: 100%; 
            min-height: 100%; 
            color: #fff; 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background: var(--bg-gradient);
            -webkit-font-smoothing: antialiased;
            /* Removed overflow-x: hidden */
        }

        /* --- NAVIGATION STYLES --- */
        .navbar { 
            z-index: 99999 !important; 
            padding: 20px 0; 
            background: transparent !important; 
            border-bottom: 1px solid rgba(255,255,255,0.05); 
            transition: all 0.4s ease-in-out; 
        }
        .nav-link { 
            color: #fff !important; 
            font-weight: 600; 
            text-transform: uppercase; 
            font-size: 0.9rem; 
            letter-spacing: 0.5px; 
            transition: 0.3s;
        }
        .nav-link:hover, .nav-link.active { 
            color: var(--accent) !important; 
        }

        .navbar.scrolled {
            background: #2d2f8f ; 
            padding: 1px 0 !important; 
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
            border-bottom: none;
            font-size: 10px;
            
             
    background: radial-gradient(circle at top, rgba(11, 3, 22, 0.95), rgba(58, 10, 111, 0.9)), url(imgs/about-services-bg.jpg)!important;
    
    
        }
        .navbar.scrolled .nav-link {     padding:5px 10px;}
        .navbar.scrolled .btn {      padding:5px 10px;}
        .navbar.scrolled .navbar-brand img { width: 130px; transition: 0.3s; }

        /* --- WHATSAPP --- */
        #whatsapp-button {
            position: fixed; left: 20px; bottom: 30px; z-index: 99999;
            background: #25d366; color: #fff; padding: 10px 18px;
            border-radius: 50px; text-decoration: none; display: flex;
            align-items: center; font-weight: 700; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            animation: jump 3s infinite;
        }
        @keyframes jump { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }
/* --- SECTION BASE --- */
.section-3d {
    width: 100%;
    min-height: 100vh;
    padding-top: 110px;
    padding-bottom: 50px;
    position: relative;
    opacity: 1;
    visibility: visible;
}
 
/* Desktop 3D mode */
@media (min-width: 992px) {
/* ONLY lock scroll on the homepage */
    body.home-mode {
        height: 100vh;
        overflow: hidden;
    }

    /* Force scrolling on other pages */
    body.scroll-mode {
        height: auto !important;
        overflow-y: auto !important;
        overflow-x: hidden;
    }

    #viewport {
        position: fixed;
        inset: 0;
        perspective: 2000px;
    }

    #world {
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
    }

    .section-3d {
        position: absolute;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateZ(-800px);
    }

    .section-3d.active {
        opacity: 1;
        transform: translateZ(0);
        pointer-events: auto;
        z-index: 5;
    }
}

/* Mobile behaves like normal website */
@media (max-width: 991px) {
    body {
        overflow: auto;
    }

    #viewport {
        position: relative;
        height: auto;
        perspective: none;
    }

    .section-3d {
        position: relative;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto;
    }

    #side-progress,
    #car-layer {
        display: none !important;
    }
}

        /* --- CONTENT STYLES --- */
        .hero-section { min-height: 100vh; }
        
        .hero-title { font-size: 4rem; font-weight: 800; line-height: 1.05; }
        .hero-title .parastyle{ font-size: 1rem; font-weight: 500; line-height: .8; }
        .hero-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 14px; color: #ffffff; text-decoration: none; }
        .hero-link span { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: 0.3s; }
        .hero-link:hover span { background: var(--accent); border-color: var(--accent); }
        
        @media (max-width: 991px) {
            .hero-title { font-size: 2.8rem; }
            .hero-image { transform: none; margin-top: 40px; }
        }
    
        .about-section { background: #fff; color: #333; }
        .about-prefix { font-size: 14px; color: #8c8c8c; margin-bottom: 12px; display: inline-block; }
        .about-title { font-size: 3rem; font-weight: 700; color: #2d2f8f; line-height: 1.2; }
        .about-text { font-size: 15px; color: #6c757d; max-width: 500px; margin-top: 16px; }
        .about-counter h2 { font-size: 2rem; font-weight: 700; color: #000; }
        
        .services-section { background-color: #f8f9fb; color: #333; }
        .services-prefix { font-size: 14px; color: #8c8c8c; }
        .services-title { font-size: 3rem; font-weight: 700; color: #2d2f8f; line-height: 1.2; }
        .services-text { font-size: 15px; color: #6c757d; }
        .service-card { border-radius: 18px; padding: 30px; position: relative; transition: all 0.3s ease; }
        .service-card:hover { transform: translateY(-10px); }
        .service-card h5 { font-weight: 600; margin-top: 40px; }
        
        .service-dark { background: radial-gradient(circle at top, #2d144f, #0e051d); color: #fff; }
        .service-dark p { color: #cfcbd6; }
        .service-light { background: #ffffff; box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
        .service-number { position: absolute; top: 20px; left: 20px; font-size: 12px; opacity: 0.6; }

        .testimonial-section { background: radial-gradient(circle at top, #3b0a6f, #0c0217); color: #fff; }
        .testimonial-title { font-size: 3rem; font-weight: 700; }
        .testimonial-tabs .nav-link { color: #bfb6d6; border-radius: 0; padding: 12px 16px; white-space: nowrap; }
        .testimonial-tabs .nav-link.active { color: #fff; background: transparent; border-left: 3px solid var(--accent); }
        .testimonial-card { background: rgba(255,255,255,0.05); border-radius: 18px; padding: 30px;  }
        .testimonial-img { width: 100%; border-radius: 14px; margin-bottom: 20px; }

        /* --- FLEET SECTION CSS --- */
        .fleet-section { background: #fff; color: #333; }
        .fleet-prefix { font-size: 14px; color: #8c8c8c; display: inline-block; margin-bottom: 10px; }
        .fleet-title { font-size: 3rem; font-weight: 700; color: #2d2f8f; }
        .fleet-text { font-size: 15px; color: #6c757d; }
        .fleet-card { background: #f8f9fb; border-radius: 18px; padding: 30px; transition: 0.3s; height: 100%; border: 1px solid #eee; }
        .fleet-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .fleet-card-light { background: #fff; }
        .fleet-card h5 { font-weight: 600; color: #2d2f8f; margin-bottom: 5px; }
        .fleet-card p { font-size: 13px; color: #888; margin-bottom: 15px; }
        .fleet-card ul { padding-left: 20px; font-size: 14px; color: #555; line-height: 1.8; }
        .fleet-img { width: 100%; height: auto; margin-bottom: 20px; }

        .app-section { background-color: #f8f9fb; color: #333; }
        .app-title { font-size: 3.2rem; font-weight: 700; color: #2d2f8f; line-height: 1.15; }
        .app-subtitle { font-size: 15px; color: var(--primary); }
        .app-text { font-size: 15px; color: #6c757d; max-width: 480px; }
        .app-btn { background: var(--primary); border:none; border-radius: 30px; padding: 12px 30px; font-size: 14px; transition: 0.3s; }
        .app-btn:hover { background: var(--accent); transform: scale(1.05); }
        .app-image { max-width: 420px; }

        /* --- LOCATIONS SECTION CSS --- */
        .locations-section { background: radial-gradient(circle at top, #3b0a6f, #0c0217); color: #fff; }
        .locations-prefix { font-size: 14px; color: var(--accent); display: inline-block; margin-bottom: 10px; }
        .locations-title { font-size: 3rem; font-weight: 700; }
        .locations-text { color: #b0b0b0; }
        .location-card { background: rgba(255,255,255,0.08); padding: 20px; border-radius: 12px; text-align: center; font-weight: 600; transition: 0.3s; border: 1px solid rgba(255,255,255,0.05); }
        .location-card:hover { background: var(--accent); color: #000; transform: translateY(-5px); }

        /* --- FOOTER FIXED STYLES --- */
        .footer-section { background: radial-gradient(circle at top, #3b0a6f, #0c0217); color: #fff; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 12px; }
        
        .footer-links a { 
            color: var(--text-muted); 
            text-decoration: none; 
            font-size: 14px; 
            transition: all 0.3s ease; 
        }
        .footer-links a:hover { 
            color: var(--accent); 
            padding-left: 8px; 
        }
        
        .footer-title { color: #fff; font-weight: 700; margin-bottom: 20px; }
        .footer-text { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
        .footer-logo { font-size: 24px; font-weight: 800; text-transform: uppercase; color: #fff; letter-spacing: 1px; }
        
        .footer-social a { 
            display: inline-flex; align-items: center; justify-content: center;
            width: 35px; height: 35px; border-radius: 50%; background: rgba(255,255,255,0.1);
            color: #fff; margin-right: 10px; font-size: 16px; transition: 0.3s; text-decoration: none;
        }
        .footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
        
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; color: #777; }
        .footer-bottom a { color: #777; text-decoration: none; transition: 0.3s; }
        .footer-bottom a:hover { color: #fff; }

        /* Progress Dots */
        #side-progress { position: fixed; right: 30px; top: 50%; transform: translateY(-50%); z-index: 10; display: flex; flex-direction: column; gap: 15px; }
        .p-dot { width: 10px; height: 10px; border: 1px solid #2d2f8f; border-radius: 50%; cursor: pointer; transition: 0.3s; }
        .p-dot.active { background: #fff; border: 1px solid #2d2f8f; transform: scale(1.5); }

        /* --- GLOBAL CAR LAYER (Single Image Logic) --- */
        #car-layer {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 5; /* Between Background (0) and Text (20) */
            pointer-events: none; /* Allow clicking through the car */
            /* Removed overflow: hidden */
        }
/* --- CAR LAYER --- */
#car-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

/* SPRITE CONTAINER */
#car-sprite {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    max-width: 90vw;
}

/* ALL SPRITE LAYERS */
#car-sprite img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    opacity: 0;
}

/* Z STACK */
#global-car  { z-index: 1; }
#global-car1 { z-index: 2; }
#global-carw { z-index: 3; }

/* TEXT ABOVE */
.hero-content,
.hero-title {
    position: relative;
    z-index: 20;
}

