/* General Styles */
body {
    font-family:  sans-serif;
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
.navbar {
    background: #072142;
    padding: 10px 0;
}

.navbar-brand {
    color: white !important;
    font-weight: bold;
    font-size: 22px;
}

.navbar-toggler {
    background-color: white;
}

.nav-link {
    color: white !important;
    font-size: 16px;
    padding: 10px 15px;
    transition: 0.3s ease-in-out;
}

.nav-link:hover {
    color: #ff9800 !important;
}

.no-marker {
    list-style: none;
}

/* Mega Menu Styling */
.nav-item {
    position: relative;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    background: white;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
}

.nav-item:hover .mega-menu {
    display: flex;
}

.menu-column {
    padding: 15px;
    flex: 1;
}

.mega-menu h5 {
    color: #072142;
    font-size: 18px;
    margin-bottom: 10px;
}

.mega-menu ul {
    list-style: none;
    padding: 0;
}

.mega-menu ul li a {
    text-decoration: none;
    color: #333;
    padding: 5px 0;
    display: block;
    font-size: 15px;
    transition: all 0.3s;
}

.mega-menu ul li a:hover {
    color: #ff9800;
    padding-left: 5px;
}

/* Hero Section */
.hero {
    background: url('img/flyer-banner.jpg') no-repeat center center/cover;
    /* padding: 370px 0 280px;
    position: relative;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover; */
    height: 90vh;
     display: flex; 
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero .btn {
    font-size: 18px;
    padding: 10px 25px;
    border-radius: 5px;
}

/* Request Quote for Travel with us Section Start Here */

.Iqt3 {
    color: #fff;
    background: #b41111;
    font-weight: 600 !important;
    cursor: pointer;
    padding: 8px 16px !important;
    border-radius: 2px !important;
    line-height: 16px !important;
    text-align: center;

}

.content-text {

    color: #6e6e88;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin: 0;

}

/* Styling the Travel with us Facts Section */
.interesting-facts-business-class h2 {
    font-size: 28px;
    font-weight: bold;
    color: #072142;
}

/* Table Styling */
.table {
    border-collapse: collapse;
    width: 100%;
}

.table th,
.table td {
    padding: 12px;
    text-align: center;
    font-size: 16px;
}

.table-bordered {
    border: 2px solid #072142;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f2f2f2;
}

.table thead {
    background: #072142;
    color: white;
}

@media (max-width: 768px) {

    .table th,
    .table td {
        font-size: 14px;
        padding: 8px;
    }
}

/* Newsletter Section */
#subscribe {
    background: url('https://source.unsplash.com/1600x900/?travel,airplane') no-repeat center center/cover;
    color: #fff;
    padding: 60px 0;
}

#subscribe h2 {
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#subscribe p {
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

#subscribe .form-control {
    border-radius: 30px;
    padding: 12px;
    border: none;
}

#subscribe .btn-primary {
    border-radius: 30px;
    padding: 12px 20px;
    font-weight: bold;
    background: #ff6f61;
    border: none;
}

#subscribe .btn-primary:hover {
    background: #e63946;
}

/*About-Us-Section-Banner*/

.section-main-bg {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3) 101.02%), url(img/aircraft.webp);
}

.banner-section .banner-section-content {
    height: 300px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 40%);
    text-align: center;
    color: #fff;
}

/* Get in touch*/
.btn.btn-outline-white {
    border: 2px solid #ffffff;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 30px;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #072142;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}


footer {
    font-size: 14px;
}

footer h5 {
    font-weight: bold;
}

footer a {
    transition: 0.3s;
}

footer a:hover {
    text-decoration: underline;
    color: #fbc02d;
    /* Highlight color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .mega-menu {
        flex-direction: column;
        width: 90%;
        left: 5%;
        transform: none;
    }
}