/* 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: 28px;
    color: #ff7e00;
}

/* Features */
.Details-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.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 */


/* '''''''''''''''''''''''''''''''''''''''''''''''''''''''Banner ''''''''''''''''' */
/* Banner Section */
.custom-banner-section {
    position: relative;
    height: 250px;
    color: white;
    display: flex;
    margin-top: 53px;
    width: 100%; /* keep full width */
    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-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background 0.5s ease;
}

.custom-banner-section:hover {
    background-size: 105%; /* subtle zoom on hover */
}

.banner-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.banner-content h1 {
    margin: 0;
    font-size: 2rem;
    z-index: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.banner-content p {
    margin-top: 10px;
    font-size: 1rem;
    z-index: 1;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .custom-banner-section {
        height: 150px; /* reduced height */
        margin-top: 66px;
        /* border: 2px solid red; */

    }

    .banner-content h1 {
        font-size: 1.4rem;
        padding: 0 10px;
    }

    .banner-content p {
        font-size: 0.8rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .custom-banner-section {
        height: 120px; /* smaller for mobile */
    }

    .banner-content h1 {
        font-size: 1.1rem;
    }

    .banner-content p {
        font-size: 0.7rem;
    }
}

/* Banner Section */
/* .custom-banner-section {
    position: relative;
    height: 250px; */
    
    /* color: white;
    display: flex;
    margin-top: 53px;
    left: -195px;
    width: 100%;
    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-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background 0.5s ease;
}

.custom-banner-section:hover {
    background-size: 100%;
    /* subtle zoom on hover */


/* .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----------------===---'''''''' */

/* Deals Section Styles */
.S-C-deals-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.S-C-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.S-C-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.S-C-section-header h2 span {
    color: #ff7e00;
}

.S-C-section-header p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* Filter Tabs */
.S-C-filter-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.S-C-filter-tab {
    padding: 12px 25px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.S-C-filter-tab:hover,
.S-C-filter-tab.active {
    color: #ff7e00;
}

.S-C-filter-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #ff7e00;
    transition: 0.3s;
}

/* Deals Slider */
.S-C-deals-slider-container {
    position: relative;
    margin-bottom: 40px;
}

.S-C-deals-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 30px;
    scrollbar-width: none;
}

.S-C-deals-slider::-webkit-scrollbar {
    display: none;
}

/* Deal Card */
.S-C-deal-card {
    min-width: 320px;
    max-width: 350px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.S-C-deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.S-C-deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff7e00;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.S-C-deal-image {
    height: 180px;
    overflow: hidden;
}

.S-C-deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.S-C-deal-card:hover .S-C-deal-image img {
    transform: scale(1.1);
}

.S-C-deal-content {
    padding: 20px;
}

.S-C-deal-content h3 {
    font-size: 20px;
    color: #00355f;
    margin-bottom: 10px;
}

.S-C-deal-content p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* Buttons */
.S-C-deal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.S-C-deal-buttons a {
    flex: 1;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.S-C-btn-view {
    background: #00355f;
    color: #fff;
}

.S-C-btn-view:hover {
    background: #ff7e00;
}

.S-C-btn-whatsapp {
    background: #25d366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.S-C-btn-whatsapp:hover {
    background: #1ebe57;
}

/* Slider Navigation */
.S-C-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.S-C-slider-prev,
.S-C-slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.S-C-slider-prev:hover,
.S-C-slider-next:hover {
    background: #ff7e00;
    color: #fff;
    border-color: #ff7e00;
}

.S-C-slider-dots {
    display: flex;
    gap: 6px;
}

.S-C-slider-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.S-C-slider-dot.active {
    background: #ff7e00;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .S-C-section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .S-C-section-header h2 {
        font-size: 28px;
    }

    .S-C-section-header p {
        font-size: 16px;
    }

    .S-C-deal-card {
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .S-C-section-header h2 {
        font-size: 24px;
    }

    .S-C-deal-card {
        min-width: 250px;
    }

    .S-C-deal-buttons {
        flex-direction: column;
    }
}


/* ]\\\\\\\\\\\\\ footer \\\\\\\\\\\\\/.................................... */

/* Footer Main */
.About-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 20px;
}

.footer-logo img {
    width: 119%;
    margin-left: -51px;
    margin-top: -17px;
}

.About-back-to-top:hover {
    transform: translateY(-5px);
    background-color: #e67200;
    /* Darker orange on hover */
}

.About-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media(max-width: 576px) {
    .About-back-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }

    .footer-logo img {
        width: 87%;
        margin-left: -15px;
        margin-top: -17px;
    }
}

.travel-footer {
    background-color: #00355F;
    color: #fff;
    padding: 60px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
    max-width: 1150px;
    margin: auto;
}

/* About */
.footer-about h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.footer-about p {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ffcc00;
    transform: scale(1.2);
}

/* Links */
.footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

/* Contact */
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-contact p {
    font-size: 14px;
    margin: 5px 0;
}

.footer-contact i {
    margin-right: 8px;
    color: #ffcc00;
}

/* Subscribe */
.footer-subscribe {
    display: flex;
    margin: 15px 0;
}

.footer-subscribe input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.footer-subscribe button {
    padding: 10px 1px;
    background: #ff7e00;
    border: none;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: 0.3s;
}

.footer-subscribe button:hover {
    background: #e67300;
}

/* Payment Logos */
.footer-payments img {
    height: 25px;
    margin: 5px;
    background: #fff;
    padding: 3px 6px;
    border-radius: 4px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 30px;
    font-size: 14px;
    color: #ddd;
}

/* @media (max-width: 768px) {

     .travel-footer {
         width: 113%;
     }
 } */




 
