.travel-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 100%;
}

.travel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.travel-card:hover img {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.overlay h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.overlay p {
    margin: 0;
}

/* Proper Corner Ribbon */
.ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 180px;
    /* padding: 8px 0; */
    padding: 49px 23px 16px 14px;
    background: #cf3425;
    /* background: url("assets/my-images/booking-open.png"); */
    color: #fff;
    text-align: center;
    font-weight: 600;
    transform: rotate(45deg);
    top: -12px;
    /* top: 25px; */
    /* right: -45px; */
    right: -65px;
}


/* Container for the card to handle the overlapping image */
.tour-card-wrapper {
    position: relative;
    padding-left: 40px;
    /* Space for the overlapping image */
    margin-bottom: 0px;
    height: 100%;
}

/* The Main White Card */
.tour-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 50px 20px 50px 100px;
    /* Extra left padding to make room for image */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Image Wrapper to handle the zoom effect without breaking the border-radius */
.img-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 130px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    /* This crops the zooming image */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    /* Smooth zoom transition */
}

/* HOVER EFFECTS */
.tour-card-wrapper:hover .tour-image {
    transform: scale(1.2);
    /* Image zoom on hover */
}

.tour-card-wrapper:hover .tour-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Badge Style */
.badge-hot {
    background-color: #f1f1f1;
    color: #444;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

/* Typography */
.tour-title {
    font-size: 1.0rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.tour-duration {
    color: #D4483B;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-book {
    color: #D4483B;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: opacity 0.2s;
}

.btn-book:hover {
    opacity: 0.8;
    color: #007a8f;
}



/* holiday sections css start */
/* Left Content Styling */
.left-section {
    display: flex;
    align-items: center;
}

.promo-img {
    max-width: 180px;
    height: auto;
    margin-right: 20px;
    /* Slight overlap effect */
    z-index: 1;
}

.text-box {
    z-index: 2;
}

.explore-label {
    font-size: 26px;
    color: #444;
    margin-bottom: -5px;
    font-weight: 400;
}

.holidays-brand {
    font-size: 36px;
    font-weight: 700;
    color: #cf3425;
    line-height: 0.9;
    margin-bottom: 5px;
}

.theme-sub {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.curated-text {
    font-size: 14px;
    color: #777;
    max-width: 220px;
    line-height: 1.3;
}

/* Right Side Theme Cards */
.theme-card {
    text-align: center;
    margin-bottom: 30px;
}

.img-holder {
    width: 100%;
    height: 150px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.theme-card:hover img {
    transform: scale(1.1);
}

.theme-title {
    font-size: 26px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

/* Pill Tags Styling */
.tags-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}

.pill-tag {
    font-size: 13px;
    color: #444;
    padding: 3px 14px;
    border: 1px solid #cf3425;
    border-radius: 6px;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s;
}

.pill-tag:hover {
    background-color: #cf3425;
    color: #fff;
}

.view-all-btn {
    font-size: 15px;
    color: #555;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
}

.view-all-btn:hover {
    color: #cf3425;
    text-decoration: underline;
}

/* holiday sections css end */


/* Browse by Seasons start  */
.szn-main-container {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Header with Tabs */
.szn-header-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    border-bottom: 2px solid var(--szn-border);
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.szn-section-title {
    font-size: 32px;
    color: #333;
    margin: 0;
    white-space: nowrap;
}

.szn-section-title span {
    font-weight: 800;
}

/* Unique Tab Styling */
.szn-nav-pills {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.szn-tab-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    padding: 5px 0;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.szn-tab-btn.active {
    color: #CF3425;
}

.szn-tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #CF3425;
}

/* Left Side: Package List */
.szn-scroll-list {
    border: 1px solid var(--szn-border);
    border-radius: 12px;
    padding: 20px;
    max-height: 420px;
    overflow-y: auto;
    background: #fff;
}

.szn-package-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.2s;
    gap: 15px;
}

.szn-package-row:last-child {
    border-bottom: none;
}

.szn-pkg-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.szn-pkg-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.szn-pkg-text h4 {
    font-size: 18px;
    margin: 0;
    color: #222;
    font-weight: 600;
}

.szn-pkg-text p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.szn-price-tag {
    background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 160px;
}

.szn-price-tag span {
    display: block;
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
}

.szn-price-tag strong {
    font-size: 14px;
    color: #333;
}

/* Right Side: Destination Grid */
.szn-grid-card {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.szn-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.szn-grid-card:hover img {
    transform: scale(1.1);
}

.szn-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
}

.szn-card-overlay h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.szn-card-overlay span {
    font-size: 13px;
    opacity: 0.9;
}

/* Custom Scrollbar */
.szn-scroll-list::-webkit-scrollbar {
    width: 5px;
}

.szn-scroll-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

/* Browse by Seasons end */



/* slider css start  */
.hero-sld-wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
    /* Using viewport height for better responsiveness */
    min-height: 300px;
    max-height: 500px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.hero-sld-carousel,
.hero-sld-inner,
.hero-sld-item {
    height: 100%;
}

.hero-sld-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image covers the area without stretching */
    object-position: center;
}

/* Gradient Overlay */
.hero-sld-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15));
}

/* Navigation Arrows Styling */
.hero-sld-control {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: none;
}

.hero-sld-control:hover {
    background-color: var(--hero-sld-white);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.hero-sld-prev {
    left: 15px;
}

.hero-sld-next {
    right: 15px;
}

.hero-sld-icon {
    filter: invert(0.5);
    width: 18px;
    height: 18px;
}

/* Indicators / Dots */
.hero-sld-indicators {
    bottom: 15px;
}

.hero-sld-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.hero-sld-indicators .active {
    background-color: var(--hero-sld-cyan);
    width: 22px;
    border-radius: 10px;
}

/* slider css end  */



/* pop up form css start */
:root {
    --pop-primary: #CF3425;
    /* Your requested color */
    --pop-orange: #CF3425;
    --pop-text-dark: #333333;
    --pop-text-light: #666666;
}

/* Trigger Button Styling */
.pop-trigger-btn {
    background-color: var(--pop-primary);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.pop-trigger-btn:hover {
    transform: scale(1.05);
    background-color: #b52b1f;
}

/* Modal Custom Styling */
.pop-modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pop-container {
    display: flex;
    min-height: 500px;
}

/* Left Side: Features */
.pop-side-info {
    background-color: var(--pop-orange);
    color: black;
    padding: 40px;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.pop-side-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
}

.pop-feature-item {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Right Side: Form */
.pop-form-area {
    background-color: #ffffff;
    padding: 40px;
    width: 60%;
    position: relative;
}

.pop-close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.pop-form-area h2 {
    color: var(--pop-orange);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pop-form-area p {
    font-size: 14px;
    color: var(--pop-text-light);
    margin-bottom: 30px;
}

.pop-input-group {
    margin-bottom: 25px;
    position: relative;
}

.pop-input-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.pop-input-group input:focus {
    border-bottom: 2px solid var(--pop-primary);
}

.pop-submit-btn {
    width: 100%;
    background-color: var(--pop-primary);
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.pop-submit-btn:hover {
    background-color: #CF3425;
}

.pop-footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}

.pop-footer-text strong {
    display: block;
    color: #333;
    margin-bottom: 4px;
}

/* pop up form css end */


.my-header {
    background: white;
}




.hero-sld-wrapper {
    margin-top: 100px;
}


.hero-caption {
    bottom: 50%;
}

.hero-caption h2 {
    font-size: 48px;
    font-weight: 700;
}

.hero-caption p {
    font-size: 18px;
}




.hero-sld-item {
    position: relative;
}

/* Dark overlay on image */
.hero-sld-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* darkness control */
    z-index: 1;
}

/* caption above overlay */
.hero-caption {
    z-index: 2;
}

/* optional better text */
.hero-caption h1 {
    font-size: 40px;
    font-weight: 600;
    color: white;
}

.hero-caption p {
    font-size: 20px;
}




/* my about start  */
.about-section {
    background-color: #f5f5f5;
    /* background-color:#F3F6F9; */
}

.about-title {
    font-size: 42px;
    font-weight: 600;
    color: #555;
}

.about-text {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

.about-btn {
    background-color: #d4483b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
}

.about-btn:hover {
    background-color: #1f7f8c;
    color: #fff;
}

.about-img {
    max-width: 80%;
    background: #f5f5f5;
}

/* new about css end  */



/* Responsive Fix for mobile */
@media (max-width: 576px) {
    /* .tour-card-wrapper {
                padding-left: 0;
                padding-top: 80px;
            } */

    /* .img-container {
                left: 20px;
                top: 0;
                transform: translateY(0);
                width: 100%;
                height: 120px;
            } */

    /* .tour-card {
                padding: 60px 20px 20px 20px;
            } */


    .my-header {
        background: white;
    }


    .hero-sld-wrapper {
        margin-top: 50px;
    }


    .inner-ab-s {
        padding: 0px 13px;
    }

    .about-title {
        font-size: 28px;
    }


}




/* Responsive */
@media (max-width: 991px) {
    .left-section {
        flex-direction: column;
        text-align: center;
        margin-bottom: 50px;
    }

    .promo-img {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .curated-text {
        margin: 0 auto;
    }

    .holidays-brand {
        font-size: 55px;
    }
}



/* Browse by Seasons start  */
/* RESPONSIVE FIXES */
@media (max-width: 991px) {
    .szn-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .szn-nav-pills {
        gap: 15px;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 5px;
        white-space: nowrap;
    }

    .hero-sld-wrapper {
        min-height: 450px;
    }

    .hero-caption h1{
        font-size: 30px;
    }


    .header__hamburger .sidebar-menu{
        color: black;
    }

}

@media (max-width: 576px) {

    /* Package row fix for phone */
    .szn-package-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }

    .szn-pkg-meta {
        width: 100%;
    }

    .szn-price-tag {
        width: 100%;
        text-align: left;
        padding: 8px 15px;
        min-width: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .szn-price-tag span {
        display: inline;
        margin-right: 10px;
    }
}

/* Browse by Seasons end */


/* slider css start  */
/* Responsive adjustments for Mobile */
@media (max-width: 768px) {
    .hero-sld-wrapper {
        height: 40vh;
        /* Shorter height on tablets */
    }

    .hero-sld-control {
        width: 35px;
        height: 35px;
    }

    .hero-sld-prev {
        left: 10px;
    }

    .hero-sld-next {
        right: 10px;
    }

    .hero-caption {
        bottom: 10%;
    }

    .hero-caption h2 {
        font-size: 35px;
        color: white;
    }

}

@media (max-width: 480px) {
    .hero-sld-wrapper {
        height: 250px;
        /* Fixed height for small phones to maintain aspect ratio */
    }
}

/* slider css end */



/* pop up form  css */
/* Responsive Fixes */
@media (max-width: 768px) {
    .pop-container {
        flex-direction: column;
    }

    .pop-side-info,
    .pop-form-area {
        width: 100%;
        padding: 30px 20px;
    }

    .pop-side-info {
        min-height: auto;
    }

    .pop-side-info h3 {
        margin-bottom: 20px;
    }

    .pop-feature-item {
        margin-bottom: 15px;
        font-size: 14px;
    }
}

/* pop up form  css */