/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color:#fecb0c;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background-color:#ffa600;
    color:black;
}

.containers{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

h1, h2, h3 {
    color: black;
}

/* Header */
header {
    background-color: black;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header h1 {
    color: #fff;
    display: inline;
}

nav ul {
    list-style: none;
    float: right;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Book a Trip Button */
.book-trip-btn {
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 20px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background-image: url('https://americajosh.com/wp-content/uploads/2017/07/How-to-find-something-you-left-in-a-New-York-taxi.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h2 {
    font-size: 48px;
}

.hero .btn {
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.service-item {
    background-color: #ffa600;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact input, .contact textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}
img{
    width:100%;
}

/* Desktop menu */
.desktop-menu {
    display: block;
}

/* Mobile menu */
.mobile-menu {
    display: none;
}

/* Accordion block container */
.accordion-block {
    background-color: #f4f4f4;
    border-radius: 5px;
    padding: 1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Accordion button for mobile */
.accordion {
    background-color: black;
    color: white;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 1px;
}

/* Accordion panel (hidden by default) */
.panel {
    display: none;
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
}

/* Make the list items (li) in the mobile menu go down in a line */
.mobile-menu .panel ul {
    list-style-type: none;  /* Remove bullet points */
    padding: 0;
    margin: 0;
}

.mobile-menu .panel li {
    display: block;  /* Stack the list items vertically */
    margin-bottom: 1px; /* Add some space between the list items */
}

/* Show mobile menu on small screens */
@media screen and (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
}

