body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

h1, h3 {
    display: block !important;
    margin-block-start: 1em !important;
    margin-block-end: 1em !important;
    margin-inline-start: 0px !important;
    margin-inline-end: 0px !important;
}


header {
    width: 100%;
    height: 59px;
    background-color: #2A2B30;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5em 1em;
    padding-left: 5px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
}

.logo img {
    max-height: 50px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    height: 27px;
    padding: 16px;
    cursor: pointer;
    background-color: #636363;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #D9D9D9;
    border-radius: 2px;
}

/* Navigation menu hidden by default on mobile */
.navigation {
    display: flex;
    align-items: center;
    z-index: 9999;
}

.navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;

}

.navigation ul li {
    margin-left: 20px;
    font-size: 16px;
}

.navigation ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500; /* Medium weight for links */
    color: #333;
    padding: 8px 12px;
    border-radius: 4px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s;
}

.navigation ul li a:hover {
    background-color: #f0f0f0; /* Light gray on hover */
    color: #007bff; /* Blue text on hover */
}

@media (max-width: 768px) {
    .navigation {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navigation ul {
        flex-direction: column;
        width: 100%;
    }

    .navigation ul li {
        margin: 10px 0;
    }

    .navigation ul li a {
        text-align: center; /* Center the text */
        display: block; /* Ensure full-width clickable area */
        padding: 12px 0; /* Adjust vertical padding for touch devices */
        width: 100%; /* Full width */
        border-radius: 0; /* Remove rounded corners for full-width links */
    }

    .hamburger-menu {
        display: flex;
    }
}

/* Toggle Navigation Visibility */
.nav-open .navigation {
    display: flex;
}

.nav-open .hamburger-menu span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 29px; /* Position for X shape */
}

.nav-open .hamburger-menu span:nth-child(2) {
    opacity: 0; /* Hide the middle bar */
}

.nav-open .hamburger-menu span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 29px; /* Position for X shape */
}

/* Smooth transition for the bars */
.hamburger-menu span {
    transition: all 0.3s ease;
}

/* 
main */

main {
    margin-top: -28px;
}

#landing {
    background-image: url("./assets/landing.jpg");
    background-size: cover; /* Ensure the image covers the entire section */
    background-position: center center; /* Center the image */
    height: 600px;
    position: relative;
}

.landing {
    margin: 8px;
    margin-left: 3px;
}


#landing::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1; /* Ensure the overlay is above the background but below the text */
}

.landing {
    position: relative;
    z-index: 99;
}

.landing h1 {
    color: #FFFFFF;
    padding-top: 10px;
    padding-left: 14px;
    font-size: 2.2em;

}

#fleet {
    text-align: center;
    margin-top: 100px;
}

#fleet h2 {
    margin-bottom: 30px;
}

#fleet h2 {
    margin-bottom: 30px;
}

.vehicle-card {
    border: 1px solid #A29D9D;
    border-radius: 4px;
    width: 332px;
    margin: 20px auto;
    padding: 20px;
}

.vehicle-icons ul {
    display: flex; /* Display the list items in a row */
    list-style: none; /* Remove the default list bullet points */
    padding: 0;
    margin: 0;
    justify-content: space-between; /* Space out the items evenly */
}

.vehicle-icons ul li {
    display: flex; /* Align the icon and text side by side */
    align-items: center; /* Vertically align the icon and text */
    margin-right: 20px; /* Space between the items */
}

.vehicle-icons ul li p {
    margin-left: 8px; /* Space between the icon and the text */
    font-size: 12px; /* Adjust font size */
}

.passenger-icon, .suitcase-icon, .hand-carry-icon {
    width: 13px; /* Size of the icon */
    height: 20px;
}

/* Optional: Style the icons (You can replace the background with actual icons or images) */
.passenger-icon {
    background-image: url('./assets/user-solid.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.suitcase-icon {
    background-image: url('./assets/suitcase-rolling-solid.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.hand-carry-icon {
    background-image: url('./assets/bag-shopping-solid.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.vehicle-cta {
	background-color:#474952;
	border-radius:28px;
	border:1px solid #474952;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:15px;
	padding:10px 41px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
    margin-top: 30px;
}
.vehicle-cta:hover {
	background-color:#474952;
}
.vehicle-cta:active {
	position:relative;
	top:1px;
}

#our-services {
    text-align: center;
    margin-top: 60px;
}

.service-card {
    border: 1px solid #A29D9D;
    border-radius: 4px;
    width: 332px;
    margin: 30px auto;
}

.service-info {
    padding: 16px;
}

#faq {
    text-align: center;
    margin-bottom: 50px;
}

.faq-container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
}

.faq {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
}

.faq .question:hover {
    background-color: #ececec;
}

.faq .question p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.faq .arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-45deg); /* Point right */
    transition: transform 0.3s ease;
}

.faq .answer {
    display: none; /* Initially hidden */
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
}

.faq.open .answer {
    display: block; /* Show when the FAQ is open */
}

.faq.open .arrow {
    transform: rotate(45deg); /* Rotate the arrow when expanded */
}

footer {
    background-color: #2A2B30;
    color: #fff;
    padding-bottom: 10px;
}

.footer {
    margin: 15px;
}

.footer-heading {
    padding-top: 16px;
    position: relative; /* Establish a positioning context for the ::after pseudo-element */
    display: inline-block; /* Ensure the heading content width is respected */
}

.footer-heading::after {
    content: ''; /* Necessary for pseudo-elements */
    position: absolute;
    bottom: -14px; /* Adjust to position the border below the text */
    left: 0; /* Start the border from the left */
    width: 20%; /* Border extends halfway across the heading */
    border-bottom: 2px solid #fff; /* Adjust thickness and color of the border */
}

.footer p {
    padding-top: 5px;
    padding-bottom: 10px;
}

.footer-contact-info {
    list-style: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
    margin-bottom: 48px;
}

.footer-contact-info li {
    display: flex; /* Use flexbox for aligning text and icons */
    align-items: center;
    margin-bottom: 10px; /* Add spacing between list items */
    font-size: 16px; /* Adjust text size */
}

.footer-contact-info li span {
    display: inline-block;
    width: 20px; /* Set width for the icon area */
    height: 20px; /* Set height for the icon area */
    margin-right: 10px; /* Add space between the icon and text */
    background-size: contain; /* Ensure the icon fits the area */
    background-repeat: no-repeat;
}

.phone-icon {
    background-image: url('./assets/phone-icon.svg'); /* Replace with actual icon path */
}

.email-icon {
    background-image: url('./assets/email-icon.svg'); /* Replace with actual icon path */
}

.location-icon {
    background-image: url('./assets/location-icon.svg'); /* Replace with actual icon path */
}
.social-media ul {
    display: flex;
}

.social-media ul li span {
    width: 40px;
    height: 40px;
}

.facebook-icon {
    background-image: url('./assets/Facebook_Logo_Secondary.png'); /* Replace with actual icon path */
    background-size: 40px !important;
}

.insta-icon {
    background-image: url('./assets/Instagram_Glyph_White.png'); /* Replace with actual icon path */
    background-size: 40px !important;
}

.footer-logo {
    margin-top: 36px;
    margin-bottom: 46px;
    margin-left: -9px;
}

.copyright {
    text-align: center;
}


/* desktop media queries */

@media (min-width: 768px) {
    /* Styles for tablets and larger screens */

    .navigation ul a {
        color: white !important;
    }

    .navigation ul a:hover {
        color: black !important;
    }


    .vehicle-card-container {
        display: flex;
    }

    .vehicle-card {
        width: 25%;
    }

    .vehicle-card-container ul {
        display: block;
    }

    .vehicle-icons {
        width: 114px;
        margin: 0 auto;
    }

    .service-card-container {
        display: flex;
    }

    .service-card {
        width: 30%;
    }

    .faq-container {
        max-width: 900px;
        width: 100%;
    }

    h1 {
        text-align: center;
    }

}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto;
    margin-top: 20px;
}

.contact-form-container,
.contact-details-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    padding-right: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    height: 100%;
}

/* Contact Form Styling */
.contact-form-container {
    flex: 2;
    min-width: 300px;
}

.contact-form-container h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.contact-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form-container button {
    background-color: #636363;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.contact-form-container button:hover {
    background-color: #0056b3;
}

/* Contact Details Box Styling */
.contact-details-box {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.contact-details-box h2 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.contact-details-box p {
    margin: 10px 0;
    font-size: 14px;
    color: #555;
}

.contact-details-box strong {
    color: #000;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

#landing iframe {
    margin-top: 0;
}

iframe {
    margin-top: 50px;
    margin-bottom: 40px;
}

#notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffcc00;
    color: #333;
    text-align: center;
    padding: 12px;
    padding-right: 0px;
    padding-left: 5px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Add a pulse animation to draw attention */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.highlight {
    animation: pulse 1s infinite;
}

