﻿/*Created for Tsum Manaslu v2*/

/* ==========================================================================
   Accommodation Cards & "Show More" Logic
   ========================================================================== */
.accommodation-card {
    border: 1px solid #313131;
    padding: 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .accommodation-card:hover {
        transform: translateY(-5px);
    }

.title-link {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .title-link:hover {
        color: #8b2631;
    }

.card-image img {
    margin-bottom: 25px;
    width: 100%;
    height: auto;
}

.accommodation-title {
    font-size: 32px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.2;
}

.accommodation-text {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.text-full .learn-more-link {
    display: inline-flex;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
}

.toggle-text-btn {
    background: #8b2631;
    color: #fff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    transition: all 0.3s ease;
    vertical-align: middle;
 
    padding: 2px;
}

    .toggle-text-btn.active {
        background: #313131;
        transform: none;
     
    }

.text-full {
    transition: all 0.3s ease;
}

.learn-more-link {
    color: #8b2631;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

    .learn-more-link:hover {
        color: #000;
    }

/* ==========================================================================
   Footer & Navigation
   ========================================================================== */
.my-new-footer {
    color: #000000;
    background-color: #fcf7f7;
}

    .my-new-footer .copyright-area {
        background: transparent;
    }

    .my-new-footer .footer-title {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 25px;
        color: #000000;
    }

    .my-new-footer .footer-links {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
    }

        .my-new-footer .footer-links li {
            margin-bottom: 12px;
        }

            .my-new-footer .footer-links li a {
                color: #000000;
                text-decoration: none;
                transition: color 0.3s ease;
                font-size: 15px;
                display: inline-block;
            }

    .my-new-footer .social-icons-list {
        display: flex;
        gap: 25px;
        list-style: none;
        padding: 0;
        margin-bottom: 40px;
    }

        .my-new-footer .social-icons-list i {
            font-size: 28px;
            color: #8b2631;
        }

    .my-new-footer .footer-widget .social-icons-list li a {
        text-decoration: none !important;
    }

.navbar-button.default-btn {
    margin-right: 22px;
    background: #443d3a;
    color: white;
    border: 0px;
}

/* ==========================================================================
   Section Separators
   ========================================================================== */
.golden-section, .golden-section-2, .green-section, .green-section-2, .white-section-2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.golden-section, .green-section {
    height: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.golden-section-2, .green-section-2 {
    height: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.white-section-2 {
    height: 30px;
    background: #ffffff;
}

.golden-section, .golden-section-2 {
    background: #caa747;
}

.green-section, .green-section-2 {
    background: #5fa57f;
}

/* ==========================================================================
   About Us & Testimonials
   ========================================================================== */
.branding-item h5, .featured-title-overlay h3, .testimonial-text a {
    color: white !important;
}
    .testimonial-text a:hover {
        color: #caa747 !important;
    }



.test-card.testimonial-card-wrapper {
    border: 1px solid #333;
    background: #fff;
    max-width: 360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

    .test-card.testimonial-card-wrapper:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.test-card .testimonial-image {
    display: block;
    padding: 20px 20px 0 20px;
    overflow: hidden;
}

    .test-card .testimonial-image img {
        transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1);
    }

.test-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.what-our-travelers-say-single-item {
    background-color: #A62A21;
    color: white !important;
    padding: 25px 20px;
    margin-top: -1px;
}

    .what-our-travelers-say-single-item h3 {
        font-family: "Josefin Sans", sans-serif;
        font-size: 2.0rem;
        font-weight: 700;
        color: white !important;
        margin-bottom: 10px;
        text-align: center;
    }

    .what-our-travelers-say-single-item .testimonial-text p {
        color: rgba(255, 255, 255, 0.95);
        font-size: 0.9rem;
        line-height: 1.5;
    }

/* ==========================================================================
   Branding Anatomy Section
   ========================================================================== */
.branding-anatomy-area {
    background-color: #a72015;
    color: #ffffff;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.branding-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-main {
    width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.branding-col {
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

    .branding-col.right-col {
        gap: 250px;
    }

.left-col {
    text-align: right;
}

.right-col {
    text-align: left;
}

.item-manaslu {
    margin-top: -30px;
    position: relative;
}

.item-jewels {
    margin-right: 50px;
    transform: translateY(140px);
}

.item-frames {
    margin-top: -50px;
    margin-left: -30px;
}

.item-trekker {
    margin-bottom: -40px;
    margin-left: 20px;
}

/* ==========================================================================
   Package Cards & Sliders
   ========================================================================== */
.minimal-package-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* background: #000;*/
}

.image-container {
    display: block;
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}



/* 1. The wrapper for the gradient overlay */
.featured-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.85));
    z-index: 10;
    pointer-events: none;
}

/* 2. The white border box */
.featured-tours-inner-border {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid #ffffff;
    pointer-events: none;
    z-index: 11;
    box-sizing: border-box;
    /* Remove the old flex properties from here */
    display: block;
}

    /* 3. NEW: A dedicated container for the text pinned to the bottom of the border */
    .featured-tours-inner-border h3 {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        /* 1. Define a fixed height for the text block */
        /* This forces the "starting line" to be identical on all cards */
        height: 65px;
        /* 2. Align text from the top of this fixed box down */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* 3. Padding to keep it perfectly spaced from the bottom white line */
        padding: 0 15px 20px 15px;
        margin: 0;
        /* Typography details */
        color: #ffffff;
        font-family: 'Georgia', serif;
        font-size: 1.35rem;
        font-weight: 600;
        line-height: 1.3;
        text-align: center;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
        box-sizing: border-box;
        /* Force 2-line limit so 3 lines don't overflow the fixed height */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

/* ==========================================================================
   Media Queries (Mobile)
   ========================================================================== */
@media (max-width: 991px) {
    .branding-anatomy-area {
        padding: 60px 0;
    }

    .branding-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .branding-col {
        display: contents;
    }

    .item-jewels {
        order: 1;
        margin-bottom: 20px !important;
    }

    .branding-logo-wrapper {
        order: 2;
        margin-bottom: 30px;
    }

    .item-manaslu {
        order: 4;
    }

    .item-frames {
        order: 3;
    }

    .item-trekker {
        order: 5;
    }

    .branding-item {
        margin: 0 !important;
        transform: none !important;
        text-align: center !important;
        margin-bottom: 25px !important;
    }
    

    .logo-main {
        width: 180px !important;
    }
}



@media (max-width: 767px) {
    .my-new-footer {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }

        .my-new-footer .footer-title {
            font-size: 22px;
        }

        .my-new-footer .social-icons-list {
            justify-content: left;
        }

        .my-new-footer .mt-120 {
            margin-top: 40px !important;
            justify-content: left !important;
        }
}

/* YouTube Custom Tweak */
.ytm-custom-control .player-controls-middle.delhi-player .player-control-play-pause-icon.icon-button {
    display: none !important;
}
/* ==========================================================================
   Our TEAM Section - Refined
   ========================================================================== */
.tmt-team-title {
    color: #a72015;
}

/* Container styling */
.tmt-team {
    margin-top: 30px;
}

    /* Header Styling */
    .tmt-team .member-name {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: #000;
    }

    .tmt-team .member-position {
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 20px;
    }

    /* Image Styling */
    .tmt-team .member-img img {
        width: 100%;
        max-width: 350px; /* Adjust based on your preference */
        height: auto;
        display: block;
        margin: 0 auto;
        /* Remove any border-radius if you want the sharp square look */
        border-radius: 0;
    }

    /* Remove any default 'guides-single-item' styling that might interfere */
    .tmt-team .team-item-container {
        padding: 15px;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    /* Clean up hover effects */
    .tmt-team .member-img a {
        display: block;
        overflow: hidden;
    }

    .tmt-team .member-img img {
        transition: opacity 0.3s ease;
    }

        .tmt-team .member-img img:hover {
            opacity: 0.9;
        }

/* ==========================================================================
   Our Values Section - Refined
   ========================================================================== */
.tsm-values-area {
   
    overflow: hidden;
}

.tmt p {
    font-size: 20px; /* Slightly smaller for better class */
    color: #000;
}

.tsm-values-area .main-title {
    color: #a72015;
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 10px;
}
.values-nav {
    display: flex;
    flex-wrap: nowrap; /* Prevents tabs from stacking on mobile */
    overflow-x: auto; /* Allows horizontal scrolling */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Optional: hides scrollbar on Firefox */
}

    .values-nav::-webkit-scrollbar {
        display: none; /* Optional: hides scrollbar on Chrome/Safari */
    }

/* Ensure the arrow is clickable */
.next-btn {
    cursor: pointer;
    z-index: 10;
}
/* Tab Navigation */
.values-nav {
    border: none;
    justify-content: flex-start;
    margin-bottom: 0;
    position: relative;
    z-index: 5;
    padding-left: 50px;
    padding-top: 30px;
}

    .values-nav .nav-link {
        border: none !important;
        background: transparent !important;
        color: #a72015;
        font-size: 18px;
        font-weight: 600;
        padding: 15px 0;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding-right: 30px;
    }

        .values-nav .nav-link.active {
            color: #fff !important;
            opacity: 1;
        }

/* The 70% Gold Wrapper */
.values-wrapper {
    background: linear-gradient(to right, #caa747 70%, transparent 70%);
    padding-bottom: 30px;
    position: relative;
    margin-top: 20px;
}

/* Align text column with the Nav */
.value-text {
    padding-left: 50px;
}

    .value-text p {
        color: #fff;
        font-size: 24px;
        line-height: 1.5;
        font-weight: 400;
        max-width: 80%;
    }

.value-img {
    position: relative;
    z-index: 2;
    margin-right: -80px; /* Slightly less aggressive offset */
}

    .value-img img {
        width: 80%;
        height: auto;
    }

/* ==========================================================================
   Mobile & Tablet Optimization (The "Top Notch" Fix)
   ========================================================================== */
@media (max-width: 991px) {
    .tsm-values-area .main-title {
        font-size: 36px;
    }

    .tmt p {
        font-size: 18px;
    }

    /* Make the nav feel like a premium slider */
    .values-nav {
        display: flex; /* Ensure it stays in a line */
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 20px;
        gap: 30px;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 0;
        width: 100vw;
        margin-left: 0;
        margin-right: 0;
    }

        /* This ensures the last item has enough space */
        .values-nav .nav-item:last-child {
            padding-right: 20px;
        }

        .values-nav::-webkit-scrollbar {
            display: none;
        }

        .values-nav .nav-link {
            font-size: 14px;
            color: #a72015 !important; /* Keep red so it's readable on white */
            padding: 10px 0;
        }

            .values-nav .nav-link.active {
                opacity: 1;
                border-bottom: 2px solid #a72015 !important;
            }

    .values-wrapper {
        background: #caa747;
        padding: 40px 0;
        margin-top: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .value-text {
        padding: 0 20px;
        text-align: center;
    }

        .value-text p {
            font-size: 18px;
            max-width: 100%;
            padding-top: 25px;
        }

    .value-img {
        margin: 30px 20px 0 20px;
        z-index: 1;
    }

        .value-img img {
            width: 100%;
            height: auto;
        }
}

/* ==========================================================================
   TSM About Section (Himalaya Three Jewels)
   ========================================================================== */
.tsm-about-section .main-title {
    font-size: 64px;
    color: #a72015; /* Your signature deep red */
    font-weight: 500;
    margin-bottom: 0;
}

.about-subtitle {
    font-size: 48px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-description p {
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
    text-align: justify;
}

/* The Gold Offset Image Style */
.about-img-wrapper {
    position: relative;
    padding: 0 0 40px 40px; /* Space for the gold shape to peak out */
}

    .about-img-wrapper .about-img {
        position: relative;
        z-index: 2;
    }

        .about-img-wrapper .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }

    .about-img-wrapper .gold-shape {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80%; /* Adjust width of the gold box */
        height: 80%; /* Adjust height of the gold box */
        background-color: #caa747; /* Your signature gold */
        z-index: 1;
    }

/* Responsive Tweaks */
@media (max-width: 991px) {
    .tsm-about-section .main-title {
        font-size: 42px;
    }

    .about-subtitle {
        font-size: 32px;
    }

    .about-img-wrapper {
        padding: 0 0 20px 20px;
        margin-top: 40px;
    }
}

/* --- Package Header & Slider Section --- */
.tmt-itinerary-h1 {
    color: #a72015;
    font-size: 2.5rem;
    font-family: serif;
    margin-top: 10px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.overview-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.overview-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #000;
}

.package-slider-container {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.destination-slide,
.swiper-wrapper,
.swiper-slide,
.destination-details-item {
    height: 100%;
}

    .destination-details-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.default-slide-controller {
    position: absolute;
    z-index: 10;
    top: -45px;
    right: 0;
    width: 80%;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}
.new-slide-controller {
    position: absolute;
    z-index: 10;
    top: -45px;
    right: 0;
    width: 80%;
    display: flex;
    justify-content: flex-end;
   
}




.arrow-head {
    width: 10px;
    height: 10px;
    border-top: 4px solid #797676;
    border-right: 4px solid #797676;
    transform: rotate(45deg);
    margin-left: -10px;
    flex-shrink: 0;
}



.package-basic-details,
.package-basic-details span {
    color: #a72015 !important;
}

/* --- Itinerary Accordion Section --- */
.tmt-itinerary-title {
    font-family: serif;
    font-size: 4.2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
}

.tmt-itinerary .accordion-item {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #333 !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}

.tmt-itinerary .accordion-button {
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 10px 0 !important;
    color: #000 !important;
    font-family: serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tmt-itinerary .day-header-text {
    font-size: 1.3rem;
    font-weight: 600;
}

.tmt-itinerary .accordion-button::after {
    content: "";
    background-image: url('/assets/images/buddhist-icon-b.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat;
    width: 45px !important;
    height: 45px !important;
    transition: transform 0.3s ease;
    opacity: 1 !important;
}

.tmt-itinerary .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
}

.tmt-itinerary .itinerary-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    margin: 15px 0;
    color: #000;
}

.tmt-itinerary .itinerary-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
}

/* --- Green Info Slider Section --- */
.tour-green-section {
    background-color: #70a282;
    overflow: hidden;
}

.green-slider-nav {
    width: 100%;
    height: 40px;
}

.nav-accent-line {
    width: 120px;
    height: 2px;
    background-color: rgb(255, 255, 255);
    margin-right: 300px;
}

.green-slider-next {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    cursor: pointer;
}

.nav-main-line {
    width: 68%;
    height: 2px;
    background-color: white;
}

.green-slider-next svg {
    width: 30px;
    height: 30px;
    margin-left: -6px;
}

.tour-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 19px;
    font-weight: 500;
    font-size: 1.1rem;
}

    .tour-list li::before {
        content: "\2022";
        position: absolute;
        left: 0;
        color: white;
        font-size: 1.5rem;
        line-height: 1;
        top: -2px;
    }

.tour-green-section .swiper-button-next,
.tour-green-section .swiper-button-prev {
    display: none !important;
}

.tour-green-section .swiper-slide {
    opacity: 0.3;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tour-green-section .swiper-slide-active {
    opacity: 1;
}

.main-slide-img img {
    width: 100%;
    object-fit: cover;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.incl-h2 {
    color: white;
}

/* --- Responsive Media Queries --- */
@media (min-width: 768px) {
    .tmt-itinerary-h1 {
        font-size: 4.5rem;
        margin-top: 20px;
    }

    .destination-content {
        max-width: 90%;
    }
}

@media (max-width: 991px) {
    .nav-accent-line {
        margin-right: 50px;
    }
}

@media (max-width: 767px) {
    .package-image {
        margin-top: 0;
        padding-top: 50px;
    }

    .default-slide-controller {
        position: absolute;
        top: -34px;
        right: 0;
        width: 100%;
        padding: 0 15px;
        display: flex;
        justify-content: flex-end;
    }
   
    

    .tmt-itinerary-h1 {
        font-size: 2.8rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .destination-content {
        padding: 10px 15px 30px 15px;
    }

    .tmt-itinerary-title {
        font-size: 2.2rem;
    }

    .tmt-itinerary .day-header-text {
        font-size: 1rem;
    }

    .tmt-itinerary .accordion-button::after {
        width: 30px !important;
        height: 30px !important;
    }

    .tmt-itinerary .itinerary-meta-row {
        flex-direction: column;
        gap: 5px;
    }

    .nav-accent-line {
        display: none;
    }

    .tour-green-section h2 {
        font-size: 1.8rem;
    }
}

/* The Values Arrow Segment */
.values-arrow-segment {
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-left: 800px;
    position: relative;
    margin-right: 114px;
    margin-bottom: 33px;
    margin-top: 9px;
}

.values-line {
    flex-grow: 1;
    height: 3px;
    background-color: #333; /* Dark arrow line */
    opacity: 0.8;
}

.values-chevron {
    width: 10px;
    height: 10px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    transform: rotate(45deg);
    margin-left: -10px;
}
/* Responsive fixes */
@media (max-width: 991px) {
    .values-arrow-segment {
        margin-left: 25px;
        margin-right: 25px;
    }
}

.new-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the video fills the banner area like a background image */
    filter: brightness(0.8); /* Optional: darkens video slightly so your white text pops more */
}
/* Initial state: Blurred and slightly transparent */
.branding-item h5,
.branding-item p {
    filter: blur(10px);
    opacity: 0;
    transform: translateY(10px);
    transition: filter 0.8s ease, opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state: Clear and opaque */
.branding-item.reveal-visible h5,
.branding-item.reveal-visible p {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for the 4 items */
.branding-item.reveal-visible:nth-child(1) h5 {
    transition-delay: 0.1s;
}

.branding-item.reveal-visible:nth-child(1) p {
    transition-delay: 0.2s;
}

.branding-item.reveal-visible:nth-child(2) h5 {
    transition-delay: 0.4s;
}

.branding-item.reveal-visible:nth-child(2) p {
    transition-delay: 0.5s;
}

/* Note: Since your HTML has two columns, we target the right column items specifically */
.right-col .branding-item.reveal-visible:nth-child(1) h5 {
    transition-delay: 0.7s;
}

.right-col .branding-item.reveal-visible:nth-child(1) p {
    transition-delay: 0.8s;
}

.right-col .branding-item.reveal-visible:nth-child(2) h5 {
    transition-delay: 1.0s;
}

.right-col .branding-item.reveal-visible:nth-child(2) p {
    transition-delay: 1.1s;
}

/* 1. Ensure the container is the reference point */
.container.mw-1345 {
    position: relative;
}

/* 2. Base Button Style - Now Absolute */
.nav-btn-custom {
    position: absolute;
    top: 14%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 3. Pull them to the far edges */
.prev-slide {
    left: 134px; /* Pulls half the button outside for that clean look */
}

.next-slide {
    right: 134px; /* Pulls half the button outside */
}

/* 4. Hover & Icon colors */
.nav-btn-custom img {
    width: 100%;
}

.nav-btn-custom:hover {
    border-color: #a72015;
    transform: translateY(-50%) scale(1.1);
}

    .nav-btn-custom:hover img {
        filter: #a72015; /* Makes the SVG white on hover */
    }

/* 5. Mobile responsiveness: Move them inside or hide them */
@media (max-width: 1400px) {
    .prev-slide {
        left: 10px;
    }

    .next-slide {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .nav-btn-custom {
        padding-top: 35px;
        padding-bottom: 0px; /* Usually better to use touch-swipe on mobile */
        top: 13%;
    }
}
.about-us-area {
    position: relative;
    overflow: hidden;
    /* This sets the background image */

    background-repeat: no-repeat;
    background-position: center;
    /* Adjust size: 'contain' keeps the whole flame visible,
			   or use a pixel value like '400px' if it's too big */
    background-size: contain;
}

    /* Optional: If the fire.png is too bright and makes text hard to read,
		   use this pseudo-element approach to control opacity precisely: */

    .about-us-area::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/assets/images/fire.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 400px; /* Adjust width of the watermark here */
        opacity: 0.2; /* Control how "faded" the watermark is (0.1 to 1.0) */
        z-index: -1; /* Keeps it behind the text */
    }



@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
.prayer-flags-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* 1. Make it wide enough to span the screen but not crowded */
    width: 100%;
    max-width: 700px;
    /* 2. Set a fixed height so the flags have space to 'hang' */
    height: 180px;
    background-image: url('/assets/images/prayer-flags.png');
    background-repeat: no-repeat;
    /* 3. 'Contain' ensures the whole string is visible without distortion */
    background-size: contain;
    background-position: top center;
    z-index: 10;
    pointer-events: none;
}

/* 4. Adjust the section padding so the Title sits below the flags */
.what-our-travelers-say-area {
    position: relative;
    /* Increase this if the flags are still covering 'Words From...' */
    padding-top: 140px;
}

@keyframes subtleSway {
    0%, 100% {
        transform: translateX(-50%) rotate(0deg);
    }

    50% {
        transform: translateX(-50%) rotate(1deg) translateY(5px);
    }
}

@media only screen and (max-width: 767px) {
    .what-our-travelers-say-area {
        padding-top: 79px;
    }
}

.prayer-flags-top {
    animation: subtleSway 6s ease-in-out infinite;
    transform-origin: top center;
}

.blog-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 !important;
}



.blog-inner-border {
    border: 2px solid #ffffff;
    width: 88%;
    height: 88%;
    display: flex;
    /* 1. Change alignment to start (top) */
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    /* 2. Add padding to define the "Starting Line" of the text */
    /* This ensures every first line begins exactly here */
    padding-top: 60%;
}

.blog-overlay-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    padding: 0 15px;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    /* 3. Remove the translateY transform to prevent uneven floating */
    transform: none;
    /* 4. Optional: Force a 2 or 3 line limit for perfect symmetry */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media(max - width:760px) {
    .blog-inner-border {
        padding-top: 55%; /* Slightly higher on mobile */
    }

    .blog-overlay-title {
        font-size: 17px;
    }
}

/* Keep your hover effect */
.blog-card-overlay:hover .blog-inner-border {
    background: rgba(255, 255, 255, 0.05);
    border-width: 3px;
}
/* ==========================================================================
   STICKY FOOTER BAR & WHATSAPP
   ========================================================================== */
.sticky-footer-bar {
    position: fixed;
    bottom: -26px;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    z-index: 1000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.footer-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fcf7f7;
    height: 35px;
    transition: opacity 0.3s ease;
}

.bg-transparent {
    background-color: transparent; /* Off-White/Grey */
    flex: 4;
}

.bg-green {
    background-color: #5fa57f;
    flex: 1;
}
.bg-green-transparent {
    background-color: #5fa57fb0;
    flex: 1;
}

.bg-custom-red {
    background-color: #a72015;
    flex: 1;
}
.bg-custom-red-transparent {
    background-color: #a72015b8;
    flex: 1;
}

/*.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 42px;
background-color: #25d366;
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
z-index: 1001;
}*/

/* ==========================================================================
   FOOTER CONTACT FORM SECTION
   ========================================================================== */
.footer-form-section {
    font-family: 'Libre Baskerville', serif;
    position: relative;
    overflow: hidden;
}

.form-border-wrapper {
    border: 1px solid #d4c19c; /* Gold/Beige border */
    padding: 30px 20px;
    margin-bottom: 25px;
}

.form-content {
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 80px;
    line-height: 1.1;
    color: #8b2631; /* Deep Red */
    font-weight: 500;
    margin-bottom: 30px;
}

.form-subtitle {
    font-size: 18px;
    color: #8b2631;
    max-width: 450px;
    line-height: 1.6;
}

/* Form Inputs */
.minimal-contact-form .form-group-minimal {
    margin-bottom: 0;
    border-bottom: 1px solid #d4c19c;
}

.minimal-contact-form input,
.minimal-contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 0;
    font-size: 18px;
    color: #8b2631;
    outline: none;
}

    .minimal-contact-form input::placeholder,
    .minimal-contact-form textarea::placeholder {
        color: #8b2631;
        opacity: 0.8;
    }

.submit-arrow-btn {
    background: #8b2631;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s ease;
}

    .submit-arrow-btn:hover {
        transform: scale(1.1);
        background: #000;
    }

/* Decorative Stupa Image */
.footer-stupa-decor {
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 380px;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
    mix-blend-mode: multiply;
    filter: grayscale(100%) brightness(1.1);
    transition: opacity 0.5s ease;
}

    .footer-stupa-decor img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablets and Desktop Scaledown */
@media (max-width: 991px) {
    .form-title {
        font-size: 50px;
    }

    .footer-form-section {
        padding: 60px 0;
    }

    .footer-stupa-decor {
        width: 220px;
        left: -30px;
        opacity: 0.08;
    }
}

/* General Mobile */
@media (max-width: 768px) {
    .sticky-footer-bar {
        height: 60px;
        font-size: 12px;
    }

    .bg-grey {
        display: none; /* Keeps CTA buttons large on mobile */
    }

    .footer-segment {
        flex: 1;
    }
}

/* Small Mobile */
@media (max-width: 767px) {
    .form-title {
        font-size: 40px;
    }

    .form-bottom-meta {
        flex-direction: column;
        align-items: flex-start !important;
    }
}

@media (max-width: 575px) {
    .footer-stupa-decor {
        width: 150px;
        bottom: -10px;
    }
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */

/* Core structure reset */
.custom-nav-structure,
.custom-nav-structure ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* Row Styling */
.link-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
    background: #fff;
}

.custom-nav-structure a {
    display: block;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

/* Arrow Button */
.menu-toggler {
    padding: 12px 20px;
    cursor: pointer;
    color: #777;
    transition: all 0.3s ease;
}

/* Sub-Menu Levels and Colors */
.sub-menu-list {
    display: none; /* Controlled by JS */
    background-color: #fcfcfc;
}

    /* Indentation for level 2 */
    .sub-menu-list a {
        padding-left: 35px;
        font-size: 14px;
    }

/* Indentation for level 3 */
.last-level a {
    padding-left: 55px;
    font-size: 13px;
    color: #555;
}

/* Active Open States */
.nav-item.is-open > .sub-menu-list {
    display: block;
}

.nav-item.is-open > .link-header {
    background-color: #fdfdfd;
}

    .nav-item.is-open > .link-header .menu-toggler {
        transform: rotate(180deg);
        color: #000;
    }

/* Highlight current page and active path */
.custom-nav-structure a.current-page {
    color: #ff5a5f;
    font-weight: 700;
}

.nav-item.active-path > .link-header a {
    color: #000;
    font-weight: 600;
}

.nav-item.active-path > .sub-menu-list {
    display: block;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

.my-new-footer {
    position: relative;
    overflow: hidden;
    padding-bottom: 150px; /* Adjust based on image height */
}

.footer-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    line-height: 0; /* Removes tiny gap at bottom of images */
    z-index: 1;
    pointer-events: none;
}

.mountain-img {
    width: 100%;
    height: auto;
    opacity: 0.05;
    display: block;
    vertical-align: bottom;
}

/* Footer Media Queries */
@media (max-width: 750px) {
    .footer-background {
        bottom: 90px;
    }
}

@media (min-width: 992px) {
    /* Vertical Dividers */
    .my-new-footer .row > [class^="col-"]:not(:last-child) {
        border-right: 1px solid #e0e0e0;
        position: relative;
    }

    /* Column Spacing */
    .my-new-footer .footer-widget {
        padding-left: 40px;
        padding-right: 40px;
        min-height: 250px;
    }

    /* Alignment Fix for first column */
    .my-new-footer .row > [class^="col-"]:first-child .footer-widget {
        padding-left: 0;
    }
}

@media (min-width: 1920px) {
    .mountain-img {
        object-fit: cover;
        height: 606px;
    }
}
.tsm-values-area {
    position: relative;
    overflow: hidden; /* Prevents the image from causing horizontal scroll */
}

.lakhe-bg-overlay {
    position: absolute;
    right: 0;
    top: -15px; /* Adjust based on where you want it to start vertically */
    z-index: 0;
    pointer-events: none; /* Allows users to click through the image */
    opacity: 0.6; /* Adjust transparency to match your design */
}

    .lakhe-bg-overlay img {
        max-width: 500px; /* Adjust size to match the screenshot */
        height: auto;
        display: block;
    }

/* Ensure the content stays above the image */
.tmt, .values-wrapper {
    position: relative;
    z-index: 2;
}

/* Responsive adjustment for mobile */
@media (max-width: 991px) {
    .lakhe-bg-overlay img {
        max-width: 250px;
        top: 0px !important;
        opacity: 0.5;
    }

    .mobile-section-padding {
        margin-top: 95px;
    }
}
.footer-form-section p {
    font-family: "Josefin Sans", sans-serif;
}
.footer-form-section h2 {
    font-family: "Libre Baskerville", serif;
}


/*Navbar Styles*/

.navbar.style-two {
    position: absolute;
}

    .navbar.style-two.otherpage-navbar {
        position: relative;
    }

        .navbar.style-two.otherpage-navbar .navbar-brand svg {
            color: #000000 !important;
        }

        .navbar.style-two.otherpage-navbar .burger-menu span {
            background-color: #000000 !important;
        }


/* --- Core Layout Modifications --- */
.navbar-custom,
.navbar.style-two {
    background-color: transparent !important;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
    padding: 25px 0 !important; /* Spacing room for desktop above fold */
    transform: translateY(0);
    height: 185px;
    /* Your ultra-smooth 0.45s exit transition */
    transition: transform 0.85s ease-out, background-color 0.85s ease-out, box-shadow 0.85s ease-out, padding 0.85s ease-out !important;
}

    .navbar-custom.scrolled,
    .navbar.style-two.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        /* Your luxurious 0.85s entrance transition */
        transition: transform 0.85s ease-in-out, background-color 0.85s ease-in-out, box-shadow 0.85s ease-in-out, padding 0.85s ease-in-out !important;
    }

.navbar-custom,
.navbar.style-two {
    transition: transform 0.85s ease-out, background-color 0.85s ease-out, box-shadow 0.85s ease-out, padding 0.85s ease-out !important;
}

    /* Ensure container flexbox stays perfectly centered horizontally */
    .navbar.style-two .container.mw-1680 {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
    }

/* --- Responsive Logo Target Width Execution --- */

/* Mobile Views (Screens smaller than 992px) */
/* Mobile Views (Screens smaller than 992px) */
/* Mobile Views (Screens smaller than 992px) */
@media (max-width: 991.98px) {

    .my-hamburger {
        padding-right: 15px;
    }

    .navbar.style-two {
        /* Force a tight, explicit layout height for the mobile header */
        height: 132px !important;
        padding: 0 !important; /* Strip default paddings causing invisible bloating */
    }

        .navbar.style-two .container.mw-1680 {
            height: 100% !important; /* Force flex container to inherit the fixed 80px height */
            padding-left: 16px !important;
            padding-right: 16px !important;
            width: 100% !important;
            max-width: 100% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
        }

        .navbar.style-two .navbar-brand {
            display: flex !important;
            align-items: center !important;
            /* Restrict the vertical bounding area of the square SVG anchor */
            height: 60px !important;
            width: auto !important;
        }

            .navbar.style-two .navbar-brand svg {
                /* Let the width stretch large while the max-height keeps it from altering the header */
                width: 145px !important;
                height: auto !important;
            }
}
/* Desktop Views (Screens 992px and larger) */
@media (min-width: 992px) {
    .my-hamburger {
        padding-right: 40px;
    }

    .navbar.style-two .navbar-brand svg {
        width: 170px !important; /* Exact sizing requested for desktop visibility */
        height: auto !important;
    }
    /* Slenders the white navigation bar slightly when scrolling sticky mode is active */
    .navbar.style-two.scrolled {
        padding: 14px 0 !important;
        height: 123px;
    }
}

/* --- Vector Component Rules --- */
.navbar.style-two .navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
}

    .navbar.style-two .navbar-brand svg {
        color: #fcf7f7 !important; /* Base white state */
        display: block;
        /* Subpixel optimizations to eliminate fuzzy rendering */
        text-rendering: optimizeLegibility !important;
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
        transition: color 0.3s ease;
    }

/* --- Native Hamburger State System Overrides --- */
.navbar.style-two .custom-burger-btn {
    border: none !important;
    outline: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
    cursor: pointer;
    display: inline-block;
    margin: 0 !important; /* Ensures no browser defaults push it inward */
    padding: 0 !important;
}

/* Standard baseline appearance settings for lines */
.navbar.style-two .burger-menu span {
    background-color: #fcf7f7 !important; /* Base white state */
    transition: background-color 0.3s ease;
}

/* --- Sticky Scroll Dynamic Modifiers --- */
.navbar.style-two.nav-hidden {
    transform: translateY(-100%) !important; /* Seamlessly pulls header out of sight */
}

.navbar.style-two.scrolled {
    background-color: #fcf7f7 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
}

    /* Inverts components cleanly to dark mode while sticky active white background is live */
    .navbar.style-two.scrolled .navbar-brand svg {
        color: #000000 !important;
    }

    .navbar.style-two.scrolled .burger-menu span {
        background-color: #000000 !important;
    }



/* Ensure the inner panel uses natural modal viewport dimensions */
#offcanvasExample.mobile-navbar.offcanvas {
    overflow-y: auto !important;
    max-height: 100vh !important;
}

#offcanvasExample .offcanvas-body {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

html:has(.offcanvas-backdrop.show),
body:has(.offcanvas-backdrop.show) {
    overflow: hidden !important;
    overflow-y: hidden !important;
    height: 100% !important;
}

/*Navbar styles end*/