/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff; /* Light background for the header */
    padding: 20px; /* Add padding for spacing */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.logo img {
    max-width: 200px; /* Ensure logo is responsive */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333; /* Darker text for better contrast */
    padding: 10px 15px; /* Add padding to links */
    font-weight: bold;
}

nav ul li a.active {
    color: #d9002f;
}

.quote-btn {
    padding: 10px 20px;
    background: #d9002f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
/* Hero Section Styles */
.hero2 {
    position: relative; /* Keep position relative for absolute children */
    background: url('airline2.jpg') no-repeat center center/cover; /* Background image */
    text-align: center;
    color: white;
    padding: 60px 0;
}

.hero2-overlay {
    position: absolute; /* Position absolute to cover the entire banner */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1; /* Ensure it sits above the background but below text */
}

.hero2-text-box {
    position: relative; /* Position relative to sit above the overlay */
    z-index: 2; /* Ensure text is above the overlay */
    padding: 20px; /* Padding around the text */
    border-radius: 10px; /* Rounded corners */
    display: inline-block; /* Make the box fit the content */
    text-align: center; /* Center the text */
}
.hero2 h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero2 p {
    font-size: 1.5em;
}

/* Why Choose Us Section Styles */
.service-content {
    flex: 1; /* Allow text to take remaining space */
    padding: 20px; /* Padding for text */
    text-align: left; /* Left align text */
}

.service-content h3 {
    font-size: 32px; /* Increase heading size */
    font-weight: bold; /* Bold headings */
    color: #000; /* Dark text for readability */
    margin-bottom: 15px; /* Space below heading */
}

.service-content p {
    font-size: 20px; /* Increase paragraph size */
    color: #333; /* Darker text for better readability */
    line-height: 1.6; /* Improve readability */
    margin-bottom: 15px; /* Space below paragraph */
}

.service-content ul {
    padding-left: 20px; /* Indent bullet points */
    margin-top: 10px; /* Space above bullet points */
}

.service-content li {
    margin: 5px 0; /* Space between list items */
    font-size: 18px; /* Increase bullet points size */
}
.service-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff; /* White background for service boxes */
    padding: 30px; /* Consistent padding */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    gap: 20px; /* Ensures spacing between text and image */
}

.service-box img {
    width: 600px; /* Fixed width for images */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    object-fit: cover; /* Ensures image scales properly */
}

/* Destinations Grid Styles */
.destinations {
    padding: 50px 0;
    text-align: center;
}

.destinations h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.destinations .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.destination-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.destination-card button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin: 10px 0;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.destination-card button:hover {
    background-color: #0056b3;
}

footer {
    background: #222;
    color: white;
    padding: 50px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo img {
    width: 200px;
    margin-bottom: 20px;
    margin-right: 40px;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
    margin: 10px;
    min-width: 280px;
    text-align: left;
}

.footer-about h2,
.footer-links h2,
.footer-contact h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 8px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #ffcc00;
}

.footer-contact p {
    font-size: 14px;
    margin: 8px 0;
}

.footer-contact a {
    color: #ffcc00;
    font-weight: bold;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.7;
}