/* common.css */
/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-size: 100% auto; /* Ensures width fits and height scales automatically */
    background-position: top center;
    background-repeat: no-repeat;
    color: #333; /* Default text color, can be overridden */
}

.contentbody {
    background: none;
}

/* Header styles */
header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}
.logo {
    width: 120px; /* Set the desired width for the logo */
    height: 60px; /* Set a specific height for the logo */
    background-size: contain; /* Ensure the logo fits within the div */
    background-repeat: no-repeat; /* Prevent the background from repeating */
    margin-right: 20px; /* Space between logo and nav */
}

/* Ensure the anchor tag covers the whole logo area */
.logo a {
    display: block; /* Make the anchor a block element */
    width: 100%; /* Full width of the logo div */
    height: 100%; /* Full height of the logo div */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    font-size: 16px;
}
.select{
    border-radius: 5px;
    padding: 5px;
    border: 0px;
    margin-left: 95%;
    position:absolute;
    top: 10px;
}
.booking_select{
    border-radius: 5px;
    padding: 4px;
    border: 0px;
    margin-left: 70%;
    position: absolute;
    top: 30px;
    font-size: 13px;
}
/* Hero section styles */
.hero {
    padding: 80px 20px;
    text-align: center;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 40px;
    font-weight: lighter;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

.ride-booking {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 400px;
}

input {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 300px;
    font-size: 16px;
}

/* Style for the Hero Section */
.hero-inner {
    display: flex; /* Flexbox for alignment */
    justify-content: center; /* Center horizontally */
    align-items: flex-start; /* Align items at the top */
    height: 650px;
    text-align: center; /* Center text */
    padding-top: 50px;
}

/* Style for the Hero Content */
.hero-content-inner {
    margin-top: 20px; /* Space from the top */
}


.buttonstyle {
    background-color: #28a745;
    color: white; /* Set button text color to white */
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    width: 200px;
    height: 50px;
    font-size: 16px;
    cursor: pointer;
}

.car-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 0;
    opacity: 0.8;
}

/* Our Services Section */
.services {
    text-align: center;
    padding: 80px 20px;
    padding-top: 150px;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.services p {
    font-size: 18px;
    margin-bottom: 50px;
}

.vehicles {
    display: flex;
    justify-content: center;
    gap: 60px;    
}

.vehicle {
    text-align: center;
    width: 200px;
    padding: 20px;
    padding-bottom: 0px;
    border-radius: 10px;
}

.vehicle img {
    width: 100%;
    border-radius: 10px;
}

.vehicle h3 {
    margin-top: 20px;
    font-size: 20px;
}

.vehicle p {
    margin-top: 5px;
    font-size: 16px;
}

/* Download our Apps Section */
.download-apps {
    text-align: center;
    padding: 80px 20px;
}

.download-apps h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.download-apps p {
    font-size: 18px;
    margin-bottom: 40px;
}

.app-buttons img {
    margin: 20px;
    cursor: pointer;
    height: 50px;
    background-color: white;
    padding: 5px;
    border-radius: 10px;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 12px;
}

.footer-links a {
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
}

.footer-links {
    padding: 50px;
}

/* New styles for the About Us section */
.about-us {
    padding: 150px; /* Padding for the section */
    text-align: center; /* Center text alignment */
}

.about-us h2 {
    font-size: 36px; /* Heading size */
    margin-bottom: 20px; /* Spacing below the heading */
    margin-top: 50px;
    font-weight: lighter;
}

.about-us p {
    font-size: 18px; /* Paragraph size */
}
