/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #00bfa6; /* Turquoise color for navbar */
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ccc;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin-bottom: 4px;
    border-radius: 5px;
}

/* Show the hamburger menu on mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #00bfa6;
        flex-direction: column;
        width: 200px;
        padding: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding: 20px;
    text-align: center;
    color: #ffffff;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('img/car-rental.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.2;
    color: #ffffff;
    word-wrap: break-word;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Search Box */
.search-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 20px auto 0;
    position: relative;
    z-index: 3;
}

.search-box .form-group {
    margin-bottom: 15px;
}

.search-box label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.search-box input[type="text"],
.search-box input[type="date"],
.search-box input[type="time"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    background-color: #ffffff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-box input[type="text"]:focus,
.search-box input[type="date"]:focus,
.search-box input[type="time"]:focus {
    border-color: #27ae60;
    box-shadow: 0 0 5px rgba(39, 174, 96, 0.5);
    outline: none;
}

.search-button {
    padding: 14px 20px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

.search-button:hover {
    background-color: #2ecc71;
}

/* About Our Services Section */
.content {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.text-area h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.text-area p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.logos-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0; /* Center the section with margins on top and bottom */
    width: 100%; /* Full width for the section */
}

.logos-container {
    width: 100%; /* Full width for the container */
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
}

.logos-container img {
    max-width: 100%; /* Ensure the image scales down on smaller screens */
    width: 500px; /* Set the desired image width */
    height: auto; /* Maintain aspect ratio */
}


/* Contact Us Page */
.contact-us {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.contact-details h2, .contact-form-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-details p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-form-section {
    margin-top: 40px;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #27ae60;
    box-shadow: 0 0 5px rgba(39, 174, 96, 0.5);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-group label {
    font-size: 14px;
    color: #555;
}

.checkbox-group a {
    color: #27ae60;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-button {
    padding: 14px 20px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #2ecc71;
    transform: translateY(-2px);
}

.submit-button:active {
    background-color: #27ae60;
    transform: translateY(0);
}

/* Footer Styles */
footer {
    background-color: #f1f1f1;
    color: #000000;
    padding: 60px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

.footer-column p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #333333;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form input[type="email"] {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #ffffff;
    color: #000000;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: #27ae60;
    box-shadow: 0 0 5px rgba(39, 174, 96, 0.5);
    outline: none;
}

.newsletter-form button {
    padding: 14px 20px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.newsletter-form button:hover {
    background-color: #2ecc71;
    transform: translateY(-2px);
}

.newsletter-form button:active {
    background-color: #27ae60;
    transform: translateY(0);
}

.social-icons {
    display: flex;
}

.social-icons li {
    margin-right: 15px;
}

.social-icons li a img {
    width: 24px;
    height: 24px;
    filter: none;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #cccccc;
}

.footer-bottom p {
    font-size: 16px;
    color: #000000;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    .search-box {
        margin-top: 20px;
    }

    .content {
        padding-top: 80px;
        margin-top: 40px;
    }

    .text-area h2 {
        font-size: 28px;
    }

    .text-area p {
        font-size: 16px;
    }
}



.contact-form-section {
    margin-top: 40px;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.contact-form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #27ae60;
    box-shadow: 0 0 5px rgba(39, 174, 96, 0.5);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    padding: 14px 20px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #2ecc71;
    transform: translateY(-2px);
}

.submit-button:active {
    background-color: #27ae60;
    transform: translateY(0);
}