
        :root {
            --primary-blue: #0099ff;
            --dark-blue: #007acc;
            --border-radius: 35px;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f8f9fa;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0)), 
                        url('../images/banner.png');
            background-size: cover;
            background-position: center;
            padding: 20px 0 0px 0; /* Extra bottom padding for overlap */
            position: relative;
        }

        .brand-title {
               color: #002244;
    font-weight: 900;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: -1px;
    margin-top: 180px;

        }

        .brand-subtitle {
            font-weight: 700;
            color: white;
            font-size:15px;
            letter-spacing: 1px;
        }

        /* Floating Phone Number Box */
        .glass-call-box {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            border: 2px solid #20304A;
            border-radius: 15px;
            padding: 25px;
            display: inline-block;
            margin-top: 180px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .glass-call-box h5 {
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 12px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
        }

        .phone-btn {
            background:#D2A641;
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            padding: 10px 35px;
            border-radius: 10px;
            text-decoration: none;
            display: block;
            transition: 0.3s;
        }

        /* The Main Quote Form */
        .quote-card {
            background: #fff;
            border: 5px solid #20304A;
            border-radius: var(--border-radius);
            padding:20px 30px 0px 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            position: relative;
            z-index: 10;
            margin-bottom: -60px; /* This creates the overlap */
        }

        .quote-card h3 {
            color: #888;
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 5px;
        }

        .quote-card h3 span {
            color: #002244;
        }

        .form-label {
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .form-label span { color: red; }

        .form-control {
            border: 1px solid #ddd;
            padding: 10px 15px;
            font-size: 0.85rem;
            border-radius: 8px;
        }

        /* Icon styling in inputs */
        .input-icon {
            position: relative;
        }
        .input-icon i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #ccc;
        }
        .input-icon .form-control {
            padding-left: 35px;
        }

        /* Lower Features Section */
        .stats-row {
    border-top: 1px solid #eee;
    margin-top: 25px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-weight: 800;
    color: #002244;
    text-align: center;
}

        .stat-item i {
            color: #002244 ;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 5px;
        }

        .red-notice {
            color: #e63946;
            font-size: 0.75rem;
            text-align: center;
            margin: 20px 0;
            font-weight: 500;
        }

        .btn-submit {
    background: #D2A641;
    position: relative;
    top: 28px;
    color: white;
    max-width: 100%;
    width: 250px;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
}
        .btn-submit:hover {
             background: #D2A641;
    position: relative;
    top: 28px;
    color: white;
    max-width: 100%;
    width: 250px;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
}

        /* Logo Slider Section */
        .logo-section {
            background: white;
            padding: 40px 0 40px 0; /* Large top padding to accommodate the overlap */
            border-bottom: 1px solid #eee;
        }

        .logo-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            opacity: 0.5;
            flex-wrap: wrap;
        }

        .logo-item {
            font-weight: 900;
            color: #333;
            font-size: 1.1rem;
            text-transform: uppercase;
            margin: 10px;
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .quote-card {
                margin-bottom: 20px;
            }
            .hero-section {
                padding-bottom: 60px;
            }
            .logo-section {
                padding-top: 40px;
            }
            .glass-call-box {
                margin-top: 40px;
                width: 100%;
                text-align: center;
            }

            .call-wrapper{
                display: none;
            }
        }


        :root {
            --navy-dark: #002347;
            --electric-blue: #0084ff;
            --border-blue: #20304A;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #ffffff;
            padding: 20px;
        }

        /* The Main Rounded Container */
        .section-wrapper {
            background-color: #20304A;
            border: 4px solid var(--border-blue);
            border-radius: 40px;
            padding: 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        /* Typography */
        .category-label {
            color: var(--electric-blue);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: block;
        }

        .hero-title {
            font-weight: 800;
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .hero-desc-container {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 50px;
        }

        .vertical-line {
            width: 4px;
            height: 50px;
            background-color: var(--electric-blue);
            border-radius: 2px;
            flex-shrink: 0;
        }

        .hero-desc {
            font-size: 1.2rem;
            color: #bdc3c7;
            max-width: 400px;
            line-height: 1.5;
        }

        /* Features */
        .feature-box {
            margin-top: 30px;
        }

        .icon-circle {
            width: 65px;
            height: 65px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 20px;
        }

        .feature-title {
            color: var(--electric-blue);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 12px;
        }

        .feature-text {
            font-size: 0.85rem;
            color: #bdc3c7;
            line-height: 1.6;
        }

        /* Floating UI Elements */
        .ui-scene {
            position: relative;
            height: 450px;
        }

        .phone-mockup {
            width: 240px;
            position: absolute;
            right: 15%;
            top: 0;
            z-index: 2;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }

        .floating-vehicle-card {
            position: absolute;
            right: 0;
            top: 130px;
            width: 250px;
            background: white;
            border-radius: 15px;
            padding: 12px;
            z-index: 10;
            color: #333;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }

        .avatar-box {
            position: absolute;
            top: 20px;
            left: 10%;
            z-index: 5;
        }

        .avatar-img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            border: 4px solid var(--electric-blue);
            object-fit: cover;
        }

        .online-dot {
            width: 18px;
            height: 18px;
            background: #2ecc71;
            border: 3px solid var(--navy-dark);
            border-radius: 50%;
            position: absolute;
            bottom: 5px;
            right: 5px;
        }

        .chat-icon {
            position: absolute;
            top: 160px;
            left: 15%;
            background: var(--electric-blue);
            width: 50px;
            height: 35px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
        }

        .bus-vector {
            position: absolute;
            bottom: 20px;
            right: 20px;
            color: var(--electric-blue);
            font-size: 2.5rem;
            opacity: 0.8;
        }

        /* Decorative Dots */
        .footer-dots {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
            color: #ddd;
        }

        /* Mobile Specific: Image on Top */
        @media (max-width: 991px) {
            .order-mobile-first {
                order: -1; /* Moves UI column to top */
                margin-bottom: 40px;
            }
            .section-wrapper {
                padding: 40px 20px;
                text-align: center;
            }
            .hero-desc-container {
                justify-content: center;
                text-align: left;
            }
            .ui-scene {
                height: 350px;
                transform: scale(0.85);
            }
            .phone-mockup {
                right: 50%;
                transform: translateX(50%);
            }
            .avatar-box { left: 5%; }
        }

      
        :root {
            --primary-blue: #0099ff;
            --text-dark: #1a1a1a;
            --bg-dots: #f0f0f0;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #fff;
            margin: 0;
            padding: 0;
            overflow-x: hidden; /* Prevents side scrollbars while allowing overflow cards */
        }

        .services-wrapper {
            padding: 0px 0;
            text-align: center;
            background-image: radial-gradient(var(--bg-dots) 2px, transparent 2px);
            background-size: 30px 30px;
            background-position: center bottom;
        }

        /* Header UI */
        .blue-square {
            width: 24px;
            height: 24px;
            background:#20304A ;
            border-radius: 6px;
            margin: 0 auto 20px;
        }

        .section-title {
            font-weight: 800;
            text-transform: uppercase;
            font-size: 2rem;
            margin-bottom: 25px;
        }

        .section-desc {
            max-width: 800px;
            margin: 0 auto 60px;
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
            padding: 0 15px;
        }

        /* The Centered Slider Logic */
        .slider-viewport {
            width: 100%;
            overflow: visible; /* Crucial to show the 1/3 cards on sides */
            display: flex;
            justify-content: center;
        }

        .cards-container {
            display: flex;
            gap: 25px;
            /* We calculate the width of 3 full cards + gaps to keep them centered */
            width: auto; 
            padding: 20px 0;
        }

        .service-card {
            width: 300px; /* Fixed width for consistency */
            height: 520px;
            border-radius: 35px;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: scale(1.03);
        }

        .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Card Elements */
        .bus-icon-overlay {
            position: absolute;
            top: 25px;
            right: 25px;
            color: white;
            font-size: 1.4rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .floating-label {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 88%;
            background: white;
            border-radius: 20px;
            padding: 20px;
            text-align: left;
            border-bottom: 5px solid #20304A;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .arrow-bubble {
            position: absolute;
            top: -22px;
            right: 15px;
            width: 44px;
            height: 44px;
            background: #20304A ;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 153, 255, 0.4);
        }

        .floating-label h6 {
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .floating-label p {
            font-size: 0.75rem;
            color: #777;
            margin: 0;
            line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .slider-viewport { justify-content: flex-start; overflow-x: auto; padding-left: 20px; }
            .service-card { width: 280px; height: 450px; }
        }
    
        .footer-wrapper {
  background: #0a1f3d; /* Professional deep navy */
  color: #ffffff;
  padding: 60px 20px 20px;
}


.quote-btn {
  background: #ffcc00; /* High-contrast CTA color */
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  cursor: pointer;
}

.logo img{
    width: 240px !important;
    height: 55px !important;
}

.footnavigation h6{
    font-weight: 700;
    font-size: 20px;
    color: #0099ff;
}
.navitext{
    color: #d1d1d1;
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}



        /* CSS reset to ensure consistent cross-browser styling */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { font-family: sans-serif; }

        /* General styles for headings */
        h1, h2, h3 { font-weight: bold; }
        
        /* General styles for text alignment on all sections */
        .text-center { text-align: center; }

        /* Styles for the "Better Customer Support" section */
        .support-section {
            background-color: #002244; /* Dark blue background matching the input */
            color: white;
            padding: 50px 0;
            border-radius: 20px; /* Optional: adds rounded corners like the screenshot */
            margin: 20px; /* Optional: adds space around the section on the page */
        }
        
        /* Styling for the badge text above the main title */
        .badge-text { color: #20304A; /* Light blue color matching the input */ text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
        
        /* Styling for the main title */
        .main-title { font-size: 2.5rem; margin-bottom: 20px; }
        
        /* Styling for the description text */
        .desc-text { font-size: 1rem; color: #a0a0a0; max-width: 600px; margin: 0 auto; line-height: 1.6; }
        
        /* Styling for the feature icons */
        .feature-icon-wrapper { position: relative; display: inline-block; }
        .feature-icon { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #20304A; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }
        .feature-icon img { width: 25px; height: 25px; } /* Adjust size of icon images */
        
        /* Styling for the numbers/prices on the icons (e.g., "$") */
        .icon-overlay { position: absolute; top: 0; right: 0; background-color: #20304A; color: white; border-radius: 50%; width: 20px; height: 20px; font-size: 0.7rem; font-weight: bold; display: flex; align-items: center; justify-content: center; transform: translate(50%, -50%); }

        /* Styling for the floating image compositions on the right side of the section */
        .support-images { position: relative; height: 350px; } /* Set a fixed height for absolute positioning to work */
        .support-img { position: absolute; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
        
        /* Positions of the individual images, based on the input image layout */
        .img-agent { width: 80px; top: 20px; left: 20px; z-index: 3; }
        .img-phone { width: 150px; top: 0; right: 0; z-index: 2; }
        .img-chat { width: 180px; bottom: 20px; left: 0; z-index: 1; }
        .img-card { width: 200px; bottom: 0; right: 20px; z-index: 4; border: 2px solid #20304A; /* Matching input design */ }

        /* Responsive adjustments for the "Better Customer Support" section */
        @media (max-width: 991.98px) {
            .main-title { font-size: 2rem; }
            .support-images { margin-top: 30px; height: 300px; }
            .img-agent { width: 60px; }
            .img-phone { width: 120px; }
            .img-chat { width: 140px; }
            .img-card { width: 160px; }
        }
        @media (max-width: 767.98px) {
            .main-title { font-size: 1.8rem; }
            .feature-col { margin-bottom: 20px; } /* Stack feature items vertically */
            .feature-icon { width: 40px; height: 40px; }
            .feature-icon img { width: 20px; height: 20px; }
            .icon-overlay { width: 16px; height: 16px; font-size: 0.6rem; }
        }

        /* Dotted background effect */
        .dotted-bg {
            background-image: radial-gradient(#d0d0d0 1px, transparent 1px);
            background-size: 20px 20px;
            background-position: center;
        }

        /* Styling for the "Our Services" and "Latest Blogs" section headers */
        .section-header { position: relative; margin-bottom: 40px; padding-top: 40px; }
        .header-tag-large { position: absolute; top: 10px; left: 50%; width: 20px; height: 20px; background-color: #20304A; transform: translateX(-50%); border-radius: 2px; }
        .header-tag-small { position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; background-color: #20304A; transform: translate(60px, -50%); border-radius: 2px; } /* Offset based on input image */
        .section-header-title { font-size: 2.5rem; }
        .section-desc { font-size: 0.9rem; color: #606060; max-width: 800px; margin: 0 auto; line-height: 1.6; padding-top: 15px; }

        /* Styles for the "Our Services" section slider */
        .swiper-services { padding: 20px 0 50px; }
        .swiper-slide-services { position: relative; border-radius: 15px; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; height: 500px; /* Fixed height for consistency */ cursor: grab; }
        .service-img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
        
        /* Styling for the floating text label at the bottom of each service slide */
        .service-label { background-color: white; border: 2px solid #20304A; border-radius: 10px; padding: 10px 15px; width: calc(100% - 30px); margin-bottom: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 2; display: flex; align-items: center; justify-content: space-between; }
        .service-label-title { font-size: 0.8rem; font-weight: bold; color: black; margin: 0; }
        .service-label-desc { font-size: 0.7rem; color: #606060; margin: 3px 0 0; line-height: 1.4; }
        .service-label-arrow { width: 20px; height: 20px; background-color: #20304A; color: white; border-radius: 5px; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; margin-left: 10px; }

        /* Styling for the bus icons at the top-right of service slides */
        .bus-icon-badge { position: absolute; top: 15px; right: 15px; color: white; font-size: 1rem; opacity: 0.8; z-index: 3; }

        /* Use Swiper to hide the default scrollbar */
        .swiper-services { overflow: visible !important; }
        .swiper-wrapper { display: flex !important; }

        /* Styles for the "Latest Blogs" section 3D perspective slider */
        .swiper-blogs { padding: 20px 0 80px; }
        .swiper-wrapper-blogs { display: flex; }
        
        /* The effect relies on setting a specific size for slides and centering them */
        .swiper-slide-blogs { width: 300px; height: 400px; border-radius: 15px; overflow: hidden; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.1); cursor: grab; }
        .blog-img { width: 100%; height: 100%; object-fit: cover; }
        
        /* Styling for text overlay on the center slide */
        .blog-text-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background-image: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: white; text-align: center; }
        .blog-text-overlay h3 { font-size: 1rem; margin-top: 10px; }
        .blog-text-overlay p { font-size: 0.7rem; }
        
        /* Style the pagination dots below the blog slider to match input images */
        .swiper-pagination-bullet { width: 10px; height: 10px; background: #c0c0c0; opacity: 1; margin: 0 5px !important; }
        .swiper-pagination-bullet-active { width: 25px; border-radius: 5px; background: #20304A; }

        /* Hide text overlay on side slides in blog slider */
        .swiper-slide-blogs .blog-text-overlay { display: none; }
        
        /* Style the text overlay for the current center slide */
        .swiper-slide-active .blog-text-overlay { display: block; }
        
        /* Adjustments for the Perspective Coverflow effect (see JS config) */
        .swiper-slide-shadow-left,
        .swiper-slide-shadow-right {
            border-radius: 15px;
        }

        /* Responsive adjustments for "Our Services" and "Latest Blogs" */
        @media (max-width: 1199.98px) {
            .swiper-slide-services { height: 450px; }
            .swiper-slide-blogs { width: 300px; height: 350px; }
        }
        @media (max-width: 991.98px) {
            .section-header-title { font-size: 2rem; }
            .swiper-slide-services { height: 400px; }
            .service-label-arrow { width: 18px; height: 18px; font-size: 0.7rem; }
            .service-label-title { font-size: 0.75rem; }
            .service-label-desc { font-size: 0.65rem; }
            .swiper-slide-blogs { width: 220px; height: 300px; }
            .blog-text-overlay h3 { font-size: 0.9rem; }
        }
        @media (max-width: 767.98px) {
            .section-header-title { font-size: 1.8rem; }
            .swiper-slide-services { height: 350px; width: 260px; } /* Set width for mobile cards */
            .swiper-slide-blogs { width: 200px; height: 260px; }
        }
        
    



/* Wrapper */
.testi-section-wrapper { 
    position: relative; 
    max-width: 1200px; 
    margin: 0 auto; 
    min-height: 1000px; 
}

/* Header */
.testi-header { 
    text-align: center; 
    margin-bottom: 50px; 
}

.testi-header h3 { 
    color: var(--testi-blue); 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 14px; 
}

.testi-header h2 { 
    font-size: 28px; 
    font-weight: 800; 
    margin-top: 10px; 
}

/* Testimonial Structure */
.testi-item { 
    position: absolute; 
    display: flex; 
    align-items: center; 
}

.testi-avatar { 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    border: 4px solid #20304A; 
    z-index: 2; 
    object-fit: cover; 
    flex-shrink: 0; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

.testi-bubble {
    background: #fff;
    padding: 15px 40px;
    margin-top: 35px;
    border: 2px solid var(--testi-blue);
    border-radius: 15px;
    margin-left: -30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    line-height: 1.4;
}

.testi-stars { 
    color: var(--testi-blue); 
    margin-top: 5px; 
    font-size: 12px; 
    font-weight: bold; 
}

/* Scattered Positioning */
.testi-t1 { top: 150px; left: 5%; width: 300px; }
.testi-t2 { top: 200px; left: 35%; width: 400px; }
.testi-t3 { top: 380px; left: 15%; width: 350px; }
.testi-t4 { top: 450px; left: 60%; width: 280px; }
.testi-t5 { top: 550px; left: 5%; width: 380px; }
.testi-t6 { top: 620px; left: 40%; width: 250px; }
.testi-t7 { top: 720px; left: 65%; width: 320px; }
.testi-t8 { top: 820px; left: 25%; width: 420px; }

/* Decorative Squares */
.testi-box { 
    position: absolute; 
    width: 12px; 
    height: 12px; 
    background: var(--testi-blue); 
}

/* Responsive */
@media (max-width: 900px) {

.testi-section-wrapper { 
    height: auto; 
    display: flex; 
    flex-direction: column; 
    gap: 40px; 
    padding-bottom: 50px; 
}

.testi-item { 
    position: relative; 
    left: auto !important; 
    top: auto !important; 
    width: 100% !important; 
}

.testi-box { 
    display: none; 
}

}

        .fleet-section {
            position: relative;
            padding: 20px 0;
        }

        /* ----------------------------------------------------
           SPECIFIC DECORATIONS (AS PER SCREENSHOT)
           ---------------------------------------------------- */
        
        /* The Dots: Positioned top-right behind the image */
        .dot-pattern {
            position: absolute;
            top: 40px;
            right: 0%;
            width: 495px;
            height: 300px;
            background-image: radial-gradient(#dee2e6 2px, transparent 2px);
            background-size: 18px 18px;
            z-index: 0;
        }

        /* Blue Squares */
        .accent-square {
            position: absolute;
            background-color: var(--brand-blue);
            z-index: 10;
        }
        .sq-top { width: 22px; height: 22px; top: 30px; left: 39%; }
        .sq-small { width: 12px; height: 12px; top: 100px; right: 38%; }


        .section-header {
            text-align: center;
            font-weight: 800;
            margin-bottom: 60px;
            text-transform: uppercase;
        }

        .section-header span {
            display: inline-block;
            position: relative;
            padding-bottom: 10px;
        }

        .section-header span::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 25%;
            width: 50%;
            height: 2px;
            background: #dee2e6;
        }

        /* ----------------------------------------------------
           FLEET CONTENT
           ---------------------------------------------------- */
        .fleet-container {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            z-index: 2;
        }

        .image-clip-wrapper {
            position: relative;
            z-index: 2;
            clip-path: url(#rounded-trapezoid);
        }

        .image-clip-wrapper img {
            width: 100%;
            height: 540px;
            object-fit: cover;
            display: block;
        }

        /* Blue Info Card */
        .info-box-skew {
            background-color: #20304A;
            color: white;
            position: absolute;
            right: -15px;
            bottom: -35px;
            width: 52%;
            padding: 60px 80px 60px 80px;
            z-index: 20;
            clip-path: url(#clip-info-shape);
            box-shadow: -15px 15px 40px rgba(0,0,0,0.1);
        }

        .info-box-skew h3 { font-weight: 800; font-size: 1.8rem; margin: 0; }
        .info-box-skew p { font-weight: 700; font-size: 1.1rem; margin-bottom: 25px; }

        .feature-list { list-style: none; padding: 0; margin: 0; }
        .feature-list li { font-size: 0.95rem; margin-bottom: 12px; display: flex; align-items: flex-start; }
        .feature-list li i { margin-right: 12px; font-weight: bold; }

        /* Book Now Button */
        .book-btn-wrapper {
            position: absolute;
            bottom: 1%;
            left: 15%;
            z-index: 20;
        }

        .btn-book-now {
            background-color: #20304A ;
            color: white;
            border: 2px solid white;
            padding: 10px 25px;
            font-weight: 700;
            border-radius: 5px;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        /* ----------------------------------------------------
           RESPONSIVE (Mobile Cleanup)
           ---------------------------------------------------- */
        @media (max-width: 991px) {
            .dot-pattern, .left-bar, .accent-square { display: none; }
            .image-clip-wrapper { clip-path: none; border-radius: 20px; }
            .info-box-skew {
                position: relative;
                width: 100%;
                right: 0; bottom: 0;
                margin-top: -60px;
                clip-path: none;
                border-radius: 20px;
                padding: 40px;
            }
            .book-btn-wrapper { position: relative; left: 0; text-align: center; margin-top: 20px; }
        }
    .btnCOLOR{
        background-color: #D2A641;
    }

        .call-btn {
        background: transparent;      /* Makes the background transparent */
        color: #4CAF50;              /* Green text color */
        padding: 10px 20px;   /* Green border */
        border-radius: 50px;         /* Rounded pill shape */
        font-size: 16px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    /* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Adjusts alignment to stay connected to the nav link */
}

/* Optional: smooth transition */
.dropdown-menu {
    transition: all 0.2s ease-in-out;
}

.button-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
}

/* Yellow Quote Button */
.btn-quote {
    background-color: #d2a641;
    color: #000;
    text-decoration: none;
    padding: 12px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    font-family: sans-serif;
    transition: background 0.3s ease;
}

.btn-quote:hover {
    background-color: #e6b817;
}

/* Outlined Phone Button */
.btn-phone {
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 6px;
    border: 1px solid #ffffff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    font-size: 18px;
}


.button-group {
    flex-direction: row; /* Keep buttons side-by-side */
}

.hero-section {
    background: linear-gradient(to bottom, rgb(255 255 255 / 45%), rgb(0 0 0)), url(../images/banner.png);
    background-size: cover;
    background-position: center;
    padding: 20px 0 100px 0;
    position: relative;
}





/* TRUST CARD */

.trust-card{
    background:#002244;
    color:#fff;
    border-radius:20px;
    overflow:hidden;
    max-width:900px;
    margin-top:80px;
}

/* top rating */

.trust-top{
    padding:25px 20px 10px;
}

.trust-logo{
    font-size:28px;
    font-weight:700;
}

.trust-logo .stars{
    color:#d2a641;
    margin-left:10px;
}

.trust-rating{
    margin-top:6px;
    font-size:16px;
    color:#ddd;
}

/* stats */

.trust-stats{
    padding:10px 20px;
    align-items:center;
}

.trust-img{
    width:45px;
    height:45px;
    border-radius:50%;
    margin-bottom:8px;
}

.flag{
    width:38px;
    margin:3px;
}

.trust-big{
    font-size:36px;
    font-weight:700;
    margin-bottom:4px;
}

.trust-title{
    font-size:14px;
    color:#ddd;
    margin:0;
}

/* bottom yellow bar */

.trust-bottom{
    background:#d2a641;
    color:#000;
    text-align:center;
    padding:14px;
    font-weight:600;
    font-size:16px;
}

.trust-bottom i{
    margin-right:8px;
}

/* responsive */

@media (max-width:768px){

.trust-card{
margin-top:25px;
}

.trust-big{
font-size:28px;
}

.trust-title{
font-size:13px;
}

}



/* dotted strip */

.footer-top{
background:#ffffff;
height:90px;
position:relative;
background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
background-size:20px 20px;
border-bottom:6px solid #1c8ce6;
}

/* bus standing */

.footer-bus{
position:absolute;
right:50px;
top:18px;
font-size:55px;
color:#c7cfd6;
}

/* footer main */

.footer-main{
background:#212F4A;
color:#fff;
padding:60px 0 30px;
}

/* logo */

.footer-logo{
display:flex;
align-items:center;
gap:10px;
font-size:26px;
font-weight:600;
}

.footer-logo i{
font-size:32px;
}

/* request quote */

.quote-btns{
border:2px solid #2aa3ff;
color:#fff;
padding:12px 30px;
border-radius:8px;
text-decoration:none;
font-weight:600;
display:inline-block;
}

.quote-btn:hover{
background:#2aa3ff;
}

/* rating */

.rating i{
color:#2aa3ff;
}

/* titles */

.footer-title{
color:#2aa3ff;
font-size:15px;
font-weight:600;
margin-bottom:20px;
letter-spacing:1px;
}

/* links */

.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:8px;
}

.footer-links a{
text-decoration:none;
color:#c8d6e5;
font-size:14px;
}

.footer-links a:hover{
color:#fff;
}

/* contact */

.contact-text{
font-size:14px;
color:#c8d6e5;
margin-bottom:8px;
}

/* social icons */

.footer-social i{
margin-right:10px;
color:#c8d6e5;
cursor:pointer;
}

.footer-social i:hover{
color:#fff;
}

/* copyright */

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.15);
margin-top:30px;
padding-top:15px;
font-size:12px;
color:#c8d6e5;
}

/* bottom buttons */

.bottom-cta{
background:#f2f2f2;
padding:30px;
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.book-btn{
background:#ccc9c9;
color:#fff;
padding:18px 90px;
border-radius:10px;
font-size:22px;
font-weight:700;
text-decoration:none;
}

.call-btns{
background:#d2a641;
color:#fff;
padding:18px 90px;
border-radius:10px;
font-size:22px;
font-weight:700;
text-decoration:none;
}

.call-btn:hover{
background:#1675c3;
}

/* mobile responsive */

@media(max-width:768px){

.footer-logo{
justify-content:center;
margin-bottom:20px;
}

.rating{
text-align:center;
margin-top:20px;
}

.footer-main{
text-align:center;
}

.footer-bus{
right:20px;
font-size:40px;
}

.book-btn,
.call-btns{
width:100%;
text-align:center;
font-size:24px !important;
padding:16px;
}

.bottom-cta{
gap:15px;
}

}

.feature-slider{
    background:#f2f2f2;
    padding:20px 0;
    margin-top:0px;
}

/* Flex container: heading + scrolling track */
.feature-slider-inner{
    display:flex;
    align-items:center;
}

/* Fixed Heading */
.feature-heading{
    font-size:18px;
    font-weight:600;
    color:#444;
    margin-right:20px;
    white-space:nowrap;
    flex-shrink:0; /* prevents shrinking */
}

/* Slider track container */
.slider-container{
    flex:1; /* take remaining space */
    overflow:hidden;
}

/* Slider track */
.slider-track{
    display:flex;
    width:max-content;
    animation:scroll 25s linear infinite;
}

/* pause on hover */
.feature-slider:hover .slider-track{
    animation-play-state: paused;
}

/* Pills */
.feature-pill{
    background:white;
    padding:10px 22px;
    border-radius:40px;
    margin-right:20px;
    font-size:16px;
    font-weight:500;
    white-space:nowrap;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
    display:flex;
    align-items:center;
}

/* Highlight numbers */
.feature-pill span{
    color:#f5b400;
    font-weight:700;
    margin-right:6px;
}

/* Animation */
@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* Mobile */
@media(max-width:768px){
    .feature-pill{
        font-size:14px;
        padding:8px 16px;
    }
    .feature-heading{
        font-size:16px;
    }
}

/* our fleet css to make same design  */

   .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: visible !important;
    }

        .fleet-section {
            padding: 0px 0 60px;
            position: relative;
        }

        /* --- Slider Customization --- */
        .fleet-carousel {
            position: relative;
            padding-bottom: 100px; /* Space for centered buttons */
        }

        /* Centered Navigation */
        .fleet-carousel .owl-nav {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            display: flex !important;
            gap: 20px;
        }

        .fleet-carousel .owl-nav button.owl-prev,
        .fleet-carousel .owl-nav button.owl-next {
            width: 45px;
            height: 45px;
            background: #20304a !important;
    color: #ffffff !important;
            border-radius: 50% !important;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px !important;
            border: 1px solid #f0f0f0 !important;
        }

        .fleet-carousel .owl-nav button:hover {
            background: #000 !important; /* Brand Color */
            color: #fff !important;
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }

        /* Utility to hide owl default dots and clutter */
        .owl-theme .owl-dots, 
        .owl-theme .owl-nav [class*='owl-']:hover {
            background: none;
            text-decoration: none;
        }


/* Bottom centered buttons for Services Owl Carousel */
.services-owl {
    position: relative; /* Needed for absolute positioning of nav */
}

/* Wrap the buttons container */
.services-owl .owl-nav {
    position: absolute;
    bottom: -65px; /* distance below the slider */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px; /* space between prev/next buttons */
    z-index: 10;
}

/* Individual buttons */
.services-owl .owl-nav button.services-owl-prev,
.services-owl .owl-nav button.services-owl-next {
    background: rgb(32 48 74);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect */
.services-owl .owl-nav button.services-owl-prev:hover,
.services-owl .owl-nav button.services-owl-next:hover {
    background: #007bff;
    transform: scale(1.15);
    box-shadow: 0 12px 20px rgba(0,0,0,0.3);
}

/* Remove default span */
.services-owl .owl-nav button span {
    display: none;
}

/* Mobile adjustment */
@media (max-width: 576px) {
    .services-owl .owl-nav button.services-owl-prev,
    .services-owl .owl-nav button.services-owl-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.us-flag-icon {
    width: 24px;  /* adjust size */
    height: auto;
}


/* css for pop up of banner  */

/* Modal Styling */
.quote-modal-det .modal-dialog{
max-width:420px;
}

.quote-card-det{
border:3px solid #2a8cff;
border-radius:20px;
padding:10px;
}

.quote-header-det h4{
font-weight:700;
font-size:20px;
}

.quote-header-det span{
color:#2a8cff;
}

.quote-header-det p{
font-size:12px;
color:#777;
margin-top:-5px;
}

.quote-form-det label{
font-size:13px;
font-weight:600;
margin-bottom:5px;
}

.quote-form-det .form-control{
border-radius:8px;
font-size:14px;
padding:10px;
}

.phone-input-det{
display:flex;
}

.flag-det{
background:#f5f5f5;
padding:10px;
border:1px solid #ddd;
border-right:0;
border-radius:8px 0 0 8px;
font-size:14px;
}

.phone-input-det input{
border-radius:0 8px 8px 0;
}

.roundtrip-det{
margin-left:10px;
}

.info-text-det{
font-size:12px;
color:#2a8cff;
}

.quote-features-det{
display:flex;
justify-content:space-between;
text-align:center;
margin-top:15px;
font-size:11px;
}

.quote-features-det div{
width:30%;
}

.note-det{
color:red;
font-size:11px;
text-align:center;
margin-top:0px;
}

.quote-btn-det{
width:100%;
background:#20304A;
color:white;
border:none;
padding:12px;
border-radius:10px;
font-weight:700;
margin-top:10px;
}

.quote-card-det{
border:3px solid #20304A;
border-radius:20px;
padding:15px;
position:relative;
}

.quote-close-det{
position:absolute;
top:10px;
right:12px;
background:white;
border:none;
font-size:18px;
font-weight:700;
cursor:pointer;
color:#555;
width:30px;
height:30px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
transition:.3s;
}

.quote-close-det:hover{
background:#f1f1f1;
}

.star p{
    font-size: 8px;
}


/* Submit Button */

.submit-quote-btn{
    background:#20304A;
    color:#fff;
    border:none;
    padding:12px 40px;
    border-radius:30px;
    font-weight:600;
    transition:0.3s;
}

.submit-quote-btn:hover{
    background:#20304A;
}

/* css for pop up of book now  */

/* Modal */

.bookdet-card{
border:3px solid #20304A;
border-radius:20px;
padding:15px;
position:relative;
max-width:420px;
margin:auto;
}

.bookdet-close{
position:absolute;
top:10px;
right:12px;
background:#fff;
border:none;
font-size:18px;
font-weight:700;
cursor:pointer;
width:30px;
height:30px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.bookdet-header h4{
font-weight:700;
font-size:20px;
}

.bookdet-header span{
color:#20304A;
}

.bookdet-header p{
font-size:12px;
color:#777;
}

.bookdet-form label{
font-size:13px;
font-weight:600;
margin-bottom:5px;
}

.bookdet-form .form-control{
border-radius:8px;
padding:10px;
font-size:14px;
}

.bookdet-phone{
display:flex;
}

.bookdet-flag{
background:#f3f3f3;
padding:10px;
border:1px solid #ddd;
border-right:0;
border-radius:8px 0 0 8px;
}

.bookdet-phone input{
border-radius:0 8px 8px 0;
}

.bookdet-info{
font-size:12px;
color:#20304A;
}

.bookdet-features{
display:flex;
justify-content:space-between;
text-align:center;
margin-top:15px;
font-size:11px;
}

.bookdet-features div{
width:30%;
}

.bookdet-note{
font-size:11px;
color:red;
text-align:center;
margin-top:10px;
}

.bookdet-btn{
width:100%;
background:#20304A;
color:white;
border:none;
padding:12px;
border-radius:10px;
font-weight:700;
margin-top:10px;
}

/* Submit Button */

.submit-book-btn{
    background:#20304A;
    color:#fff;
    border:none;
    padding:12px 40px;
    border-radius:30px;
    font-weight:600;
    transition:0.3s;
}

.submit-book-btn:hover{
    background:#20304A;
}
.modal-body {
    padding: 0px;
}