/* General Reset */
@font-face {
    font-family: "satoshi";
    src: url(./Satoshi-Regular.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "satoshi";
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    font-family: "satoshi";
    background-color: #F6F6F6;
    position: relative;
}

section {
    overflow: hidden;
}

.navmenu {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    border-bottom: 1px solid #b4afaf;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    padding-top: 30px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.3s ease;
    transition: background 0.3s ease, color 0.3s ease;
    /* background: #9b9a9a; */
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.7s ease;
    padding: .5rem 2rem;
}

.nav-links a:hover {
    text-decoration: underline;
    border-radius: 50px;
}

/* Dropdown */

.dropdown-menu {
    padding: .5rem .3rem;
    border-radius: 5px;
    display: flex;
    overflow: hidden;
    z-index: 1000;
    transition: transform .8s;
}

.dropdown-menu a {
    color: #000;
}

.dropdown-menu a {
    display: block;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: .3rem 0;
    padding: .4rem .5rem;
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a i {
    font-size: 1.3rem;
}

.dropdown-menu .whatsap_i {
    color: #25D366;
}

.dropdown-menu a:hover {
    background: #fff;
    color: #000;
    border-radius: 5px;
}

/* Show the dropdown when active */
.dropdown.active .dropdown-menu {
    display: block;
    transform: translateY(20px);
    top: 95%;
}

.menu-toggle {
    display: none;
    position: absolute;
    right: 1rem;
}

.sidebar {
    position: fixed;
    top: 0%;
    right: -100%;
    width: 100%;
    height: auto;
    background-color: #333;
    color: #fff;
    padding: 2rem;
    z-index: 9999;
    transition: right 0.3s ease;
    /* overflow-y: auto; */
}

.sidebar.active {
    right: 0;
}

.sidebar-links a {
    display: block;
    padding: 1rem 0;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.sidebar-links a:hover {
    color: #f3a847;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #f3a847;
}

/* Hero Section */

.ripple {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0;
    transform: translate(-50%, -50%);
}

/* Car Image (GIF) Styling */
.car {
    position: absolute;
    width: 70px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.hero {
    position: relative;
    background:
        url('./assets/hero\ image.jpg') no-repeat center center / cover;
    color: #fff;
    padding: 3rem 61px;
}

.minibus {
    position: relative;
    background:
        url('./assets/minibus.jpg') no-repeat center center / cover;
    color: #fff;
    padding: 3rem 61px;
}

.coach {
    position: relative;
    background:
        url('./assets/coach-img.jpg') no-repeat center center / cover;
    color: #fff;
    padding: 3rem 61px;
}

.about {
    position: relative;
    background:
        url('./assets/about.jpg') no-repeat center center / cover;
    color: #fff;
    padding: 3rem 61px;
}

.container-hero {
    margin-top: 8rem;
}

.hero h1 {
    font-size: 3.813rem;
    line-height: 1.3;
    font-weight: 300;
    z-index: 5;
    z-index: 999;
    color: white;
}

.hero span {
    font-weight: bold;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #b4afaf;
    padding-bottom: 1rem;
    margin-top: 17rem;
}

.bottom-content button {
    background-color: #fff;
    height: 57px;
    width: 334px;
    border: none;
    outline: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 500;
}

.bottom-content p {
    font-size: 1.875rem;
    text-align: right;
    font-weight: 500;
}

/* Footer */
.bottom-content2 {
    width: 100%;
    color: #fff;
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    margin-top: 1.5rem;
}

.whats-icon {
    display: flex;
    align-items: center;
}

.bottom-content2 p {
    font-size: 1.25rem;
}

.whats-icon i {
    position: fixed;
    font-size: 2rem;
    right: .5%;
    bottom: 1.57%;
    border: 1px solid #fff;
    padding: .6rem;
    color: #fff;
    background-color: #25D366;
    border-radius: 50%;
}

.scroll-btn {
    border: 1px solid #b4afaf;
    background: transparent;
    color: #b4afaf;
    height: 54px;
    width: 180px;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    font-size: 1.1rem;
}

.scroll-btn:hover {
    color: #000;
    background-color: #fff;
}

/* reviews-section */
.review-section {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
    padding: 40px;
}

/* CARD */
.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    padding: 22px 16px;
    width: 210px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* BUTTON BASE */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* INDIVIDUAL BUTTON COLORS */
.btn-review {
    background: #2ecc71;
}

.btn-google {
    background: #fbbc05;
    color: #000;
}

.btn-trip {
    background: #34a853;
}

/* BUTTON HOVER */
.btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}


.box button {
    padding: .3rem 2rem;
}

.box button a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
}

.review-img {
    width: 160px;
}

.google-img {
    width: 100px;
    height: auto;
}

.trip-img {
    width: 160px;
}

.box .img-1 {
    margin-top: 10px;
    width: 120px;
}

.box .img-2 {
    margin-top: 0px;
    width: 120px;
}

.box .img-3 {
    margin-top: 10px;
    width: 120px;
}

 /* SECTION */
.form-section {
    padding: 40px;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    padding: 2.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* HEADER BUTTONS */
.form-header {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.toggle-btn {
    padding: 12px 26px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.toggle-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* FORM GROUP */
.form-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group > div {
    width: 100%;
}

/* LABEL */
label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

/* INPUTS */
.input-wrapper {
    position: relative;
}

.input-wrapper .icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.input-wrapper .icon img {
    width: 20px;
}

.input-wrapper input,
textarea {
    width: 100%;
    padding: 16px 14px;
    border-radius: 12px;
    border: 1px solid #e1e1e1;
    background: #f9f9f9;
    font-size: 14px;
    transition: 0.25s;
    padding-left: 40px;
}

.padding {
    padding-left: 44px;
}

.input-wrapper input:focus,
textarea:focus {
    outline: none;
    background: #fff;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.08);
}

/* TEXTAREA */
.textarea {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
}

textarea {
    height: 150px;
    resize: none;
}

/* CHECKBOX */
.checkbox_agree {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-top: 1rem;
}

/* BUTTONS */
.submit-btn {
    background: linear-gradient(135deg, #000, #333);
    color: #fff;
    padding: 16px 20px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* RATING */
.rating2 {
    margin-top: 1.5rem;
    font-size: 14px;
    color: #555;
}

.rating2 img {
    height: 18px;
    vertical-align: middle;
    margin: 0 6px;
}

/* HIDDEN */
.hidden {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .form-group {
        flex-direction: column;
    }

    .btn-group {
        flex-direction: column;
    }

    .container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .form-header {
        flex-direction: column;
    }

    .toggle-btn {
        width: 100%;
        text-align: center;
    }

    .container {
        padding: 1.5rem 1rem;
    }

    .rating2 {
        text-align: center;
        line-height: 1.6;
    }
}

/* About Section */
.about-section {
    background-color: #fefefe;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

/* Content */
.about-content {
    padding: 10px 0;
}

.about-tag {
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000000;
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

.about-content h1 {
    font-size: 3rem;
    margin: 20px 0;
    line-height: 1.2;
    color: #000000;
}

.about-body_text {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #000000;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    flex: 1 1 250px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #caf0f8;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000000;
}

.feature-item p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
}

/* Image */
.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    max-width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
}

.about-image:hover {
    transform: scale(1.05);
}


/* Fleet Section */
/* Fleet Section */
.fleet-section {
    padding: 100px 20px;
    background: #f9f9f9;
}

.fleet-section h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #000; /* Black text */
    font-weight: bold;
}

/* Fleet Grid */
.fleet-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Fleet Card */
.fleet-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

/* Fleet Image */
.fleet-img {
    width: 100%;
    height: 250px; /* Fixed height for uniformity */
    object-fit: cover;
    border-bottom: 1px solid #ddd;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.fleet-card:hover .fleet-img {
    transform: scale(1.05);
}

/* Fleet Info */
.fleet-info {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Space between elements */
}

.fleet-info h4 {
    font-size: 1.5rem;
    color: #000; /* Black text */
    font-weight: bold; /* Bold heading */
    margin-top: 15px; /* Space from image */
    margin-bottom: 5px;
}

.fleet-info p {
    font-size: 1rem;
    color: #000;
    margin-bottom: 15px;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.features li {
    background: #e0f7ff;
    color: #000;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.features li img {
    height: 20px;
    width: 20px;
}

/* Book Now Button */
.book-now {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 15px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.book-now:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .fleet-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .fleet-section h1 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    .fleet-img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .fleet-section h1 {
        font-size: 2rem;
    }
    .fleet-img {
        height: 180px;
    }
    .features li {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    .book-now {
        font-size: 0.9rem;
    }
}

/* Trusted Customers Section */
.trusted-customers {
    padding: 80px 20px;
    background: #f9f9f9;
}

.trusted-customers .container {
    max-width: 1200px;
    margin: 40px;

}

.trusted-customers h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
    font-weight: bold;
}

/* Logo Slider */
/* Trusted Customers Section */
.trusted-customers {
    padding: 80px 20px;
    background: #f9f9f9;
}

.trusted-customers .container {
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-customers h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
    font-weight: bold;
}

/* Logo Slider */
.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 3rem;
    animation: scroll 10s linear infinite;
}

.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    background: #fff;
}

/* Infinite Scroll Keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .trusted-customers h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .logo img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .logo-track {
        gap: 2rem;
    }
    .logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .trusted-customers h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    .logo img {
        height: 35px;
    }
}

/* Experience Section */
.experience-section {
    padding: 100px 20px;
    background: #f9f9f9;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-content_expo {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.main-content_expo h2 {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.3;
    color: #000;
    flex: 1 1 60%;
}

.main-content_expo p {
    flex: 1 1 35%;
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
}

/* Cards Container */
.crads-expo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Testimonial Card */
.expo-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image */
.expo-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.expo-card:hover .expo-img img {
    transform: scale(1.05);
}

/* Overlay Details */
.content-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    border-radius: 0 0 15px 15px;
}

.expo-card:hover .content-details {
    opacity: 1;
    transform: translateY(0);
}

/* Header inside overlay */
.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.fleet-header h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.fleet-header .rating {
    font-weight: bold;
    color: #ffd700; /* golden star */
}

.content-details p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .main-content_expo {
        flex-direction: column;
    }
    .main-content_expo h2, .main-content_expo p {
        flex: 1 1 100%;
    }
    .expo-img img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .main-content_expo h2 {
        font-size: 2rem;
    }
    .expo-img img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .main-content_expo h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    .expo-img img {
        height: 180px;
    }
    .content-details {
        padding: 15px;
    }
    .fleet-header h3 {
        font-size: 1rem;
    }
    .content-details p {
        font-size: 0.85rem;
    }
}


/* Footer */
/* Footer */
.footer {
    background: #000; /* Black background */
    color: #fff; /* White text */
    padding: 60px 20px 30px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff; /* White heading */
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff; /* White text */
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #fff; /* White links */
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f3a847; /* Accent color on hover */
}

.footer-section p a {
    color: #fff; /* White links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: #f3a847; /* Accent color on hover */
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
    filter: invert(0.6) sepia(1) saturate(5) hue-rotate(320deg); /* Subtle hover effect */
}

/* Footer Bottom */
.footer-bottom-container {
    max-width: 1200px; /* Same as main footer container */
    margin: 30px auto;    /* Center aligned */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid #fff;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #fff;
}

.footer-bottom p, .footer-bottom .footer-terms p {
    margin: 5px 10px 5px 0;
    display: flex;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
}

.footer-bottom a:hover {
    color: #f3a847;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}





/* feature_container */
/* FEATURES SECTION */
.features-section {
    margin: 120px 0;
}

.feature_container {
    padding: 0 61px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.feature_container .main-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.feature_container .main-title h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.feature_container .main-title p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

/* Cards Grid */
.feature_container .feauter-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 4rem;
}

/* Card */
.feauter-cards .feaure-card {
    border: 1px solid #000;
    padding: 2.2rem;
    border-radius: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.feauter-cards .feaure-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Card Top */
.feaure-card .top-content_feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.top-content_feature img {
    width: 42px;
    height: 42px;
}

.top-content_feature h3 {
    font-size: 1.6rem;
    font-weight: 600;
}

/* Card Body */
.body_text-feature p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

/* Responsive */
@media (max-width: 1024px) {
    .feature_container .feauter-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .feature_container .feauter-cards {
        grid-template-columns: 1fr;
    }

    .feature_container .main-title h2 {
        font-size: 2.4rem;
    }

    .top-content_feature h3 {
        font-size: 1.4rem;
    }
}



/* minibus-second_section */
.minibus-second_section {
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 61px;
    margin: 100px 0 0 0;
    overflow-y: hidden;
}

.main-title-second_section {
    flex-basis: 40%;
}

.main-title-second_section h2 {
    font-size: 60px;
    line-height: 1.2;
}

.main-title-second_section p {
    margin: 1.5rem 0;
    font-size: 18px;
}

.main-img-second_section {
    width: 100%;
    max-width: 713px;
    flex-basis: 40%;
}

.minibus-second_section img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-us-section {
    padding: 0 60px;
    margin: 100px 0 0 0;
}

/* about us page */
.about-second_section {
    display: flex;
    justify-content: space-between;
    overflow-y: hidden;
}

.main-title-second_section {
    flex-basis: 40%;
}

.main-title-second_section h2 {
    font-size: 60px;
    line-height: 1.2;
}

.main-title-second_section p {
    margin: 1.5rem 0;
    font-size: 18px;
}

.main-img-second_section {
    width: 100%;
    max-width: 713px;
    flex-basis: 40%;
}

.about-second_section img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.benifits-minibus {
    margin: 60px 0;
}

.benifits-minibus h4 {
    font-size: 21px;
}

.benifits-minibus ul {
    margin: 1rem 2em;
}

.benifits-minibus ul li {
    font-size: 21px;
}

.benifits-minibus p {
    font-size: 21px;
}

/* media query */
@media (max-width:1520px) {
    .about-content h1 {
        font-size: 3vw;
        font-weight: bold;
    }

    .about-content {
        padding: 0;
    }

    .about-body_text {
        margin: .7rem 0;
    }

    .footer-section.footer-nav {
        padding-left: 8rem;
    }

    .top-content_feature h3 {
        font-size: 24px;
    }

    .minibus-second_section .main-img-second_section,
    .about-second_section .main-img-second_section {
        flex-basis: 45%;
    }

    .main-title-second_section {
        flex-basis: 45%;
    }

    .nav-links {
        gap: .2rem;
    }

    .nav-links a {
        padding: .5rem 1rem;
    }
}

@media (max-width:1300px) {
    .feature_container .feauter-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.3rem;
        margin-top: 3rem;
    }

    .minibus-second_section .main-img-second_section,
    .about-second_section .main-img-second_section {
        flex-basis: 60%;
    }

    .main-title-second_section {
        flex-basis: 40%;
    }

    .main-title-second_section h2 {
        font-size: 50px;
        line-height: 1.2;
    }

    .main-title-second_section p {
        margin: 1.3rem 0;
        font-size: 16px;
    }

    .minibus-second_section .main-img-second_section,
    .about-second_section .main-img-second_section {
        height: auto;
        width: 400px;
        flex-basis: 40%;
    }

    .minibus-second_section {
        padding: 0 0 0 40px;
        margin: 100px 0;
    }

    .navmenu {
        flex-wrap: wrap;
    }
}

@media (max-width: 1200px) {
    .footer-section.footer-nav {
        padding-left: 10rem;
    }

    .about-content h1 {
        line-height: 1.25;
        font-weight: bold !important;
    }

    .about-image {
        max-height: 700px;
    }

    .about-container {
        gap: 70px;
        align-items: center;
    }

    .about-body_text {
        margin: .7rem 0;
        font-size: 20px;
    }

    .footer-section.footer-nav {
        padding-left: 5rem;
    }

    .minibus-second_section,
    .about-second_section {
        flex-direction: column;
    }

    .minibus-second_section .main-img-second_section,
    .about-second_section .main-img-second_section {
        flex-basis: 100%;
        width: 100%;
    }
}

@media (max-width:1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        gap: .5rem;
    }

    .bottom-content p {
        font-size: 1.2rem;
    }

    .bottom-content2 p {
        font-size: 1rem;
    }

    .hero {
        padding: 1rem 50px;
        height: auto;
    }

    .form-group {
        flex-wrap: wrap;
    }

    .about-container {
        display: flex;
        flex-direction: column;
    }

    .fleet-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .main-content_expo h2 {
        font-size: 40px;
        font-weight: lighter;
    }

    .main-content_expo p {
        width: 40%;
        font-size: 18px;
    }
}

@media (max-width:800px) {
    .experience-container .main-content_expo {
        flex-direction: column;
        padding: 30px 0;
    }

    .main-content_expo p {
        width: 70%;
    }

    .experience-container {
        padding: 0 20px;
        margin: 30px 0;
    }

    .feature_container .feauter-cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.3rem;
        margin-top: 3rem;
    }

    .review-section {
        flex-wrap: wrap;
    }
}

@media (max-width:780px) {
    .bottom-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .bottom-content2 {
        flex-direction: column;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .logo img {
        height: 70px;
        width: auto;
    }

    .navbar {
        padding-top: 6%;
    }

    .menu-toggle {
        display: block;
        background: none;
        color: #fff;
        font-size: 1.8rem;
        border: none;
        cursor: pointer;
    }

    .dropdown-menu {
        display: none;
    }

    .container {
        padding: 1rem 10px;
        border-radius: 8px;
        margin: 40px 0;
    }

    .form-section {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 7vw;
    }

    .bottom-content p {
        font-size: 1.2rem;
        text-align: left;
        margin-top: 1rem;
    }

    .bottom-content2 p {
        font-size: 1rem;
        text-align: left;
    }

    .whats-icon {
        margin: 1rem 0;
    }

    .whats-icon i {
        right: 2%;
        bottom: 8%;
    }

    .fleet-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .expo_content .crads-expo {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .logo-container .logo-img {
        flex-wrap: nowrap;
        gap: 10px;
        animation: scrollInfinite 10s linear infinite;
    }

    .logo-container .logo-img img {
        height: 50px;
    }

    .footer-section.footer-nav {
        padding-left: 0rem;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .features {
        font-size: 2.5vw;
    }

    .features li {
        gap: .4rem;
    }

    .fleet-section {
        padding: 20px 20px;
        margin: 40px 0;
    }

    .hero {
        padding: 1rem 20px;
    }

    .bottom-content2 {
        justify-content: space-between;
        text-align: start;
        align-items: flex-start;
    }

    .bottom-content {
        text-align: start;
        align-items: flex-start;
    }

    .feature_container {
        padding: 0 40px;
        margin: 70px 0;
    }

    .about-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width:440px) {
    .bottom-content2 p {
        font-size: .9rem;
    }

    .scroll-btn {
        height: 50px;
        width: 150px;
    }

    .about-content h1 {
        font-size: 6vw;
    }

    .about-body_text {
        margin: .7rem 0;
        font-size: 17px;
    }

    .about-container {
        gap: 40px;
    }

    .about-us-section {
        padding: 0 20px;
        margin: 40px 0 0 0;
    }

    .benifits-minibus p {
        font-size: 17px;
    }

    .fleet-section {
        padding: 20px 20px;
        margin: 40px 0;
    }

    .logo-container {
        padding: 0 20px;
        margin: 40px 0;
    }

    .bottom-content p {
        font-size: 1rem;
    }

    .bottom-content button {
        height: 50px;
        width: 300px;
        font-size: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-container .logo-title h2 {
        font-size: 30px;
        padding-bottom: 20px;
    }

    .main-content_expo h2 {
        font-size: 30px;
    }

    .main-content_expo p {
        width: 100%;
        font-size: 17px;
    }

    .features {
        font-size: 2.4vw;
    }

    .features li {
        gap: .3rem;
    }

    .features li img {
        height: 17px;
        width: 17px;
    }

    .expo_content .crads-expo .expo-card:hover .expo-img img {
        transform: scale(1);
    }

    .expo_content .crads-expo .expo-card:hover .content-details {
        transform: translateX(0);
        opacity: 1;
    }

    .content-details {
        bottom: 2%;
        padding: 0 10px;
        transition: all 1s;
        opacity: 1;
        z-index: 1;
        color: white;
        transform: translateX(-120%);
        background: #000000ab;
    }

    .expo_content .crads-expo .expo-card:hover .expo-img {
        transform: translateY(0px);
    }

    .main-title-second_section h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .minibus-second_section {
        flex-direction: column;
        margin: 60px 0;
        padding: 0 0 0 20px;
    }

    .about-second_section {
        flex-direction: column;
        margin: 60px 0;
        padding: 0 20px;
    }

    .main-title-second_section p {
        margin: 1.1rem 0;
        font-size: 15px;
    }

    .feature_container .main-title h2 {
        font-size: 35px;
    }

    .feature_container .main-title p {
        font-size: 17px;
    }

    .top-content_feature h3 {
        font-size: 22px;
    }

    .feature_container {
        padding: 0 20px;
        margin: 60px 0;
    }
}