body, h1, ul, li, a, form, input, button, select {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    position: absolute;
    position: sticky;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 3px solid yellow;
    top: 0;
}

header .logo img {
    height: 40px;
}

header .nav-links ul {
    display: flex;
    list-style: none;
}

header .nav-links ul li {
    margin: 0 15px;
}

header .nav-links ul li a, .user-options a {
    text-decoration: none;
    color: #333;
    font-weight: 300;
}

header .user-options {
    display: flex;
    gap: 1px;
}

header .toggle-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Banner Section */
.banner {
    position: relative;
    background: url('https://images.pexels.com/photos/305070/pexels-photo-305070.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center/cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.banner h1 {
    font-size: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.booking-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-form .form-group {
    display: flex;
    margin-bottom: 15px;
    justify-content: space-between;
    align-items: center;
}

.booking-form .form-group input,
.booking-form .form-group select {
    width: 48%;
    padding: 2px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.booking-form a {
    color: #007bff;
    font-size: 14px;
    text-decoration: none;
}

.booking-form button {
    background-color: #ffc107;
    color: #333;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.booking-form button:hover {
    background-color: #ffca28;
}

.booking-form .form-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.booking-form .form-links a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 948px) {
    header .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 10px 20px;
        border-top: 3px solid yellow;
    }

    header .nav-links ul {
        flex-direction: column;
    }

    header .toggle-btn {
        display: block;
    }

    header .nav-links.active {
        display: flex;
    }

    .booking-form .form-group input,
    .booking-form .form-group select {
        width: 100%;
    }

    .booking-form .form-group {
        flex-direction: column;
    }

    .booking-form .form-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-form .form-links a {
        margin-bottom: 10px;
    }

    .cards_item {
        width: 100%;
        margin-bottom: 20px;
    }

    .card {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Adjust input fields */
    .booking-form .form-group input[type="date"],
    .booking-form .form-group input[type="time"] {
        width: 100%;
        margin-bottom: 10px;
    }

    .booking-form .form-group select {
        width: 100%;
        margin-bottom: 10px;
    }
}


@media (min-width: 40rem) {
    .cards_item {
        width: 50%;
    }
}

@media (min-width: 56rem) {
    .cards_item {
        width: 33.3333%;
    }
}

/* Main Layout */
.main {
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

/* Images */
img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

/* Button Styles */
.btn {
    color: #ffffff;
    padding: 0.8rem;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 400;
    display: block;
    width: 100%;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

/* Cards Layout */
.cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Cards Items */
.cards_item {
    display: flex;
    padding: 1rem 6rem;
    width: 33.3333%; /* 3 cards per row by default (100% / 3 = 33.3333%) */
}

/* Card Styles */
.card {
    background-color: white;
    border-radius: 0.25rem;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card_content {
    padding: 1rem;
    background: linear-gradient(to bottom left, #EF8D9C 40%, #FFC39E 100%);
}

.card_title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0px;
}

.card_text {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.made_by {
    font-weight: 400;
    font-size: 13px;
    margin-top: 35px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Adjust cards layout for tablets */
    .cards_item {
        width: 33.3333%; /* 3 cards per row on tablets as well */
    }
}

@media (max-width: 768px) {
    /* Adjust cards layout for mobile screens */
    .cards_item {
        width: 100%; /* 1 card per row on mobile */
        margin-bottom: 20px; /* Add margin between stacked cards */
    }

    /* Optional: Adjust button size for smaller screens */
    .btn {
        font-size: 12px;
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    /* Further adjustments for very small screens */
    .card_title {
        font-size: 1rem; /* Adjust title font size */
    }

    .card_text {
        font-size: 0.75rem; /* Adjust text size */
    }
}


  /* Newsletter Section */
.newsletter {
    background-color: #f6f8fa; /* Light gray background */
    padding: 20px;
    text-align: center;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.newsletter h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000; /* Black text */
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Space between input and button */
    margin-bottom: 10px;
}

.newsletter-form input {
    width: 70%; /* Input takes most of the space */
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.newsletter-form button {
    background-color: #ffc107; /* Yellow button */
    color: #000; /* Black text */
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #ffca28; /* Slightly darker yellow on hover */
}

.newsletter a {
    font-size: 12px;
    color: #007bff; /* Blue link */
    text-decoration: none;
}

.newsletter a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column; /* Stack on smaller screens */
        gap: 15px;
    }

    .newsletter-form input {
        width: 100%; /* Full width on smaller screens */
    }

    .newsletter-form button {
        width: 100%; /* Full width button on smaller screens */
    }
}






/* Info Section */
.info-section {
    background-color: #f6f8fa; /* Light gray background */
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.info-container {
    max-width: 800px;
    margin: 0 auto;
}

.info-container h1 {
    font-size: 28px;
    font-weight: 700;
    color: #000; /* Black text for the heading */
    margin-bottom: 20px;
}

.info-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #333; /* Dark gray text for the paragraph */
}

.info-container p strong {
    color: #000; /* Black text for emphasis */
    font-weight: 700;
}






/* Bonus Program Section */
.bonus-program-section {
    background-color: #fff; /* White background */
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.bonus-program-container {
    max-width: 900px;
    margin: 0 auto;
}

.bonus-program-container h1 {
    font-size: 28px;
    font-weight: 700;
    color: #000; /* Black text for the heading */
    margin-bottom: 20px;
}

.bonus-program-container h5 {
    font-size: 16px;
    line-height: 1.6;
    color: #333; /* Dark gray text for the main content */
    margin-bottom: 15px;
}

.bonus-program-container .note {
    font-size: 14px;
    color: #555; /* Lighter gray for the note */
    font-style: italic;
}






/* Stats Section */
.stats-section {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
    margin-bottom: 20px;
}

.stat-item {
    flex: 1; /* Equal space for each stat */
    max-width: 400px;
    margin: 10px 20px;
}

.stat-number {
    font-size: 48px; /* Larger font size than h1 */
    font-weight: bold;
    color: #f7c600; /* Yellow text */
    margin: 0;
}

.stat-text {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.stat-note {
    font-size: 16px;
    color: #666; /* Lighter gray for the note */
    font-style: italic;
}





/* Vehicle Section */
.vehicle-section {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.vehicle-heading h1 {
    font-size: 36px;
    font-weight: bold;
    color: #000; /* Black for emphasis */
    margin-bottom: 10px;
}

.vehicle-heading p {
    font-size: 18px;
    color: #333; /* Dark gray for readability */
    margin-bottom: 20px;
}

.vehicle-box {
    display: inline-block;
    padding: 20px 30px;
    background-color: #f7c600; /* Yellow background for the box */
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for elevation */
}

.vehicle-box h5 {
    font-size: 16px;
    font-weight: normal;
    color: #000; /* Black text for contrast */
    margin: 0;
}



/* Fleet Section */
.fleet-section {
    background-color: #f8f8f8; /* Light gray background for contrast */
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.fleet-heading h1 {
    font-size: 36px;
    font-weight: bold;
    color: #000; /* Black for emphasis */
    margin-bottom: 15px;
}

.fleet-heading p {
    font-size: 18px;
    color: #333; /* Dark gray for readability */
    margin-bottom: 20px;
}

/* Carousel Container */
.carousel {
    display: flex;
    padding: 50px;
    justify-content: center; /* Center the content */
}

/* Carousel items container */
.carousel-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Individual carousel item */
.carousel-item {
    min-width: 100%;
    display: none;
    transition: transform 1s ease;
    text-align: center; /* Center align content inside each carousel item */
}

.carousel-item.active {
    display: block;
}

/* Carousel Card - Center content */
.carousel-card {
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Image inside the carousel */
.carousel-card .car img {
    max-width: 30%;
    height: auto;
    object-fit: contain;
}

/* Text below image */
.carousel-card .para {
    padding-top: 20px;
}

/* Sliding transitions */
.carousel-container.active {
    transform: translateX(0); /* Default state */
}

.carousel-container.slide-next {
    transform: translateX(-100%);
}

.carousel-container.slide-prev {
    transform: translateX(100%);
}

/* Buttons */
#backward, #forward {
    background-color: white;
    width: 50px; /* Smaller size */
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

#backward:hover, #forward:hover {
    background-color: #ffc107;
    transition: 0.8s;
}

#backward i, #forward i {
    font-size: 16px; /* Adjust icon size */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Adjust carousel container padding */
    .carousel {
        padding: 20px;
    }

    /* Adjust carousel item and card to take up full width */
    .carousel-item {
        min-width: 100%;
    }

    /* Adjust text for mobile screens */
    .carousel-card .para h3 {
        font-size: 1.2rem;
    }

    /* Ensure image takes up full width */
    .carousel-card .car img {
        max-width: 80%; /* Make image slightly smaller */
    }

    /* Smaller buttons on mobile */
    #backward, #forward {
        width: 40px;
        height: 40px;
    }

    /* Adjust carousel card text for mobile */
    .carousel-card .para p {
        font-size: 0.9rem; /* Smaller text on mobile */
    }
}

/* Very Small Screen Responsiveness */
@media (max-width: 480px) {
    /* Adjust image size and card layout for very small screens */
    .carousel-card .car img {
        max-width: 70%; /* Make the image even smaller */
    }

    /* Further reduce button size */
    #backward, #forward {
        width: 66px;
        height: 50px;
    }

    /* Further adjust text */
    .carousel-card .para h3 {
        font-size: 1rem;
    }

    .carousel-card .para p {
        font-size: 0.85rem;
    }
}


  
  .card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }
  
  .card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 250px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .card-content {
    padding: 15px;
    text-align: center;
  }
  
  .card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .card-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
  }
  
  .card-content button {
    background-color: #fff;
    border: 2px solid #333;
    color: #333;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .card-content button:hover {
    background-color: #333;
    color: #fff;
  }


  #results {
    list-style-type: none;
    background-color: #ffc107;
    color: #000;
    border-radius: 5px;
    max-height: 150px; /* Set max height for the scrollable box */
    overflow-y: auto; /* Enable vertical scrolling */
    width: 19%; /* Match input field width */
    z-index: 1; /* Ensure it appears above other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-left: 520px;
    margin-top: 200px;
    position: absolute;
}

#results li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    display: block;
}

#results li:hover {
    background-color: white;
}





























/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
    background-color: rgb(221, 221, 221);
    border-top: 1px solid #ddd;
}

/* Columns within the footer */
.column {
    width: 18%;
    padding: 10px;
}

/* Heading in each column */
.column h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #000;
}

/* Links within each column */
.column a {
    display: block;
    text-decoration: none;
    color: black;
    font-size: 0.9rem;
    margin-bottom: 8px;
    transition: color 0.2s;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    /* Stack the footer columns on smaller screens */
    .column {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-container {
        padding: 20px 10px;
    }

    .footer-container .column h3 {
        font-size: 1.2rem; /* Adjust the header size on mobile */
    }

    .footer-container .column a {
        font-size: 0.85rem; /* Adjust link font size */
    }
    .hhts{
        display: none;
    }
}

/* Additional media query for very small screens */
@media (max-width: 480px) {
    .column {
        width: 100%; /* Full width on very small screens */
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-container .column h3 {
        font-size: 1rem; /* Smaller headings */
    }
}

