/* General Styles */
:root {
    --primary-color: #002651;  /* Dark Blue */
    --secondary-color: #febd00; /* Gold/Yellow */
    --text-color: #333;
    --light-gray: #f5f5f5;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.primary-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.secondary-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.primary-button:hover, .secondary-button:hover {
    opacity: 0.8;
}

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px; /* Adjust as needed */
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-list li {
    margin-left: 25px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--secondary-color);
}

.book-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 2px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.book-button:hover {
    background-color: #001a38;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('hero.jpg') center/cover no-repeat; /* Replace hero.jpg */
    color: #fff;
    text-align: center;
    padding: 150px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: #fff;
}

.about-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Fleet Section */
.fleet {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.fleet h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.fleet .container > p {
    text-align: center;
    margin-bottom: 60px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.fleet-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.fleet-card img {
    border-radius: 10px;
    margin-bottom: 20px;
    height: 200px; /*adjust image height*/
    object-fit: cover;
}

.fleet-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact .container > p {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: inherit;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 15px;
    }

    .nav {
        width: 100%;
        display: none; /* Hide nav by default on small screens */
    }

    .nav.active {
        display: block; /* Show nav when active class is applied */
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-list li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .about-us .container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1; /* Place image above text on small screens */
    }

    .hero {
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .fleet h2, .services h2, .contact h2 {
        font-size: 2rem;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .social-icons {
        margin-top: 15px;
    }
	.video-container {
		padding: 80px 0;
		background-color: var(--light-gray);
        text-align: center;
        }

/* Existing styles from the previous example */

/* Booking Section Styling (Basic) */
.booking {
    padding: 40px 0;
}

.booking h2 {
    text-align: center;
    margin-bottom: 30px;
}

.booking form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.booking .form-group {
    margin-bottom: 15px;
}

.booking label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.booking input[type="date"],
.booking input[type="time"],
.booking select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Important! */
    font-size: 1rem;
    font-family: inherit;
}

.booking .button {
    display: block; /* Make button full-width */
    width: 50%;
    text-align: center;
    padding: 6px;
}

}
