/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7fc;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header Mega Menu */
.navbar {
    background: #003580;
    padding: 15px 30px;
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffcc00 !important;
}

.dropdown-menu {
    background: #003580;
    border: none;
}

.dropdown-item {
    color: #fff !important;
}

.dropdown-item:hover {
    background: #ffcc00;
    color: #003580 !important;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background: url('img/LANDING-PAGE-DESIGN-BANNER.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-section h1 {
    font-size: 48px;
    animation: fadeInDown 1s;
}

.hero-section p {
    font-size: 18px;
    animation: fadeInUp 1s;
}

.hero-section .btn {
    background: #ffcc00;
    color: #003580;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    animation: fadeInUp 1.2s;
}

.hero-section .btn:hover {
    background: #ff9900;
}


.search-section {
    position: relative;
    top: -91px;
}

/* Popular Destinations */
.destinations h2 {
    text-align: center;
    margin-bottom: 20px;
}

.destination-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.destination-item:hover {
    transform: scale(1.05);
}

.destination-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-item h3 {
    padding: 15px;
    font-size: 20px;
}

/* Top Deals */
.deal-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 15px;
    overflow: hidden;
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.deal-card img {
    height: 200px;
    object-fit: cover;
}

.deal-card .card-body {
    text-align: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000;
    border-radius: 50%;
    padding: 10px;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.faq-item .btn {
    margin-top: 10px;
}

#faq h2 {
    font-weight: bold;
    color: #333;
}

.accordion-button {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #007bff;
    color: #fff;
}

.accordion-body {
    font-size: 16px;
    color: #555;
}

/* 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;
}

/* 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;
}

/* Discount Ribbon */

.flag_discount_ribbon {
    position: relative;
    text-transform: uppercase;
    color: #fff;
}

.flag_discount_ribbon .ribbon__ {
    position: absolute;
    top: -0.1px;
    right: 10px;
}


.flag_discount_ribbon .ribbon__ span {
    position: relative;
    display: block;
    text-align: center;
    background: #124483;
    font-size: 14px;
    line-height: 1;
    padding: 12px 8px 10px;
    border-top-right-radius: 1px;
    width: 90px;
}
.flag_discount_ribbon .ribbon__::after, .offer-show-main .offer-show::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 46px solid transparent;
    border-right: 46px solid transparent;
    border-top: 10px solid #124483;
}
/* Contact Us Page*/

.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;
}

/* Privacy Policy*/

.section-title {
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.section-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #1A374D;
}

/* Footer */
.footer {
    background: #001f3f;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer {
    font-size: 14px;
}

footer h5 {
    font-weight: bold;
}

footer a {
    transition: 0.3s;
}

footer a:hover {
    text-decoration: underline;
    color: #fbc02d;
    /* Highlight color */
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}