* {
    margin: 0px;
    padding: 0px;
}

/* imp css start */
.btn {
    background-color: #006A71;
    border-color: #006A71;
    color: #fff;
}

.btn:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.text-primary {
    color: #0436a5 !important;
}

/* imp css end */


/* header start */
.navbar-nav .nav-link {
    transition: all 0.3s ease;
}

.navbar {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    background: #ffffff;
}

.navbar-nav .nav-link:hover {
    color: #0077b6;
    transform: scale(1.05);
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: #ffffff;
    border: var(--bs-border-width) solid rgb(255 255 255 / 0%);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

/* header end  */


/* === Flight flight-banner start == */
.flight-banner {
    margin-top: 65px;
}

.flight-banner {
    background: #006A71;
    background-image: url(../images/flight_banner1.jpg);
    width: 100%;
    height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
}

.flight-banner .flight_engine {
    background: rgba(255, 255, 255, 0.25); 
    margin-top: 200px;
    backdrop-filter: blur(4px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
    /* overflow: hidden; */
}

.flight-banner .flight_engine::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: inherit; /* mirror the content */
    transform: scaleY(-1);
    opacity: 0.15;
    filter: blur(8px);
    pointer-events: none;
}

.flight-banner .search-box {
    margin-top: 10px;
    background-color: rgb(255 255 255 / 35%);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* === Flight flight-banner end === */


/* cruise-destination start */
.cruise-destination {
    background: #f7f9fb;
    padding: 40px 0;
}

.cruise-destination .item {
    background: #006A71;
    border-radius: 10px;
    /* padding: 40px 20px; */
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.cruise-destination .owl-nav button {
    background: #006A71 !important;
    color: white !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 5px;
}

.cruise-destination .owl-nav button:hover {
    background: #000 !important;
}

/* cruise-destination end */



/* featured-destinations start */
.featured-destinations .destination-card .card {
    height: 280px;
    transition: transform 0.3s ease;
}

.featured-destinations .destination-card .card:hover {
    transform: scale(1.03);
}

.featured-destinations .destination-card .card-img {
    object-fit: cover;
    height: 100%;
    transition: transform 0.4s ease;
}

.featured-destinations .destination-card:hover .card-img {
    transform: scale(1.05);
}

.featured-destinations .destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: white;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.featured-destinations .price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffc107;
    color: #000;
    padding: 6px 12px;
    font-weight: 600;
    border-radius: 30px;
    font-size: 0.875rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* featured-destinations end */

/* why-book-section start */
.why-book-section .card-box {
    transition: all 0.3s ease;
    background-color: #fff;
}

.why-book-section .card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.why-book-section .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
/* why-book-section end */



/* footer section start */
footer {
    background-color: whitesmoke;
    color: #000;
}

footer ul {
    list-style: none;
    padding-left: 0px;
    line-height: 35px;
}

footer a {
    font-weight: 500;
    color: #000000;
    text-decoration: none;
}

footer a:hover {
    color: #0436a5;
}

/* footer section end */

/* .navbar-nav .bg-menu {
    padding: 0px 10px;
    border-radius: 20px;
    background: #a6dbeb;
} */