
* {
    max-width: 100%;
    box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
 
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background: none;
            font-weight: bold;
        }
        .social-links {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            padding: 10px 20px;
        }
        .social-links a {
            font-size: 22px;
            padding: 10px;
            border-radius: 50%;
            color: black;
            text-decoration: none;
            transition: 0.3s;
        }
        .social-links a:hover {
            background-color: rgba(0, 0, 0, 0.1);
        }
        .social-links a[href^="mailto"]:hover {
            background-color: #D44638;
            color: white;
        }
        .social-links a[href*="instagram"]:hover {
            background-color: #C13584;
            color: white;
        }
        .social-links a[href*="facebook"]:hover {
            background-color: #1877F2;
            color: white;
        }
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            background-color: rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 1;
        }
        .logo {
            width: 120px;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            flex-direction: row;
            gap: 20px;
        }
        .nav-links a {
            text-decoration: none;
            color: black;
            font-size: 18px;
            padding: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-links a i {
            display: none;
        }
        .book-btn {
            background-color: #007BFF;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 18px;
            transition: 0.3s;
        }
        .book-btn:hover {
            background-color: #0056b3;
        }
        .hamburger {
            display: none;
            font-size: 30px;
            cursor: pointer;
        }
        
        
        @media (max-width: 768px) {
            .social-links {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: white;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links a i {
                display: inline;
            }
            .nav-links .icons {
                display: flex;
                flex-direction: row;
                justify-content: center;
                padding: 10px 0;
            }
        }
        
       .hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    color: black;
    height: 550px;
    position: relative; /* Ensures pseudo-element is positioned correctly */
    z-index: 0; /* Set to 0 to be below the navbar */
}

/* Add a dull overlay to just the background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('1.jpg') no-repeat center center/cover; /* Background image */
    filter: brightness(50%); /* Dull the background image */
    z-index: -1; /* Ensure the overlay is behind the text */
}

/* Navbar styles */
.navbar {
    position: relative;
    z-index: 10; /* Ensure navbar stays above the background */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
}

.section-heading {
    font-size: 18px;
    margin-bottom: 1.7rem;
    color: white;
    font-weight: bold;
    margin-left: 1rem;
  }
  
        /* Left Side: Form */
        .form-container {
            background-color: orange;
            color: white;
            background: rgba(255, 255, 255, 0);
            padding: 20px;
            border-radius: 10px;
            width: 450px;
            margin-left: 150px;  /* Added margin to push the form to the right */
            display: block;
            order: 1; /* Order 1 for desktop */
        }
        .form-container i{
            color: whitesmoke;
            font-weight: bold;
        }
        .form-group {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .form-group label {
            width: 100%;
        }

        input {
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #ccc;
        }
        select{
            font-weight: bold;
            position: relative;
            z-index: 9999; /* Makes sure the dropdown is above other content */
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #ccc;
        }
        select option{
            font-weight: bold;
        }

        .date-time {
            display: flex;
            gap: 10px;
            font-weight: bold;
        }

        .error-msg {
            color: red;
            font-size: 14px;
            display: none;
        }

        /* Booking Text */
        .booking-text {
            font-size: 32px;
            font-weight: bold;
            text-align: left;
        }

        /* Right Side: Text */
        .text-container {
            width: 50%;
            padding: 20px;
            margin-left: 300px; /* Space between form and text (increased) */
            display: block;
            order: 2; /* Order 2 for desktop */
        }

        .heading {
            font-family: nabla;
            color: #FFFFFF;
            font-size: 50px;
            font-weight: bold;
            margin-bottom: 20px; /* Added space between heading and points */
        }

        .subheading {
            font-family: nabla;
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
            color: orange;
        }

        .feature-list {
            font-family: Tilt Neon;
            list-style: none;
            padding-left: 0;
            color: #FFFFFF;
        }

        .feature-list li {
            font-size: 18px;
            margin-bottom: 10px;
            transition: opacity 0.5s ease-in-out
        }
        
        .feature-list li::before {
            content: "\2022"; /* Unicode for bullet point */
            color: #007BFF; /* Blue color for the dot */
            font-size: 30px;
            margin-right: 10px;
        }

        .search-btn {
            background-color: #007BFF;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-left: 85px;
            width: 190px;
        }

        .search-btn:hover {
            background-color: #0056b3;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section {
                flex-direction: column; /* Stack form and text vertically in mobile view */
                padding: 20px;
            }
            .form-group i{
                color: gray;
            }

            .form-container {
                width: 100%;
                margin-left: 0;
                order: 2; /* Order 2 for mobile view */
                margin-top: 14rem;
                color: black;
            }
            .section-heading{
                color: black;
                font-size: 1rem;
                text-align: center;
            }

            .text-container {
                margin-top: 6rem;
                width: 100%;
                margin-left: 0;
                text-align: center; /* Center the text container */
                order: 1; /* Order 1 for mobile view */
            }

            .heading {
                font-size: 40px; /* Reduce size for smaller screen */
                text-align: center; /* Center the heading */
            }

            .subheading {
                font-size: 30px; /* Reduce size for smaller screen */
                text-align: center; /* Center the subheading */
            }

            .feature-list {
                text-align: center; /* Center align the features list */
                padding: 0;
                
            }

            .feature-list li {
                font-size: 16px;
            }
        }
              /* Features Container */
              .features {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px; /* Space between features */
            margin-top: 30px;
            
            flex-wrap: wrap;
        }

        /* Individual Feature Box */
        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1 1 200px;
        }

        /* Icon Styling */
        .feature-item i {
            font-size: 36px;  /* Bigger icons */
            color: orangered; /* Blue color */
            
            margin-bottom: 10px; /* Space between icon and text */
        }

        /* Text Styling */
        .feature-item span {
            font-size: 16px;
            font-weight: 500;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            
            .features {
                margin-top: 650px;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
                justify-items: center;
            }
    }
        }
        @media (max-width: 480px) {
    .features {
        
        grid-template-columns: repeat(1, 1fr); /* Single column for small screens */
    }
}
.who-we-are {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0;  /* Adjust padding as needed */
}

/* Container for the Image and Text */
.who-we-are-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Style for the image */
.who-we-are-image {
    width: 30%;
    position: relative;
}

.who-we-are-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: static;  /* Ensures the image remains static */
}

/* Style for the text */
.who-we-are-text {
    width: 50%;
    opacity: 0;  /* Initially hide the text */
    transition: opacity 1.5s ease-in-out;  /* Smooth fade-in effect */
}

/* Text styles */
.who-we-are-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    
}

.who-we-are-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    
}

/* On Scroll, Fade-in the text */
.who-we-are-text.visible {
    opacity: 1;  /* Text becomes visible */
}

/* For Mobile View */
@media (max-width: 768px) {
    .who-we-are-container {
        flex-direction: column-reverse;  /* Swap image and text order */
    }

    .who-we-are-image, .who-we-are-text {
        padding: 10px; /* Equal space on left and right */
        width: 100%;  /* Ensure image and text take full width */
    }

    .who-we-are-text h2 {
        font-size: 2rem;  /* Adjust font size for smaller screens */
    }

    .who-we-are-text p {
        margin-bottom: 20px;
        font-size: 1rem;  /* Adjust paragraph font size for mobile */
        color: #666;
        text-align: justify;  /* Justify text for better readability */
        margin-right: 20px;
        line-height: 2.0;
        padding: 20px;
        
    }
}
/*Second text and image*/
.why-choose-us {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 60px 0;
            text-align: center;
        }

        .why-choose-us-container {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: nowrap;
            gap: 50px;
        }

        .why-choose-us-image {
            width: 50%;
            position: relative;
        }

        .why-choose-us-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            padding: 40px;
        }

        .why-choose-us-text {
            width: 50%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            text-align: left;
            margin-left: 100px;
        }

        .why-choose-us-text.visible {
            opacity: 1;
        }

        .why-choose-us-text h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .why-choose-us-text ul {
            list-style-type: none;
            padding: 0;
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .why-choose-us-text ul li {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .why-choose-us-text ul li i {
            color: #28a745;
            margin-right: 10px;
            font-size: 1.3rem;
        }

        /* MOBILE VIEW */
        @media (max-width: 768px) {
            .why-choose-us-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .why-choose-us-text{
                width: 90%;
                margin-left: 20px;
            }
            .why-choose-us-image {
                width: 90%;
            }
            .why-choose-us-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            padding: 10px;
        }

            .why-choose-us-text {
                text-align: center;
            }
            .why-choose-us-text h2{
                font-size: 30px;
                margin-right: 80px;
                
            }
            .why-choose-us-text ul {
                align-items: center;
                text-align: left;
            }
            .why-choose-us-text ul li{
                display: flex;
                align-items: center;
                margin-left: 40px;
                justify-content: flex-start; /* Ensures icons and text are aligned */
                width: 100%;
            }
        }
                  /* Cars Section */
         .cars-section {
            text-align: center;
            padding: 60px 0;
        }

        .cars-section h2 {
            color: grey;
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        .cars-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 0 10%;
            align-items: stretch; /* Make all grid items the same height */
        }

        .car-card {
            
            background: #fff;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, border 0.3s ease;
            border: 2px solid transparent;
        }

        .car-card:hover {
            transform: scale(1.05);
            border: 2px solid orange;
            width: auto;
        }

        .car-card img {
            height: 110px;
            width: 70%;
            object-fit: cover;
            border-radius: 10px;
        }

        .car-card h3 {
            margin: 10px 0;
            font-size: 1.5rem;
            color: #333;
        }

        .car-card a {
            display: inline-block;
            margin-top: 10px;
            color: black;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease, text-decoration 0.3s ease;
        }

        .car-card a:hover {
            color: olive;
            text-decoration: none;
        }
        .mobile-line {
            display: none;
        }
        

        /* Mobile View */
        @media (max-width: 768px) {
            .cars-section h2{
                font-size: 1.5rem;
            }
         
            .cars-container {
                grid-template-columns: 1fr; /* Stack cards vertically */
        padding: 0 5%;
            }
            .car-card img {
                width: 100%;              /* Fill container, no overflow */
        height: auto;             /* Adjust height naturally */
        max-height: 110px;        /* Optional: Limit height */
        object-fit: contain;      /* Show entire image without cropping */
        border-radius: 10px;
        display: block;
        margin: 0 auto;
            }
            .car-card {
                padding: 10px;
            }
        
            .car-card h3 {
                font-size: 1.2rem;
            }
        
            .car-card a {
                font-size: 0.95rem;
                color: olive;
            }
            .mobile-line {
                display: block;
                border: none;
                height: 2.5px;
                background-color: #ccc;
                margin: 10px auto;
                width: 80%;
            }
        }
        /*FAq*/
        .faq-container {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: row;
            padding: 20px;
            background: #f4f4f4;
            border-radius: 10px;
            max-width: 100%;
            margin: auto;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            gap: 20px;
        }
        .faq-image {
            width: 50%;
            max-width: 700px;
            transition: height 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .faq-content {
            width: 50%;
        }
        .faq-heading {
            font-size: 26px;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
            color: #333;
        }
        .faq-item {
            background: white;
            padding: 15px;
            margin: 10px 0;
            border-radius: 8px;
            cursor: pointer;
            width: 100%;
            border: 1px solid #ddd;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }
        .faq-item:hover {
            background: #f9f9f9;
        }
        .faq-question {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        .faq-answer {
            display: none;
            margin-top: 10px;
            font-size: 16px;
            color: #555;
            padding-top: 5px;
            border-top: 1px solid #ddd;
        }
        @media (max-width: 768px) {
            .faq-container {
                flex-direction: column;
                width: 100%;
                padding: 15px;
            }
            .faq-image {
                width: 100%;
            }
            .faq-content {
                width: 100%;
            }
            .faq-item{
                width: 90%
            }
        }
        /*Footer*/
        .footer {
            background-color: #222;
            color: #fff;
            padding: 30px 0;
            text-align: center;
        }
        .footer-top {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 20px;
        }
        .footer-top a{
            text-decoration: none;
        }
        .footer-top h2{
            font-size: 15px;
        }
        .footer-logo {
            width: 80px;
            height: auto;
        }
        .company-name {
            font-size: 22px;
            margin-top: 10px;
            color: #e9f5e9;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: auto;
        }
        .footer-section {
            width: 30%;
            margin-bottom: 20px;
        }
        .footer-section h3 {
            border-bottom: 2px solid #e9f5e9;
            display: inline-block;
            padding-bottom: 5px;
        }
        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
        }
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        .footer-section ul li {
            margin: 8px 0;
        }
        .footer-section ul li a {
            color: #e9f5e9;
            transition: 0.3s;
        }
        .footer-section ul li a:hover {
            color: #fff;
        }
        .fsocial-links {
            margin: 20px 0;
        }
        .fsocial-links a {
            color: #e9f5e9;
            font-size: 24px;
            margin: 0 10px;
            transition: 0.3s;
        }
        .fsocial-links a:hover {
            color: #fff;
        }
        .footer-bottom {
            background-color: #111;
            padding: 10px 0;
            font-size: 14px;
        }
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-section {
                width: 80%;
            }
        }