/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
}

/* Container */
.Details-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Breadcrumb */
.Details-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
}

.Details-breadcrumb a {
    color: #00355F;
    text-decoration: none;
}

.Details-breadcrumb span {
    color: #ff7e00;
    font-weight: 600;
}

/* Flex Layout */
.Details-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 24px;
    gap: 30px;
}

/* Gallery */
.Details-gallery {
    flex: 1;
}

.Details-main-image {
    border-radius: 8px;
    overflow: hidden;
}

.Details-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.4s;
}

.Details-main-image:hover img {
    transform: scale(1.05);
}

.Details-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.Details-thumb {
    width: 80px;
    height: 60px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.Details-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Details-thumb.active {
    border-color: #ff7e00;
}

/* Info */
.Details-info {
    flex: 1;
}

.Details-title {
    font-size: 32px;
    color: #00355F;
}

.Details-subtitle {
    color: #777;
    margin: 10px 0;
}

.Details-price {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #f0f8ff;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* .Details-price-amount {
    font-size: 20px;
    color: #ff7e00;
} */

/* Features */
.Details-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0;
    background-color: #777;
}

/* .Details-feature {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
} */

.Details-feature:hover {
    transform: translateY(-4px);
    background: #ff7e00;
    color: #fff;
}

/* Amenities */
.Details-amenities ul {
    list-style: none;
}

.Details-amenities li {
    margin: 8px 0;
    color: #555;
}

.Details-amenities i {
    color: #ff7e00;
    margin-right: 6px;
}

/* Buttons */
.Details-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.Details-btn-book,
.Details-btn-enquire {
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.Details-btn-book {
    background: #ff7e00;
    color: #fff;
}

.Details-btn-book:hover {
    background: #e66a00;
}

.Details-btn-enquire {
    border: 2px solid #00355F;
    color: #00355F;
}

.Details-btn-enquire:hover {
    background: #00355F;
    color: #fff;
}

/* Tabs */
.Details-tabs {
    margin-top: 30px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.Details-tab-header {
    display: flex;
    background: #00355F;
}

.Details-tab {
    flex: 1;
    padding: 12px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.Details-tab.active {
    background: #ff7e00;
}

.Details-tab-content {
    display: none;
    padding: 20px;
    animation: fade 0.5s;
}

.Details-tab-content.active {
    display: block;
}

/* FAQ */
.Details-faq {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    cursor: pointer;
}

.Details-faq-answer {
    display: none;
    padding: 5px 0;
    color: #555;
}

/* Animations */
@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width:768px) {
    .Details-flex {
        flex-direction: column;
        margin-left: -8px;
        margin-top: 21px;
    }

    .Details-main-image img {
        height: 250px;
    }
}

/* '''''''''''''''''Boook form' */

.Details-btn-book {
    background: #ff7e00 !important;
    color: #fff !important;
    border: none;
}

.Details-btn-book:hover {
    background: #e66a00 !important;
}

.modal-header {
    background-color: #00355F;
    color: #fff;
}

.btn-primary {
    background-color: #ff7e00;
    border: none;
}

.btn-primary:hover {
    background-color: #e66a00;
}

/* ''''''''''''''''''''''''==========-NAvbar ----------------------------------------- */

/* Reset and Base */
.Navbar-header * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.Navbar-header body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
.Navbar-header {
    background-color: #fff;
    color: #262121;
    padding: 4px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.Navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.Navbar-logo img {
    height: 67px;
}

/* Menu */
.Navbar-main-menu {
    display: flex;
    list-style: none;
}

.Navbar-main-menu li {
    margin: 0 15px;
}

.Navbar-main-menu a {
    position: relative;
    padding: 5px 0;
    font-weight: 500;
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.Navbar-main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #146fb9;
    transition: width 0.3s ease;
}

.Navbar-main-menu a:hover::after,
.Navbar-main-menu a.Navbar-active::after {
    width: 100%;
}

/* Right Section */
.Navbar-right {
    display: flex;
    align-items: center;
}

.Navbar-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.Navbar-btn-outline {
    background-color: #e6b800;
    color: #333;
    border: 2px solid #e6b800;
}

.Navbar-btn-outline:hover {
    background-color: #2d113d;
    color: #fff;
    border: 2px solid #2d113d;
}

/* Mobile Toggle */
.Navbar-mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .Navbar-main-menu {
        display: none;
        flex-direction: column;
        background-color: #2d113d;
        position: absolute;
        top: 48px;
        left: 165px;
        width: 51%;
        text-align: center;
        padding: 15px 0;
        z-index: 999;
    }

    .Navbar-main-menu.show {
        display: flex;
    }

    .Navbar-main-menu li {
        margin: 12px 0;
    }

    .Navbar-right {
        display: none;
    }

    .Navbar-mobile-toggle {
        display: block;
    }

    .Navbar-logo img {
        height: 45px;
        max-width: 150px;
    }

    .Navbar-main-menu a {
        /* position: relative; */
        /* padding: 5px 0; */
        /* font-weight: 500; */
        /* text-decoration: none; */
        color: #fff9f9;
        transition: color 0.3s ease;
    }

    .Navbar-main-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #5ecb1b;
        transition: width 0.3s ease;
    }
}

/* '''''''''''''''''''''''''''''''''''''''''''''''''''''''Banner ''''''''''''''''' */
/* Banner Section */
.custom-banner-section {
    position: relative;
    height: 250px;
    /* kam height */
    color: white;
    display: flex;
    margin-top: 53px;
    left: -195px;
    width: 125%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background: linear-gradient(135deg, rgba(45, 17, 61, 0.7), rgba(255, 165, 0, 0.7)),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1950&q=80'); */
    /* background-image: url('/static/img/Banner_1.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* transition: background 0.5s ease; */
}



.banner-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-nav {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 2;
}

.banner-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    position: relative;
    transition: all 0.3s ease;
}

.banner-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: orange;
    transition: 0.3s;
    transform: translateX(-50%);
}

.banner-link:hover::after,
.banner-link.active::after {
    width: 100%;
}

.banner-content h1 {
    margin: 0;
    font-size: 2rem;
    z-index: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-nav {
        gap: 10px;
    }

    .banner-content h1 {
        font-size: 20px;
        padding: 0 10px;
    }

    .banner-content p {
        font-size: 11px;
        padding: 10px 10px;
    }

    .custom-banner-section {
        height: 121px;
        margin-top: 36px;
        left: -20px;
        width: 112%;
    }
}

/* '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''Service -details ''''''''' */
/* Service Details Section */
.Seri_detialss-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.Seri_detialss-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
}

.Seri_detialss-left {
    flex: 1 1 45%;
    position: relative;
}

.Seri_detialss-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.Seri_detialss-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.Seri_detialss-right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Seri_detialss-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d113d;
}

.Seri_detialss-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.Seri_detialss-subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ff6600;
}

.Seri_detialss-list {
    list-style: disc;
    padding-left: 28px;
}

.Seri_detialss-list li {
    margin-bottom: 10px;
}

.Seri_detialss-package {
    margin-top: 30px;
}

.Seri_detialss-btn {
    padding: 12px 30px;
    background: #2d113d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.Seri_detialss-btn:hover {
    background: orange;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .Seri_detialss-container {
        flex-direction: column;
    }

    .Seri_detialss-left,
    .Seri_detialss-right {
        flex: 1 1 100%;
    }

    .Seri_detialss-img {
        height: 300px;
    }

    .Seri_detialss-list {
        padding-left: 0px;
    }
}

@media (max-width: 576px) {
    .Seri_detialss-title {
        font-size: 1.5rem;
    }

    .Seri_detialss-paragraph {
        font-size: 0.95rem;
    }

    .Seri_detialss-btn {
        width: 100%;
        text-align: center;
    }
}

/* '''''''''''''''''''''''''''''''''''''''''''''''''''''packagee''''''''''''' */
/* Section */

.package-details-section {
    padding: 60px 20px;
    background: #f8f8f8;
}

.package-details-header {
    text-align: center;
    margin-top: -39px;
    padding: 27px;
}

/* Card */
.package-details-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.package-details-card:hover {
    transform: translateY(-10px);
}

/* Card Image */
.package-details-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-details-card:hover .package-details-img {
    transform: scale(1.1);
}

/* Overlay */
.package-details-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

/* Title */
.package-details-title {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Buttons */
.package-details-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.package-details-buttons a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-details-btn-details {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.package-details-btn-details:hover {
    background: #fff;
    color: #333;
}

.package-details-btn-book {
    background: #ff7e00;
    color: #fff;
}

.package-details-btn-book:hover {
    background: #e56b00;
}

/* Swiper Navigation */
.package-details-swiper-button-next,
.package-details-swiper-button-prev {
    color: #00355f;
    font-weight: bold;
}

/* Pagination */
.package-details-swiper-pagination .swiper-pagination-bullet {
    background: #ff7e00;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    .package-details-card img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .package-details-card img {
        height: 200px;
    }

    .package-details-title {
        font-size: 18px;
    }

    .package-details-buttons a {
        padding: 8px;
        font-size: 0.9rem;
    }
}

/* ''''''''''''''''''''''''[[[[[[[[[[[[[[[[[[  Serivecss Pagee]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]'''''''''''''''''''''''''''''''''''''''''''''''''''''''' */

/* ''''''''''-----------offer----------------===---'''''''' */



/* ]\\\\\\\\\\\\\ footer \\\\\\\\\\\\\/.................................... */

.responsive-img-box {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .responsive-img {
            width: 100%;
            height: auto;
            max-height: 100%;
            object-fit: cover;
            /* makes image fill neatly */
        }

        .contact-promo-bar {
            background-color: #fdb913;
            /* yellow background */
        }