* {
    margin: 0px;
    padding: 0px;
}


/* imp css start */

.btn {
    background-color: #FF7601;
    border-color: #FF7601;
    color: #fff;
}

    .btn:hover {
        background-color: #000;
        border-color: #000;
        color: #fff;
    }

.text-primary {
    color: #FF7601 !important;
}

/* imp css end */


/* header start */
.navbar-nav .nav-link {
    transition: all 0.3s ease;
}

.navbar {
    background: #1B3C53;
}

.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  */

/* === home-banner start == */
.home-banner {
    margin-top: 65px;
}

.home-banner {
    background-image: url('../images/home-banner4.jpg');
    width: 100%;
    height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
}

    .home-banner .search-box {
        background-color: #000000a3;
    }

/* === home-banner end === */


/* === hero-banner start == */
.hero-banner {
    margin-top: 65px;
}

.hero-banner {
    background-image: url('../images/home-banner1.jpg');
    width: 100%;
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
}

/* === hero-banner end === */



/* === privacy-banner start == */
.privacy-banner {
    margin-top: 65px;
}

.privacy-banner {
    background-image: url('../images/privacy-banner.png');
    width: 100%;
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
}
/* === privacy-banner end === */




/* advantage section start */
.cruise-perks .perk-box {
    padding: 25px;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

    .cruise-perks .perk-box:hover {
        background: #f0f8ff;
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(13, 110, 253, 0.1);
    }

.cruise-perks .perk-icon i {
    color: #0d6efd;
}

/* advantage section end  */


/* top-destination start */
.top-destination .destination-card {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .top-destination .destination-card:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .top-destination .destination-card img {
        height: 100%;
        object-fit: cover;
        transition: opacity 0.3s ease-in-out;
    }

.top-destination .destination-label {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    border-radius: 4px;
    text-transform: uppercase;
}

/* top-destination start */


/* cruise slider start */
.cruise-content .post-slide5 {
    margin: 0 15px;
    transition: all .4s ease-in-out 0s;
    box-shadow: 0 1px 2px rgba(43, 59, 93, .3);
    margin-bottom: 2em;
    background: #fff;
}

    .cruise-content .post-slide5 .post-img {
        position: relative;
        overflow: hidden;
    }

        .cruise-content .post-slide5 .post-img:before {
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background: rgba(0, 0, 0, 0);
            transition: all .4s linear 0s;
        }

    .cruise-content .post-slide5:hover .post-img:before {
        background: rgba(0, 0, 0, .6);
    }

    .cruise-content .post-slide5 .post-img img {
        width: 100%;
        height: auto;
    }

    .cruise-content .post-slide5 .category {
        width: 50%;
        font-size: 16px;
        color: #fff;
        text-align: center;
        padding: 11px 0;
        background: #ff9412;
        position: absolute;
        bottom: 0;
        left: -50%;
        transition: all .5s ease-in-out 0s;
    }

    .cruise-content .post-slide5:hover .category {
        left: 0;
    }

    .cruise-content .post-slide5 .post-review {
        padding: 25px 20px;
    }

    .cruise-content .post-slide5 .post-title a {
        display: inline-block;
        font-size: 16px;
        color: #ff9412;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .cruise-content .post-slide5 .post-description {
        font-size: 15px;
        color: #555;
        line-height: 26px;
    }

.cruise-content .post-review .post-bar {
    margin-top: 20px;
}

.cruise-content .post-bar span {
    display: inline-block;
    font-size: 14px;
}

.cruise-content .post-review .cruise-logo {
    width: 100px;
}

/* cruise slider end */




/* footer section start */
footer {
    background-color: #1B3C53;
    color: White;
}

    footer ul {
        list-style: none;
        padding-left: 0px;
        line-height: 35px;
    }

    footer a {
        color: white;
        text-decoration: none;
    }

        footer a:hover {
            color: #FF7601;
        }

/* footer section end */


/* about-us section start */
.about-us {
    margin: 100px 0px;
}

/* about-us section end */


/* contact section start */
.contact-us {
    margin: 100px 0px;
}

    .contact-us .contact-card {
        box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
        padding: 20px;
        height: 100%;
    }

.contact-form form {
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    padding: 20px;
}

.contact-img {
    width: 100%;
}

/* contact section end */


/* cruise-result start */
.cruise-result {
    margin: 100px 0px;
}

    .cruise-result .card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    }

    .cruise-result .content h5 {
        color: #333;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .cruise-result .content p {
        font-size: 14px;
        color: #555;
    }

    .cruise-result .info-icon {
        color: #0d6efd;
        margin-right: 8px;
    }

    .cruise-result .priceBox h5 {
        color: #dc3545;
        font-weight: 700;
        font-size: 22px;
    }

    .cruise-result .btn {
        width: 100%;
        font-size: 14px;
        border-radius: 30px;
    }

    .cruise-result .multiplePrices table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 15px;
    }

    .cruise-result .multiplePrices th,
    .cruise-result .multiplePrices td {
        padding: 12px;
        font-size: 14px;
        vertical-align: middle;
    }

    .cruise-result .multiplePrices th {
        background-color: #f5faff;
        font-weight: 600;
        color: #444;
        text-transform: uppercase;
        border: 1px solid #dee2e6;
    }

    .cruise-result .para p {
        margin: 10px 0px;
    }

    .cruise-result .multiplePrices td {
        background-color: #ffffff;
        border: 1px solid #dee2e6;
        font-weight: 500;
        color: #212529;
    }

    /* Image Handling */
    .cruise-result .imgWrapper img {
        border-radius: 8px;
        object-fit: cover;
        height: 100%;
    }

.object-fit-cover {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.cruise-result_detail .slider-section .carousel-inner {
    height: 350px;
    overflow: hidden;
}

.cruise-result_detail .slider-section .carousel-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
}

.cruise-result_detail {
    margin: 100px 0px;
}

    .cruise-result_detail .room-select .room-option {
        display: inline-block;
        margin-right: 10px;
        cursor: pointer;
    }

    .cruise-result_detail .room-select {
        display: flex;
        overflow-x: scroll;
    }

    .cruise-result_detail .room-box {
        background: #f8f9fa;
        border: 1px solid #ddd;
        padding: 12px 18px;
        text-align: center;
        border-radius: 8px;
        transition: 0.3s ease;
        width: 150px;
    }

        .cruise-result_detail .room-box:hover {
            background: #e9ecef;
            border-color: #bbb;
        }

    .cruise-result_detail .room-type {
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }

.room-price {
    color: #000;
    font-size: 16px;
}

.cruise-result_detail .nav-pills .nav-link {
    border-radius: 30px;
    background: #f0f0f0;
    color: #333;
    margin-right: 8px;
    padding: 6px 16px;
    transition: all 0.3s;
}

    .cruise-result_detail .nav-pills .nav-link.active {
        background-color: #ff9f43;
        color: white;
    }

.cruise-result_detail .card-modern {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
}

.cruise-result_detail .itinerayDetails .itinerary ul {
    list-style: none;
    padding-left: 0px;
}

.cruise-result_detail .card-modern h5 {
    font-weight: 700;
    font-size: 18px;
}

.cruise-result_detail .info-img-wrapper img {
    max-width: 100px;
    margin-bottom: 10px;
}

.cruise-result_detail .toggle-btn-modern {
    color: #007bff;
    cursor: pointer;
    font-weight: 500;
    display: block;
    margin-top: 10px;
}

.cruise-result_detail .accordion .card {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
}

.cruise-result_detail .accordion .card-header {
    background-color: #f8f9fa;
    padding: 12px 20px;
    cursor: pointer;
}

.cruise-result_detail .accordion .btn-link {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    text-align: left;
}

.cruise-result_detail .accordion .card-body {
    padding: 16px 20px;
}

.cruise-result_detail .itinerayDetails .content {
    background: #fff;
    padding: 16px;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

    .cruise-result_detail .itinerayDetails .content h3 {
        font-size: 18px;
        font-weight: 700;
        margin-top: 10px;
    }

.cruise-result_detail .itinerary ul li {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.cruise-result_detail .itinerary h6 {
    font-size: 14px;
    font-weight: 600;
    color: #ff9f43;
    margin-bottom: 5px;
}

.cruise-result_detail .itinerary h5 {
    font-size: 16px;
    font-weight: 600;
    /* color: #ff9f43; */
    margin-bottom: 5px;
}

.cruise-result_detail .headingText {
    font-weight: bolder;
}

.cruise-result_detail .show-more-btn {
    font-size: 14px;
    font-weight: 600;
    color: #ff9f43;
    border: none;
    background: none;
}

/* Responsive Touches */
@media (max-width: 768px) {
    .cruise-result .priceBox {
        text-align: center;
        padding-top: 20px;
    }

    .cruise-result .btn {
        margin-bottom: 10px;
    }

    .contact-img {
        width: 100%;
    }

    .home-banner {
        background-image: url(../images/home-banner4.jpg);
        width: 100%;
        height: 650px;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .flight-banner {
        /* background: #FF8343; */
        background-image: url(../images/flight/flight_banner2.jpg);
        width: 100%;
        height: 630px !important;
        background-size: cover;
        background-repeat: no-repeat;
        /* background: #a6d6e5cf; */
    }

    .hero-banner {
        background-image: url(../images/home-banner1.jpg);
        width: 100%;
        height: 125px;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .privacy-banner {
        background-image: url(../images/privacy-banner.png);
        width: 100%;
        height: 125px;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

/* cruise-result end */
.res-detail {
    margin: 115px 0px 100px 0px;
}
.hotel-hero-section {
    background-image: url(../images/hotel/hotel_banner_2.jpg);
    width: 100%;
    height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.flight-banner {
    /* background: #FF8343; */
    background-image: url(../images/flight/flight_banner2.jpg);
    width: 100%;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    /* background: #a6d6e5cf; */
}
    .flight-banner .flight_engine {
        background: #ffff;
        margin-top: 75px;
        background: rgb(255 255 255 / 59%);
        -webkit-backdrop-filter: blur(10px);
    }