  :root {
            --primary-color: #0c2d57;
            --secondary-color: #2a5caa;
            --accent-color: #2154a8;
            --light-color: #f8fafc;
            --dark-color: #1a1a2e;
            --text-color: #333333;
            --text-light: #6c757d;
            --gradient-primary: linear-gradient(135deg, #0c2d57 0%, #2a5caa 100%);
            --gradient-secondary: linear-gradient(135deg, #2a5caa 0%, #2a5caa 100%);
            --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
            --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.2);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --border-radius: 12px;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #ffffff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Lexend', sans-serif;
            font-weight: 500;
            color: var(--primary-color);
        }

        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

       
        .header-area {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            background-color: white;
            box-shadow: var(--shadow-light);
            z-index: 1000;
            transition: var(--transition);
            padding: 15px 0;
        }

        .header-area.stick {
            padding: 10px 0;
            box-shadow: var(--shadow-medium);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            display: inline-block;
        }

        .logo-img {
            height: 50px;
            width: auto;
            transition: var(--transition);
        }

        .header-area.stick .logo-img {
            height: 40px;
        }

      
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            margin-left: auto;
            margin-right: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            font-size: 16px;
            position: relative;
            padding: 8px 0;
            transition: var(--transition);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, #1a365d, #2d4d8c);
            transition: var(--transition);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #2d4d8c;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

       
 .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 40px;
}

.social-icons {
    order: 2;
}

.enquiry-btn {
    order: 1;
}

.header-area {
    width: 100%;
}




.header-container {
    display: flex;
    align-items: center;
    width: 100%;
       max-width: 100%;
    padding-right: 30px !important;
    padding-left: 150px; 
    margin-right: 0;
}

        .enquiry-btn {
            background: linear-gradient(to right, #1a365d, #2d4d8c);
            color: white;
            border: none;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            box-shadow: var(--shadow-light);
        }

        .enquiry-btn:hover {
            background: linear-gradient(to right, #2d4d8c, #3a5da0);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
            color: white;
            text-decoration: none;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            list-style: none;
            margin-bottom: 10px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #1a365d;
            color: white;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-icons a:hover {
            background-color: #2d4d8c;
            transform: translateY(-3px);
            box-shadow: var(--shadow-light);
        }

       
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 22px;
            cursor: pointer;
            z-index: 1001;
            transition: var(--transition);
        }

        .hamburger-menu span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #1a365d;
            border-radius: 3px;
            transition: var(--transition);
        }

        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

     
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 350px;
            height: 100%;
            background: white;
            z-index: 999;
            box-shadow: var(--shadow-heavy);
            transition: var(--transition);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
background: rgba(75, 106, 164, 0.65);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 20px;
            border-bottom: 1px solid #e0e0e0;
            background-color: white;
        }

        .sidebar-logo {
            height: 40px;
            width: auto;
        }

        .sidebar-close {
            background: none;
            border: none;
            color: #1a365d;
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .sidebar-close:hover {
            background-color: rgba(26, 54, 93, 0.1);
            color: #2d4d8c;
        }

        .sidebar-nav {
            padding: 30px 20px;
            flex-grow: 1;
        }

        .sidebar-links {
            list-style: none;
            padding: 0;
        }

        .sidebar-links li {
            margin-bottom: 10px;
        }

        .sidebar-links a {
            display: block;
            text-decoration: none;
            color: var(--text-color);
            font-size: 18px;
            font-weight: 600;
            padding: 15px 20px;
            border-radius: 10px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .sidebar-links a:hover,
        .sidebar-links a.active {
            background-color: rgba(26, 54, 93, 0.1);
            color: #2d4d8c;
            transform: translateX(5px);
        }

        .sidebar-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #1a365d, #2d4d8c);
            transform: translateX(-100%);
            transition: var(--transition);
        }

        .sidebar-links a:hover::before,
        .sidebar-links a.active::before {
            transform: translateX(0);
        }

        .sidebar-footer {
            padding: 25px 20px;
            border-top: 1px solid #e0e0e0;
            background-color: white;
        }

        .sidebar-footer .enquiry-btn {
            display: block;
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
            font-size: 16px;
            padding: 12px;
        }

        .sidebar-social {
            text-align: center;
        }

        .sidebar-social h4 {
            color: #1a365d;
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .sidebar-social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            list-style: none;
            padding: 0;
        }

        .sidebar-social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: #1a365d;
            color: white;
            transition: var(--transition);
            text-decoration: none;
            font-size: 18px;
        }

        .sidebar-social-icons a:hover {
            background-color: #2d4d8c;
            transform: translateY(-5px);
            box-shadow: var(--shadow-light);
        }

       
        .section-spacing {
            padding: 120px 0;
        }

        
        .hero-section {
            padding:95px 0 30px;
            background: linear-gradient(rgba(12, 45, 87, 0.85), rgba(42, 92, 170, 0.8)), 
                        url('../img2/maruti2.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
            text-align: center !important;
            align-items: center !important;
        }

        .hero-tagline {
            font-size: 18px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            letter-spacing: 3px;
            text-transform: uppercase;
            display: inline-block;
            padding: 10px 25px;
            background: rgba(255, 122, 0, 0.2);
            border-radius: 30px;
            border: 1px solid rgba(255, 122, 0, 0.3);
            text-align: center !important;
            align-items: center !important;
        }

        .hero-title {
            font-size: 48px !important;
            font-weight: 500;
            margin-top: 50px !important;
            margin-bottom: 25px;
            color: white;
            line-height: 1.1;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            text-align: center !important;
            margin-left: 30 px !important;
            align-items: center !important;
        }

        .hero-subtitle {
            font-size: 28px;
            font-weight: 500;
            margin-bottom: 35px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.4;
            text-align: center !important;
            align-items: center !important;
        }

        .hero-description {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 50px;
            line-height: 1.8;
            max-width: 750px;
            text-align: center !important;
            align-items: center !important;
        }

        .hero-buttons {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            margin-bottom: 70px;
            align-items: center !important;

        }

        .hero-btn {
            padding: 10px 20px;
            border-radius: var(--border-radius);
            font-weight: 500;
            font-size: 18px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
            align-items: center !important;
        }

        .hero-btn.primary {
            background: #2a5caa;
            color: white;
            border: none;
            box-shadow: var(--shadow-medium);
        }

        .hero-btn.primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--gradient-primary);
            transition: var(--transition);
            z-index: -1;
        }

        .hero-btn.primary:hover::before {
            width: 100%;
        }

        .hero-btn.primary:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-heavy);
        }

        .hero-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .hero-btn.secondary:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-8px);
            box-shadow: var(--shadow-heavy);
        }

        .hero-btn i {
            margin-left: 12px;
            transition: transform 0.3s;
        }

        .hero-btn:hover i {
            transform: translateX(8px);
        }

        .hero-features {
            display: flex;
            gap: 50px;
            flex-wrap: wrap;
            margin-top: 80px;
            padding-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
        }

        .hero-feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            transition: var(--transition);
        }

        .hero-feature:hover .hero-feature-icon {
            background:#2a5caa;
            transform: rotateY(360deg);
        }

        .hero-feature-text {
            font-size: 18px;
            font-weight: 500;
            color: white;
        }

        
        .quick-services {
            background: var(--light-color);
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-subtitle {
            color: #2a5caa;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
            position: relative;
        }

    

        .section-main-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

     

        .section-description {
            font-size: 18px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 35px;
        }

        .service-item {
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            background-color: rgba(12, 45, 87, 0.9);
            color: white;
            box-shadow: var(--shadow-medium);
            min-height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

    
        .service-item:nth-child(1) { background-image: url('../img2/airport.webp'); }
        .service-item:nth-child(2) { background-image: url('../img2/city.webp'); }
        .service-item:nth-child(3) { background-image: url('../img2/outstation.webp'); }
        .service-item:nth-child(4) { background-image: url('../img2/employee.webp'); }
        .service-item:nth-child(5) { background-image: url('../img2/Eclass1.jpg'); }
        .service-item:nth-child(6) { background-image: url('../img2/events.webp'); }
        .service-item:nth-child(7) { background-image: url('../img2/holidays.webp'); }
        .service-item:nth-child(8) { background-image: url('../img2/Candy-White_ece9e8.avif'); }
        .service-item:nth-child(9) { background-image: url('../img2/events.webp'); }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0.8;
            z-index: 1;
            transition: var(--transition);
        }

        .service-item:hover::before {
            opacity: 0.9;
            background: var(--gradient-secondary);
        }

        .service-item > * {
            position: relative;
            z-index: 2;
        }

        .service-item:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: var(--shadow-heavy);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 32px;
            transition: var(--transition);
        }

        .service-item:hover .service-icon {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.15) rotate(10deg);
        }

        .service-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }

        .service-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        /* Why Choose Us Section with Image Cards */
        .why-us-section {
            background: white;
            position: relative;
            overflow: hidden;
        }

        .why-us-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }

        .why-us-section > .container {
            position: relative;
            z-index: 1;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 35px;
        }

        .why-us-item {
            background: white;
            border-radius: var(--border-radius);
            padding: 45px 35px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(12, 45, 87, 0.1);
        }

        .why-us-item:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-heavy);
            border-color: transparent;
        }

        .why-us-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-secondary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
        }

        .why-us-item:hover::before {
            transform: scaleX(1);
        }

        .why-us-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            font-size: 36px;
            transition: var(--transition);
            box-shadow: var(--shadow-medium);
        }

        .why-us-item:hover .why-us-icon {
            background: var(--gradient-secondary);
            transform: scale(1.1) rotateY(180deg);
        }

        .why-us-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .why-us-desc {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.7;
        }

        .fleet-showcase {
            background: linear-gradient(rgba(12, 45, 87, 0.9), rgba(12, 45, 87, 0.95)), 
                        url('./assets/img2/dzire2.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .fleet-showcase .section-main-title,
        .fleet-showcase .section-subtitle,
        .fleet-showcase .section-description {
            color: white;
        }

        .fleet-showcase .section-subtitle::before,
        .fleet-showcase .section-subtitle::after {
            background: var(--accent-color);
        }

        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }

        .fleet-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-medium);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .fleet-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--accent-color);
        }

        .fleet-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: var(--transition);
        }

        .fleet-card:hover .fleet-img {
            transform: scale(1.05);
        }

        .fleet-info {
            padding: 30px;
        }

        .fleet-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
        }

        .fleet-type {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .fleet-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .fleet-feature {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }

        .testimonials-section {
            background: white;
            position: relative;
            overflow: hidden;
                padding-top: 20px;      /* add this */
    margin-top: 0;
        }

        .testimonials-slider {
            position: relative;
            overflow: hidden;
            padding: 10px 0;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.87, 0, 0.13, 1);
        }

        .testimonial-slide {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 0 10px;
        }

        .testimonial-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 20px 20px;
            box-shadow: var(--shadow-heavy);
            position: relative;
            border: 1px solid rgba(12, 45, 87, 0.1);
            overflow: hidden;

        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img2/holidays.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.03;
        }

        .testimonial-quote {
            font-size: 24px;
            font-style: italic;
            color: var(--text-color);
            line-height: 1.8;
            margin-bottom: 40px;
            position: relative;
            padding-left: 40px;
            font-weight: 500;
        }

        .testimonial-quote::before {
           
            position: absolute;
            left: 0;
            top: 0px;
            font-size: 100px;
            color: var(--accent-color);
            font-family: Georgia, serif;
            opacity: 0.2;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--accent-color);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-author-info h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .testimonial-author-info p {
            font-size: 16px;
            color: var(--text-light);
            margin: 0;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }

        .testimonial-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 22px;
            color: var(--primary-color);
            box-shadow: var(--shadow-light);
        }

        .testimonial-btn:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

     
        .gallery-section {
            background: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 60px;
        }

        .gallery-item {
            border-radius: var(--border-radius);
            overflow: hidden;
            position: relative;
            height: 280px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-medium);
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: var(--shadow-heavy);
            z-index: 2;
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(transparent, rgba(12, 45, 87, 0.9));
            color: white;
            transform: translateY(100%);
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .gallery-desc {
            font-size: 14px;
            opacity: 0.9;
            
        }

       
        .faq-section {
            background: white;
                padding-top: 0;     
    margin-top: 0;
        }

        .faq-container {
            max-width: 1500px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: var(--border-radius);
            margin-bottom: 5px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            border: 1px solid rgba(12, 45, 87, 0.1);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-medium);
            border-color: var(--accent-color);
        }

        .faq-question {
            padding: 20px 20px;
            font-size: 20px;
            font-weight: 500;
            color: var(--primary-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            background: var(--light-color);
        }

        .faq-question:hover {
            color: var(--secondary-color);
            background: rgba(12, 45, 87, 0.03);
        }

        .faq-question i {
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        .faq-answer p {
            font-size: 17px;
            color: var(--text-light);
            line-height: 1.8;
        }

        .partners-section {
            background: var(--light-color);
            position: relative;
            overflow: hidden;
               padding-top: 0;     
    margin-top: 0;
        }

        .partners-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 40px 0;
        }

        .partners-track {
            display: flex;
            width: max-content;
            animation: slidePartners 50s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

        .partner-logo {
            flex: 0 0 auto;
            width: 220px;
            margin: 0 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            border: 1px solid rgba(12, 45, 87, 0.1);
        }

        .partner-logo:hover {
            transform: translateY(-15px);
            background: white;
            box-shadow: var(--shadow-heavy);
            border-color: var(--accent-color);
        }

        .partner-name {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-color);
            text-align: center;
        }

        @keyframes slidePartners {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

       

        
  

        @media (max-width: 1200px) {
            .hero-title {
                font-size: 58px;
            }
            .section-main-title {
                font-size: 42px;
            }
            .cta-title {
                font-size: 46px;
            }
        }
        
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .hamburger-menu {
                display: flex;
            }
            
            .hero-section {
                padding: 180px 0 120px;
            }
            
            .hero-title {
                font-size: 48px;
            }
            
            .hero-subtitle {
                font-size: 24px;
            }
            
            .section-main-title {
                font-size: 38px;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .why-us-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .fleet-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .cta-title {
                font-size: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 160px 0 100px;
                background-attachment: scroll;
            }
            
            .hero-title {
                font-size: 40px;
            }
            
            .hero-subtitle {
                font-size: 20px;
            }
            
            .hero-description {
                font-size: 18px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .hero-btn {
                width: 100%;
                max-width: 350px;
            }
            
            .hero-features {
                flex-direction: column;
                gap: 30px;
            }
            
            .section-spacing {
                padding: 100px 0;
            }
            
            .section-main-title {
                font-size: 34px;
            }
            
            .section-subtitle::before,
            .section-subtitle::after {
                display: none;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .testimonial-card {
                padding: 50px 30px;
            }
            
            .testimonial-quote {
                font-size: 20px;
                padding-left: 30px;
            }
            
            .partner-logo {
                width: 200px;
                margin: 0 20px;
                padding: 25px;
            }
            
         
            
            .gallery-container {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 36px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .section-main-title {
                font-size: 30px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-item {
                padding: 35px 25px;
                min-height: 320px;
            }
            
            .why-us-item {
                padding: 35px 25px;
            }
            
            .testimonial-card {
                padding: 40px 25px;
            }
            
            .testimonial-quote {
                font-size: 18px;
                padding-left: 20px;
            }
            
            .faq-question {
                padding: 25px;
                font-size: 18px;
            }
            
            .faq-answer p {
                font-size: 16px;
            }
            
            .partner-logo {
                width: 180px;
                margin: 0 15px;
                padding: 20px;
            }
            
            .cta-title {
                font-size: 32px;
            }
            
            .cta-subtitle {
                font-size: 18px;
            }
            
            .gallery-container {
                grid-template-columns: 1fr;
            }
        }
        .hero-title {
             font-size: 52px; 
             font-weight: 600; 
           }

         .hero-subtitle {
              font-size: 24px; 
             font-weight: 500;
            }
            .hero-description {
             font-size: 18px; 
            }

            .section-main-title {
              font-size: 42px; 
               font-weight: 700;
               }

             @media (max-width: 992px) {
           .hero-title {
           font-size: 42px; 
            }
    
            .hero-subtitle {
              font-size: 20px; 
              }
              
              .section-main-title {
                font-size: 36px; 
              }
             }

            @media (max-width: 768px) {
               .hero-title {
                font-size: 36px; 
            }
    
              .hero-subtitle {
                font-size: 18px; 
            }
    
             .hero-description {
             font-size: 16px; 
           }
    
           .section-main-title {
                  font-size: 30px; 
                }
            }

            @media (max-width: 576px) {
             .hero-title {
             font-size: 32px; 
            }
            .hero-subtitle {
                font-size: 16px; 
             }
    
           .section-main-title {
            font-size: 28px; 
      }
    }

       .service-icon {
    color: #0c2d57;
    font-size: 18px;
    margin-right: 10px;
   }

     .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.dropdown-menu li a:hover .service-icon {
    color: #1e5ad7;
    transform: scale(1.1);
    transition: 0.3s ease;
}


             
              .whatsapp-container {
                 position: fixed !important;
                left: 20px !important;    
               bottom: 20px !important; 
              right: auto !important;   
              z-index: 99999;
                }


        .whatsapp-scroll {
            position: relative;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            font-size: 30px;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-scroll:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
        }

    
        .whatsapp-tooltip {
            position: absolute;
            left: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: #333;
            color: white;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            z-index: 9999;
        }

        .whatsapp-tooltip:before {
            content: '';
            position: absolute;
            left: -6px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 6px 6px 6px 0;
            border-style: solid;
            border-color: transparent #333 transparent transparent;
        }

        .whatsapp-scroll:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

     
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            min-height: 200vh; /* Extra height for scrolling */
            background: linear-gradient(to bottom, #f0f0f0, #e0e0e0);
        }
        
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .section {
            background: white;
            padding: 40px;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        h1, h2 {
            color: #333;
        }
        
        p {
            line-height: 1.6;
            color: #666;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .whatsapp-container {
                left: 15px;
                bottom: 15px;
            }
            
            .whatsapp-scroll {
                width: 50px;
                height: 50px;
                font-size: 25px;
            }
            
            .whatsapp-tooltip {
                left: 60px;
                font-size: 12px;
                padding: 6px 12px;
            }
        }









@media (max-width: 480px) {
   
    .header-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-left: 20px !important;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .header-right {
        gap: 8px;
        margin-left: 15px;
        display: none; 
    }
    
    .enquiry-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .social-icons {
        gap: 6px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
   
    .hamburger-menu {
        margin-left: auto;
        display: flex;
    }
    
 
    .hero-section {
        padding: 100px 0 40px;
        background-attachment: scroll;
    }
    
    .hero-tagline {
        font-size: 12px;
        padding: 8px 16px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .hero-btn {
        padding: 14px 20px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .hero-feature {
        gap: 15px;
    }
    
    .hero-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .hero-feature-text {
        font-size: 14px;
    }
    
    /* Quick Services Section */
    .quick-services {
        padding: 50px 0;
    }
    
    .section-main-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 30px 20px;
        min-height: 280px;
        border-radius: 12px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .service-name {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-desc {
        font-size: 14px;
        line-height: 1.5;
    }
    
  
    .why-us-section {
        padding: 50px 0;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-item {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .why-us-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .why-us-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .why-us-desc {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Fleet Showcase Section */
    .fleet-showcase {
        padding: 50px 0;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .fleet-card {
        border-radius: 12px;
    }
    
    .fleet-img {
        height: 180px;
    }
    
    .fleet-info {
        padding: 20px;
    }
    
    .fleet-name {
        font-size: 20px;
    }
    
    .fleet-type {
        font-size: 14px;
    }
    
    .fleet-features {
        gap: 8px;
    }
    
    .fleet-feature {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Testimonials Section */
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .testimonial-quote {
        font-size: 16px;
        padding-left: 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        gap: 15px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-author-info h4 {
        font-size: 16px;
    }
    
    .testimonial-author-info p {
        font-size: 14px;
    }
    
    .testimonial-controls {
        margin-top: 20px;
        gap: 15px;
    }
    
    .testimonial-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    /* Gallery Section */
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .gallery-item {
        height: 200px;
        border-radius: 10px;
    }
    
    .gallery-overlay {
        padding: 20px;
    }
    
    .gallery-title {
        font-size: 16px;
    }
    
    .gallery-desc {
        font-size: 12px;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 18px 15px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Partners Section */
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-slider {
        padding: 20px 0;
    }
    
    .partner-logo {
        width: 150px;
        margin: 0 12px;
        padding: 20px;
        border-radius: 8px;
    }
    
    .partner-name {
        font-size: 14px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .cta-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
    
 
    
    /* WhatsApp Button */
    .whatsapp-container {
        left: 10px;
        bottom: 10px;
    }
    
    .whatsapp-scroll {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        left: 55px;
        font-size: 11px;
        padding: 5px 10px;
    }
    
    /* Mobile Sidebar width fix */
    .mobile-sidebar {
        width: 85%;
        max-width: 280px;
    }
    
    .sidebar-header {
        padding: 20px 15px;
    }
    
    .sidebar-logo {
        height: 35px;
    }
    
    .sidebar-links a {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .sidebar-footer {
        padding: 20px 15px;
    }
    
    .sidebar-footer .enquiry-btn {
        font-size: 14px;
        padding: 10px;
    }
    
    .sidebar-social h4 {
        font-size: 14px;
    }
    
    .sidebar-social-icons a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}


@media (max-width: 768px) {
    .desktop-nav .nav-links {
        display: none;
    }
    
    .desktop-nav .header-right {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
        margin-left: auto;
    }
    
    /* Header container fix */
    .header-container {
        justify-content: space-between;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sidebar-overlay.active {
        backdrop-filter: blur(2px);
    }
    
  
    .gallery-img {
        object-fit: cover;
    }
}


@media (max-width: 576px) {
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .col-6, .col-12, .col-sm-4, .col-md-6, .col-lg-4, .col-lg-5, .col-lg-7, .col-md-4, .col-md-8 {
        padding-left: 10px;
        padding-right: 10px;
    }
    
 
    .testimonial-slide {
        padding: 0 5px;
    }
}


@media (max-width: 360px) {
    .mobile-sidebar {
        width: 95%;
        max-width: 260px;
    }
    
    .sidebar-header {
        padding: 18px 12px;
    }
    
    .sidebar-logo {
        height: 30px;
    }
    
    .sidebar-links a {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .service-item {
        padding: 25px 15px;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        overflow-x: hidden;
        padding: 0 15px;
    }
    
    .section-main-title {
        text-align: center;
        width: 100%;
    }
    
   
    .quick-services {
        overflow: hidden;
    }
}


@media (max-width: 768px) {
    .service-item:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .why-us-item:hover {
        transform: translateY(-10px);
    }
    
    .fleet-card:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .testimonial-controls {
        margin-top: 15px;
    }
}


@media (max-width: 480px) {
    .hero-feature {
        justify-content: center;
    }
}


@media (max-width: 480px) {
    .faq-question i {
        font-size: 14px;
    }
}


@media (max-width: 480px) {
    .partners-track {
        animation: slidePartners 30s linear infinite;
    }
}


@media (max-width: 480px) {
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(12, 45, 87, 0.7));
    }
    
    .gallery-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .gallery-desc {
        font-size: 11px;
    }
}


@media (max-width: 480px) {
    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .section-spacing {
        padding: 60px 0;
    }
}


.social-icons {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00bfff;
}

















.footer {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding-top: 80px;
}

.footer-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;     
    z-index: 0;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background: rgba(75, 106, 164, 0.65);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    width: 160px;
    margin-bottom: 15px;
}

.footer p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.7;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00bfff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.link-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-contact a {
    display: block;
    margin-bottom: 10px;
    color: #ddd;
    font-size: 14px;
}

.footer-contact i {
    margin-right: 8px;
    color: #00bfff;
}

.footer-copyright {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 0;
    margin-top: 50px;
    font-size: 14px;
}

.footer-copyright a {
    color: #00bfff;
    text-decoration: none;
}

@media (min-width: 992px) {
    .footer-copyright .footer-links {
        text-align: right;
    }
}

@media (max-width: 991px) {

    .footer {
        padding-top: 50px;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        margin-bottom: 25px;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-copyright .row {
        text-align: center;
    }

    .footer-copyright .footer-links {
        margin-top: 10px;
    }
}
.footer-copyright p {
    margin: 0;
    white-space: nowrap;   
}

.footer-copyright .row {
    align-items: center;
}

.footer-copyright .col-lg-6 {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-copyright p {
        white-space: normal;
        text-align: center;
    }
}
.footer a {
    color: #ddd;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #00bfff;  
}

.social-icons a {
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #00bfff;
    transform: translateY(-3px) scale(1.15);
    text-shadow: 0 0 10px rgba(0,191,255,0.9),
                 0 0 20px rgba(0,191,255,0.7);
}
.footer-contact i {
    transition: all 0.3s ease;
}

.footer-contact a:hover i {
   color: #00bfff; 
}


        .fleet-slider-container {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: var(--shadow-heavy);
            margin-bottom: 80px;
        }

        .fleet-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease, transform 1s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
        }

        .fleet-slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .fleet-slide.next {
            transform: translateX(100%);
        }

        .fleet-slide.prev {
            transform: translateX(-100%);
        }

        .fleet-slide-content {
            width: 100%;
            height: 100%;
            display: flex;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .fleet-slide-image {
            flex: 0 0 50%;
            max-width: 50%;
            position: relative;
            overflow: hidden;
        }

        .fleet-slide-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.8s ease;
        }

        .fleet-slide:hover .fleet-slide-image img {
            transform: scale(1.05);
        }

        .fleet-slide-text {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .slide-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .slide-description {
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .slide-description:last-child {
            margin-bottom: 0;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .slider-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 24px;
            color: var(--primary-color);
        }

        .slider-btn:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--border-color);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--secondary-color);
            transform: scale(1.2);
        }


        .fleet-slider-section {
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .fleet-slider-section::before {
            content: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(26, 54, 93, 0.02)"/></svg>');
            background-size: cover;
            z-index: 0;
        }

        /* --- Fleet Slider Layout --- */
.fleet-slider-container {
    height: auto;
    min-height: 600px;
    margin-bottom: 40px;
}

.fleet-slide-content {
    display: flex; /* Implied by flex-direction in media queries */
}

.fleet-slide-image,
.fleet-slide-text {
    flex: 0 0 50%; /* Implied desktop state */
}

.fleet-slide-text {
    padding: 40px;
}

.slide-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.slide-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

/* --- Slider Controls & Dots --- */
.slider-controls {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.slider-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    /* transition and background-color styles usually go here */
}

.slider-dot.active {
    /* active state color */
}

/* Fleet Slider Core Styles */
.fleet-slider-section {
    padding: 100px 0;
}

.fleet-slider-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 600px;
    margin-bottom: 40px;
    overflow: hidden;
}

.fleet-slide-content {
    display: flex; /* Flex layout for side-by-side image/text */
    align-items: stretch;
    width: 100%;
}

.fleet-slide-image {
    flex: 0 0 50%;
    max-width: 50%;
}

.fleet-slide-text {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.slide-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Slider Controls & Dots */
.slider-controls {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 10px;
}

/* Fleet Responsive Breakpoints */
@media (max-width: 1200px) {
    .fleet-slide-text { padding: 40px; }
}

@media (max-width: 992px) {
    .fleet-slide-content { flex-direction: column; }
    .fleet-slide-image, .fleet-slide-text {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .fleet-slider-container { min-height: 600px; }
}

@media (max-width: 480px) {
    .fleet-slider-section { padding: 50px 0; }
    .fleet-slide-text { padding: 20px 15px; }
    .slide-title { font-size: 20px; }
    .slide-description { font-size: 14px; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px; /* Increased slightly to fit a single line title */
    text-align: center;
    margin: 0 auto;    /* This centers the container itself */
}

.hero-title {
    font-size: 48px !important;
    font-weight: 500;
    margin-bottom: 25px;
    color: white;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    /* Forces text to stay on one line */
    white-space: nowrap; 
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 50px; /* Centers the description block */
    line-height: 1.8;
    max-width: 750px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 70px;
    justify-content: center; /* Centers the buttons horizontally */
}

/* Responsive Fix: If the screen is too small, allow the title to wrap 
   so it doesn't break your layout on mobile */
@media (max-width: 768px) {
    .hero-title {
        white-space: normal;
        font-size: 32px !important;
    }
}