html {
    scroll-behavior: smooth;
}

/* --- General Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    overflow-x: hidden;
}


header {
    background-color: #FFF6DC;
    padding: 20px 0;
    width: 100%;
    border-bottom: 1px solid rgba(133, 95, 52, 0.1);
    position: relative;
    z-index: 50;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo-img {
    height: 40px;
    width: auto;
    display: block;
}


.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #855F34;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #855F34;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}


.btn-book {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #855F34;
    background-color: transparent;
    border: 1px solid #855F34;
    padding: 10px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.arrow-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-book:hover {
    background-color: #855F34;
    color: #FFF6DC;
}

.btn-book:hover .arrow-icon {
    animation: arrowReset 0.6s ease forwards;
}

@keyframes arrowReset {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    49% {
        transform: translateX(15px);
        opacity: 0;
    }

    50% {
        transform: translateX(-15px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 34px;
    height: 20px;
    cursor: pointer;
    z-index: 60;
}

.line {
    height: 2px;
    background-color: #855F34;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.hamburger .line:nth-child(1) {
    animation: waveLines 1.5s infinite alternate ease-in-out;
}

.hamburger .line:nth-child(2) {
    animation: waveLines 1.5s infinite alternate-reverse ease-in-out;
}

.hamburger .line:nth-child(3) {
    animation: waveLines 1.5s infinite alternate ease-in-out;
    animation-delay: 0.2s;
}

@keyframes waveLines {
    0% {
        width: 100%;
    }

    100% {
        width: 50%;
    }
}

.hamburger:hover .line {
    animation-play-state: paused;
    width: 100% !important;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 320px;
    height: 100vh;
    background-color: #FFF6DC;
    z-index: 1000;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(133, 95, 52, 0.2);
    padding-bottom: 20px;
}

.close-btn {
    font-size: 30px;
    color: #855F34;
    cursor: pointer;
    transition: transform 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: #D73720;
}

.sidebar-links li {
    margin-bottom: 20px;
}

.sidebar-links a {
    font-size: 20px;
    color: #855F34;
    font-weight: 500;
    transition: 0.3s;
}

.sidebar-links a:hover {
    color: #D73720;
    padding-left: 10px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }

    .logo-img {
        height: 35px;
    }

    .btn-book {
        padding: 8px 16px;
        font-size: 14px;
    }

    .sidebar {
        width: 85%;
    }
    
    header {
    padding: 20px 0;
    width: 100%;
    border-bottom: 1px solid rgba(133, 95, 52, 0.1);
    position: fixed;
    z-index: 999999999999999;
    top: 0;
}
    

}
















/* --- Hero Section Wrapper --- */
.hero-section {
    background-color: #855F34;
    height: 90vh;
    width: 100%;
    position: relative;
    padding: 0;
    overflow: hidden;
}

/* Slick Slider Wrapper */
.hero-slider {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Jab Slick load ho jaye, tab dikhayein */
.hero-slider.slick-initialized {
    opacity: 1;
}

/* --- IMPORTANT FIX HERE --- */
.hero-slide {
    height: 90vh !important;
    outline: none;
    position: relative;
    border: none;
    overflow: hidden;
}

/* Flexbox ab andar wale container pe lagega */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* --- Left Side: Text Content --- */
.hero-text {
    width: 50%;
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* Active Slide Animation */
.hero-slide.slick-current .hero-text {
    transform: translateY(0);
    opacity: 1;
}

/* Headings & Text */
.hero-subtitle {
    font-family: 'Elsie', serif;
    font-weight: 400;
    font-size: 24px;
    color: #FCEEC9;
    margin-bottom: 10px;
    display: block;
}

.hero-title {
    font-family: 'Elsie', serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 1.1;
    color: #FCEEC9;
    margin-bottom: 25px;
}

.hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #FCEEC9;
    margin-bottom: 35px;
    max-width: 480px;
    line-height: 1.6;
}

/* --- Right Side: Image --- */
.hero-image-wrapper {
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease-out 0.2s;
}

.hero-slide.slick-current .hero-image-wrapper {
    transform: translateY(0);
    opacity: 1;
}

.main-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* --- Navigation & Button Styles (Same as before) --- */
.slider-nav-container {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 100;
    color: #FCEEC9;
    font-family: 'Poppins', sans-serif;
}

.nav-arrow {
    width: 24px;
    cursor: pointer;
    transition: transform 0.2s;
}

.nav-arrow:active {
    transform: scale(0.9);
}

.number-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.num-current {
    font-size: 24px;
    font-weight: 600;
    color: #FCEEC9;
}

.vertical-sep {
    width: 1px;
    height: 60px;
    background-color: rgba(252, 238, 201, 0.6);
}

.num-next {
    font-size: 16px;
    font-weight: 400;
    color: #FCEEC9;
}

/* Button */
.hero-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FCEEC9;
    border: 1px solid #FCEEC9;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #FCEEC9;
    color: #855F34;
}


/* --- Responsive Fixes --- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-image-wrapper {
        width: 40%;
    }
}

@media (max-width: 767px) {

    .hero-section,
    .hero-slider,
    .hero-slide {
        min-height: auto;
        background-color: #855F34;
        height: 90vh;
        width: 100%;
        position: relative;
        padding-top: 40px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .hero-slide {
        display: block;
        height: auto !important;
        padding: 0;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        width: 100%;
        margin-top: 30px;
    }

    .hero-image-wrapper {
        width: 80%;
        transform: none;
        opacity: 1;
        height: 300px;
    }

    .hero-title {
        font-size: 32px;
    }

    .slider-nav-container {
        right: 24px;
        top: 30%;
    }
}




/* --- Booking Section Styling --- */
.booking-section {
    background-color: #FFFAF0;
    padding: 80px 0;
    width: 100%;
}

.booking-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: block;
}

/* Title Styling */
.section-title {
    font-family: 'Elsie', serif;
    font-size: 56px;
    color: #855F34;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Form Grid Layout */
.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 30px;
}

/* Input Fields Styling */
.form-input {
    width: 100%;
    background-color: #FCEEC9;
    border: none;
    border-radius: 12px;
    padding: 18px 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #855F34;
    outline: none;
    transition: box-shadow 0.3s ease;
}

/* Specific Dropdown Styling */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    border-radius: 12px;
}

/* Placeholder Styling */
.form-input::placeholder {
    color: #855F34;
    opacity: 0.8;
}

.form-input:focus {
    box-shadow: 0 0 0 2px rgba(133, 95, 52, 0.2);
}

/* Custom Select Dropdown Styling */
.input-group {
    position: relative;
    width: 100%;
}

/* Custom Down Arrow */
.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-right: 2px solid #855F34;
    border-bottom: 2px solid #855F34;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

/* Button Wrapper */
.form-btn-wrapper {
    grid-column: span 2;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* --- Clean Booking Button (No Retro Effect) --- */
.booking-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #855F34;
    background-color: transparent;
    border: 1px solid #855F34;
    padding: 12px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover Effect - Simple Fill */
.booking-btn:hover {
    background-color: #855F34;
    color: #FFFAF0;
}

/* Arrow Animation */
.booking-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.booking-btn:hover span {
    animation: slideArrowBtn 0.6s ease forwards;
}

@keyframes slideArrowBtn {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    49% {
        transform: translateX(10px);
        opacity: 0;
    }

    50% {
        transform: translateX(-10px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* --- Responsive (Max-Width 767px) --- */
@media (max-width: 767px) {
    .section-title {
        font-size: 32px;
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-btn-wrapper {
        grid-column: span 1;
    }

    .booking-section {
        padding: 50px 20px;
    }
}






/* --- Marquee Section Styling --- */
.marquee-section {
    background-color: #855F34;
    padding: 25px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(252, 238, 201, 0.1);
    border-bottom: 1px solid rgba(252, 238, 201, 0.1);
    position: relative;
    z-index: 5;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollMarquee 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
}

.marquee-text {
    font-family: 'Elsie', serif;
    font-size: 48px;
    color: #FCEEC9;
    font-weight: 400;
    margin: 0 40px;
}

.marquee-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: 0.8;
}

/* --- Animation Keyframes --- */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Responsive (Mobile) --- */
@media (max-width: 767px) {
    .marquee-section {
        padding: 15px 0;
    }

    .marquee-text {
        font-size: 28px;
        margin: 0 20px;
    }

    .marquee-icon {
        width: 20px;
        height: 20px;
    }
}


/* --- Specialisation Section --- */
.specialisation-section {
    background-color: #855F34;
    padding: 80px 0;
    width: 100%;
    color: #FCEEC9;
}

.specialisation-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    display: block;
}

/* Header */
.spec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.section-title.text-left {
    color: #FCEEC9;
    text-align: left;
    margin: 0;
}

/* View All Button */
.view-all-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #FCEEC9;
    border: 1px solid #FCEEC9;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all-btn:hover {
    background-color: #FCEEC9;
    color: #855F34;
}

/* UPDATE: View All Button Arrow Animation */
.view-all-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.view-all-btn:hover span {
    animation: slideArrow 0.6s ease forwards;
}

/* Wrapper Grid */
.spec-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
}

/* --- Left List --- */
.spec-list {
    width: 55%;
    display: flex;
    flex-direction: column;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(252, 238, 201, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* UPDATE: Top item se border hata diya */
.spec-item:first-child {
    border-top: none;
}

/* UPDATE: Bottom item se border hata diya */
.spec-item:last-child {
    border-bottom: none;
}

/* Number Circle */
.spec-num {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    border: 1px solid #FCEEC9;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Details */
.spec-details {
    flex-grow: 1;
}

.spec-name {
    font-family: 'Elsie', serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
    transition: opacity 0.3s ease;
}

.spec-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
    max-width: 90%;
    transition: opacity 0.3s ease;
}

/* Arrow Circle */
.spec-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #FCEEC9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.spec-arrow span {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* --- UPDATED HOVER EFFECTS --- */
.spec-item:hover .spec-name {
    opacity: 0.6;
}

.spec-arrow:hover {
    background-color: transparent;
}


.spec-arrow:hover span {
    animation: slideArrow 0.6s ease forwards;
}

/* Slide Animation Keyframes */
@keyframes slideArrow {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    49% {
        transform: translateX(10px);
        opacity: 0;
    }

    50% {
        transform: translateX(-10px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* --- Right Image (Arch Shape) --- */
.spec-image-container {
    width: 40%;
    position: relative;
    height: auto;
    min-height: 500px;
}

.arch-mask {
    width: 100%;
    height: 100%;
    border-radius: 300px 300px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: none;
}

/* Image Styling for Smoothness */
.arch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .spec-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .section-title.text-left {
        text-align: center;
        font-size: 40px;
    }

    .spec-content-wrapper {
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }

    .spec-list {
        width: 100%;
    }

    .spec-image-container {
        width: 100%;
        height: 400px;
    }

    .spec-name {
        font-size: 24px;
    }

    .specialisation-section {
        padding: 50px 20px;
    }

}






/* --- Wellness Section Setup --- */
.wellness-section {
    background-color: #855F34;
    padding: 80px 0;
    color: #FCEEC9;
    font-family: 'Poppins', sans-serif;
}

.wellness-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

/* Header Styling */
.wellness-header {
    margin-bottom: 50px;
}

.wellness-header .section-title {
    color: #FCEEC9;
    text-align: start;
    font-family: 'Elsie', serif;
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 400;
}

.wellness-header .section-desc {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
}

/* --- Gallery Grid Layout --- */
.wellness-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Column Wrapper */
.well-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 90%;
}

.well-card,
.mini-grid-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    flex: 1;
}

/* Image Styling */
.well-card img,
.mini-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* --- Hover Animation (Sabke liye) --- */
.well-card:hover img,
.mini-grid-card:hover img {
    transform: scale(1.05);
}

/* --- Specific Sizing Logic for Equal Heights --- */

.well-col:nth-child(1) .mini-grid-card {
    flex: 0.8;
}

.well-col:nth-child(1) .well-card.overlay-card {
    flex: 1.2;
}

.tall-card {
    height: 100%;
    flex: 1;
}

.well-col:nth-child(3) .well-card {
    flex: 1;
}

.well-col:nth-child(3) .split-row {
    flex: 1;
}

.split-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.split-row .well-card {
    height: 100%;
}

.text-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text-overlay h3 {
    font-family: 'Elsie', serif;
    font-size: 32px;
    margin-bottom: 5px;
    font-style: italic;
}

.text-overlay p {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 300;
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.view-all-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #FCEEC9;
    border: 1px solid #FCEEC9;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-all-btn:hover {
    background-color: #FCEEC9;
    color: #855F34;
}

.view-all-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.view-all-btn:hover span {
    animation: slideArrow 0.6s ease forwards;
}

/* --- RESPONSIVE (Mobile View - 767px) --- */
@media (max-width: 767px) {

    .wellness-header {
        text-align: center;
    }

    .wellness-header .section-title {
        font-size: 32px;
    }

    .wellness-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        height: auto;
    }

    .well-col {
        width: 100%;
        height: auto;
    }

    .mini-grid-card,
    .well-card,
    .tall-card {
        min-height: 250px;
    }

    .tall-card {
        min-height: 400px;
    }

    .split-row {
        height: 250px;
    }

    .wellness-section {
        padding: 50px 20px;
    }

    .wellness-section .container {
        padding: 0;
    }


}





/* --- Video Intro Section Setup --- */
.video-intro-section {
    background-color: #F9F9F7;
    padding: 100px 0;
    color: #855F34;
    font-family: 'Poppins', sans-serif;
}

.video-intro-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* --- Left Side: Video Image & Play Button --- */
.video-wrapper {
    flex: 1;
    position: relative;
}

.video-poster {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 10px 30px rgba(133, 95, 52, 0.1);
}

.video-poster img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-poster:hover img {
    transform: scale(1.03);
}


/* Wrapper Positioning */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    /* Agar rounded corners chahiye */
}

.video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Styling */
.main-video {
    object-fit: scale-down;
    display: block;
    cursor: pointer;
    /* width: 100%;
    height: 600px; */
    width: 50%;
    height: auto;
    border-radius: 20px;
}

/* Play Button Circle (Purana wala style + updates) */
.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(133, 95, 52, 0.9);
    /* Theme Brown */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.play-btn-circle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #855F34;
}

/* Play Triangle */
.play-triangle {
    width: 0;
    height: 0;
    border-left: 20px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
    /* Thoda center adjustment */
}

/* Pause Icon (Two Bars) */
.pause-bars {
    display: flex;
    gap: 6px;
    height: 24px;
}

.pause-bars .bar {
    width: 6px;
    height: 100%;
    background-color: #fff;
    border-radius: 2px;
}

/* Jab video play ho rahi ho, tab button ko thoda transparent ya chupa sakte hain */
.video-playing .play-btn-circle {
    opacity: 0;
    /* Button gayab ho jayega play hone par */
    pointer-events: none;
    /* Taaki video par click ho sake */
}


.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(133, 95, 52, 0.85);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(133, 95, 52, 0.4);
    z-index: 2;
}

.play-triangle {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #F9F9F7;
    margin-left: 4px;
}

.video-poster:hover .play-btn-circle {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #855F34;
    box-shadow: 0 0 0 15px rgba(133, 95, 52, 0.1);
}

.intro-content {
    flex: 1;
}

.intro-title {
    font-family: 'Elsie', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.benefit-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #855F34;
    line-height: 1.5;
}

.benefit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-image: url('../images/Group\ \(1\).png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* --- Long Pill Button --- */
.long-cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid #855F34;
    border-radius: 50px;
    color: #855F34;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.long-cta-btn:hover {
    background-color: #855F34;
    color: #F9F9F7;
}

.long-cta-btn span {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.long-cta-btn:hover span {
    transform: translateX(5px);
}

/* --- RESPONSIVE (Mobile View - 767px) --- */
@media (max-width: 767px) {
    .video-intro-section {
        padding: 50px 20px;
    }

    .video-intro-section .container {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    .video-wrapper,
    .intro-content {
        flex: auto;
        width: 100%;
    }

    .intro-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 25px;
    }

    .benefit-list {
        padding-left: 10px;
    }

    .benefit-list li {
        font-size: 14px;
    }

    .long-cta-btn {
        padding: 15px 20px;
        font-size: 11px;
        white-space: normal;
        line-height: 1.4;
    }
}


/* --- VARIABLES (Agar pehle se nahi hain to ye use karein) --- */
:root {
    --theme-brown: #855F34;
    --theme-cream: #FCEEC9;
    --font-heading: 'Elsie', serif;
    --font-body: 'Poppins', sans-serif;
}

.location-section {
    background-color: var(--theme-brown);
    padding: 60px 20px;
    width: 100%;
}

.loc-bar {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--theme-cream);
}


.loc-left {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: space-evenly;
}

.circle-img {
    width: 100%;
    max-width: 40%;
    height: auto;
    overflow: hidden;
    flex-shrink: 0;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.loc-title {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.1;
    font-weight: 400;
    margin: 0;
}

.divider {
    width: 1px;
    height: 60px;
    background-color: rgba(252, 238, 201, 0.3);
}

.loc-info {
    font-family: var(--font-body);
}

.loc-info h4 {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 400;
    margin: 0 0 5px 0;
}

.loc-info p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.ishva-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid var(--theme-cream);
    color: var(--theme-cream);
}

.ishva-btn:hover {
    background: var(--theme-cream);
    color: var(--theme-brown);
}

.ishva-btn span {
    margin-left: 10px;
    transition: transform 0.3s;
}

.ishva-btn:hover span {
    transform: translateX(5px);
}

/* --- RESPONSIVE (Mobile View) --- */
@media (max-width: 991px) {

    /* Tablet & Mobile tweaks */
    .loc-bar {
        flex-direction: column;
        border-radius: 30px;
        padding: 0;
        gap: 30px;
        text-align: center;
    }

    .loc-left {
        flex-direction: column;
        gap: 15px;
    }

    .divider {
        width: 100%;
        height: 1px;
        max-width: 200px;
    }

    .ishva-btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .loc-title {
        font-size: 36px;
    }

    .location-section {
        padding: 50px 20px;
    }


}


/* --- Variables --- */
:root {
    --color-brown: #855F34;
    --color-gold: #FFD700;
    --font-heading: 'Elsie', serif;
    --font-body: 'Poppins', sans-serif;
}

/* --- Main Wrapper --- */
.combined-wellness-section {
    width: 100%;
    background-color: transparent;
    font-family: var(--font-body);
    color: var(--color-brown);
}

.container-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =================================
   PART 1: TESTIMONIAL (Background Logic)
================================= */
.testimonial-bg-wrapper {
    /* Background Image sirf yahan lagegi */
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    background-color: #FAFAFA;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    padding-bottom: 140px;
    text-align: center;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: 400;
}

.testimonial-slider {
    padding-bottom: 40px;
}

.testi-slide {
    padding: 0 30px;
    text-align: center;
    position: relative;
    outline: none;
}

.testimonial-slider .slick-active+.slick-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background-color: rgba(133, 95, 52, 0.2);
    display: block;
}

.quote-icon {
    font-family: serif;
    font-size: 80px;
    line-height: 1;
    color: var(--color-brown);
    display: block;
}

.quote-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.user-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: left;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin: 0;
}

.user-info span {
    font-size: 11px;
    opacity: 0.8;
    display: block;
    text-transform: uppercase;
}

.stars {
    color: var(--color-gold);
    font-size: 12px;
}

.slick-dots li button:before {
    color: #855F34 !important;
    font-size: 8px;
}


.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #855F34 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #855F34 !important;
}

.slick-dots li.slick-active button:before {
    opacity: 1;

}


/* =================================
   PART 2: TRANSFORM CARD (Overlapping Logic)
================================= */
.transform-card {
    display: flex;
    /* background-color: snow; */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    min-height: 500px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

/* --- Left Side --- */
.card-left {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

.card-left .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Container ko relative banaya taaki sab kuch iske andar absolute ho sake */
.card-left {
    position: relative;
    width: 100%;
    text-align: center;
    /* Jitni height aapke design mein thi, utni height yahan set karein, example: */
    height: auto;
    overflow: hidden;
    border-radius: 20px;
    /* Agar card rounded hai */
}

/* Video ko background image ki tarah set karna */
.bg-video {
    /* position: absolute;
    top: 0;
    left: 0;
    object-fit: scale-down;
    z-index: 0;
    object-fit: scale-down;
    display: block;
    cursor: pointer; */
    width: 50%;
    height: auto;
    border-radius: 20px;
}

/* Optional: Video ke upar halka kala layer taaki text saaf dikhe */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.3); */
    z-index: 1;
    pointer-events: none;
}

/* Content ko video ke upar lana */
.img-overlay-content {
    position: relative;
    /* Ya absolute, jaisa aapke purane design mein tha */
    z-index: 2;
    /* Video aur overlay se upar */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    /* Apni purani positioning CSS yahan use karein agar alag hai to */
    padding-left: 40px;
    color: #fff;
    /* Text color white */
}

/* --- Play Button Behavior --- */
.play-circle {
    cursor: pointer;
    transition: all 0.3s ease;
    /* Apni purani play button CSS yahan rakhein */
}

/* Jab video play ho rahi ho, tab play button ko gayab karna */
.card-left.is-playing .play-circle {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    /* Click disable karna jab gayab ho */
}

/* Text Styles (Aapke purane wale hi rahenge) */
.overlay-title {
    color: #fff;
    font-family: 'Elsie', serif;
    /* Example Font */
    font-size: 42px;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 10px;
}

.overlay-subtitle {
    color: #fff;
    font-size: 16px;
    opacity: 0.9;
}

.img-overlay-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--color-brown);
}

.play-circle {
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.play-circle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 3px;
}

.video-intro-section .play-triangle {
    width: 16px;
    height: 16px;
    border-left: 18px solid #FCEEC9;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 3px;
}

.overlay-title {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: 400;
}

.overlay-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* --- Right Side --- */
.card-right {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    border-radius: 20px;
}

.card-heading {
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.8;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.outline-btn {
    display: block;
    text-align: center;
    padding: 15px 20px;
    border: 1px solid var(--color-brown);
    border-radius: 50px;
    color: var(--color-brown);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.outline-btn:hover {
    background-color: var(--color-brown);
    color: #fff;
}

.small-arrow {
    text-align: center;
    font-size: 20px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .section-heading {
        font-size: 32px;
    }

    .testimonial-bg-wrapper {
        padding-bottom: 60px;
    }

    .combined-wellness-section {
        padding: 50px 20px;
    }

    .combined-wellness-section .container-wrapper {
        padding: 0;
    }


    .transform-card {
        margin-top: 0;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .testimonial-slider .slick-active+.slick-active::before {
        display: none;
    }

    .card-left {
        height: auto;
    }

    .card-right {
        padding: 40px 20px;
        text-align: center;
    }

    .img-overlay-content {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
    }

    .play-circle {
        margin: 0 auto 15px auto;
    }
}




/* --- Variables --- */
:root {
    --theme-brown: #855F34;
    --theme-cream: #FCEEC9;
    --font-heading: 'Elsie', serif;
    --font-body: 'Poppins', sans-serif;
}

/* --- Footer Wrapper --- */
.ishva-footer {
    background-color: var(--theme-brown);
    color: var(--theme-cream);
    padding: 80px 20px 30px 20px;
    font-family: var(--font-body);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    margin-top: 0;
    line-height: 1.2;
}

.newsletter-form {
    position: relative;
    max-width: 320px;
    border-bottom: 1px solid rgba(252, 238, 201, 0.5);
    margin-bottom: 15px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-form input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--theme-cream);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 5px 0;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(252, 238, 201, 0.6);
    font-weight: 300;
}

/* Arrow Button Image Styling */
.arrow-btn {
    width: 35px;
    height: auto;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.arrow-btn:hover {
    opacity: 1;
    transform: translateX(3px);
}

.spam-text {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 35px;
    font-weight: 300;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

/* --- Col 2: Contact --- */
.contact-col {
    padding-left: 20px;
}

.contact-details p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 400;
}

.email-link {
    text-decoration: none;
    color: var(--theme-cream);
}

a.number-link {
    text-decoration: none;
    color: var(--theme-cream);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-circle {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
}

.social-circle img {
    width: 30px;
    height: auto;
    display: block;
}

.social-circle:hover {
    transform: translateY(-3px);
}

/* --- Bottom Section --- */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(252, 238, 201, 0.2);
    margin-bottom: 30px;
    margin-top: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.8;
    font-weight: 300;
}

.bottom-links a {
    color: var(--theme-cream);
    text-decoration: none;
    transition: opacity 0.3s;
}

.bottom-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.separator {
    margin: 0 10px;
    opacity: 0.5;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 50px;
    }

    .footer-col {
        width: 100%;
        min-width: auto;
        padding-left: 0;
    }

    .contact-col {
        margin-top: -20px;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-icons {
        justify-content: flex-start;
    }
}

/* --- Variables --- */
:root {
    --color-brown: #855F34;
    --font-heading: 'Elsie', serif;
    --font-body: 'Poppins', sans-serif;
}

/* --- Section Layout --- */
.trial-session-section {
    background-color: #FAFAFA;
    padding: 80px 20px;
    font-family: var(--font-body);
    color: var(--color-brown);
    overflow: hidden;
}

.session-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.session-col-left {
    height: 100%;
    min-height: 500px;
}

.arch-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
}

.main-arch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.session-title {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 20px;
}

.inline-group {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    vertical-align: middle;
}

.single-title-img {
    height: 50px;
    object-fit: cover;
}

.circle-avatars {
    display: flex;
    align-items: center;
}

.circle-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-right: -15px;
}

.arrow-circle {
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 10px;
    z-index: 2;
}

.session-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
    opacity: 0.9;
}

.session-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.session-benefits li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 400;
}

.session-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-brown);
    font-weight: bold;
}

.price-tag {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--color-brown);
}

/* Button Styling */
.outline-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--color-brown);
    border-radius: 50px;
    color: var(--color-brown);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    transition: 0.3s;
}

.outline-btn:hover {
    background: var(--color-brown);
    color: #fff;
}

.session-col-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.right-single-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}


/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .session-grid {
        grid-template-columns: 1fr 1fr;
    }

    .session-col-right {
        display: none;
    }

}

@media (max-width: 768px) {
    .session-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .session-col-left {
        width: 100%;
        min-height: 350px;
        order: 1;
    }

    .session-col-center {
        width: 100%;
        text-align: center;
        order: 2;
    }

    .session-title {
        font-size: 36px;
    }

    .single-title-img {
        width: 100%;
        height: 50px;
    }

    .inline-group {
        justify-content: center;
    }

    .session-benefits {
        text-align: left;
        display: inline-block;
    }

    .session-col-right {
        display: block;
        width: 100%;
        order: 3;
    }


    .trial-session-section {
        padding: 50px 20px;
    }

    .price-tag {
        margin-bottom: 25px;
    }


}


/* --- Variables --- */
:root {
    --theme-brown: #855F34;
    --font-heading: 'Elsie', serif;
    --font-body: 'Poppins', sans-serif;
}

.instructor-section {
    background-color: #F9F9F7;
    padding: 80px 20px;
    font-family: var(--font-body);
    color: var(--theme-brown);
    overflow: hidden;
}

.container-wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

.instr-header {
    text-align: center;
    margin-bottom: 60px;
}

.fancy-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-img {
    display: inline-block;
    width: 100px;
    height: 45px;
    border-radius: 50px;
    overflow: hidden;
    vertical-align: middle;
}

.pill-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-circle {
    display: inline-flex;
}

.icon-circle img {
    width: 45px;
    height: auto;
}

.instr-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.instr-col-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.main-instructor-img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: visible;
}

.main-instructor-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* --- RIGHT COLUMN --- */
.instr-col-right {
    display: flex;
    flex-direction: column;
}

.right-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.instr-info {
    flex: 1;
    padding-right: 20px;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    margin-top: 0;
}

.instr-name {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--theme-brown);
    margin: 0;
}

.instr-role {
    font-size: 14px;
    opacity: 0.8;
    margin-left: 10px;
}

.instr-details {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.instr-details li {
    font-size: 15px;
    line-height: 1.8;
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
}

.instr-details li::before {
    content: '•';
    color: var(--theme-brown);
    position: absolute;
    left: 0;
    font-size: 18px;
    line-height: 1.5;
}

.leaf-graphic {
    width: 100%;
    max-width: 30%;
    flex-shrink: 0;
}

.leaf-graphic img {
    width: 100%;
    height: auto;
    display: block;
    transform: rotate(10deg);
}

.right-bottom-row {
    width: 100%;
}

.meditation-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    overflow: visible;
}

.meditation-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 991px) {
    .instr-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .instr-col-left {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .instr-col-right {
        order: 1;
    }
}

@media (max-width: 768px) {
    .fancy-title {
        font-size: 28px;
    }

    .pill-img {
        width: 70px;
        height: 35px;
    }

    .icon-circle {
        width: 35px;
        height: 35px;
    }

    .right-top-row {
        position: relative;
    }

    .leaf-graphic {
        position: absolute;
        top: 60px;
        right: 0;
        width: 100px;
    }


    .container-wrapper {
        padding: 0 20px;
    }

    .instructor-section {
        padding: 50px 20px;
    }

    .instructor-section .container-wrapper {
        padding: 0;
    }
}



/* --- Variables --- */
:root {
    --theme-brown: #855F34;
    --font-heading: 'Elsie', serif;
    --font-body: 'Poppins', sans-serif;
}

/* --- Section Setup --- */
.luxury-wellness-section {
    position: relative;
    background-color: #F9F9F7;
    padding: 0 20px 0 20px;
    font-family: var(--font-body);
    color: var(--theme-brown);
    overflow: visible;
}

.container-wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

.scroll-top-btn {
    position: absolute;
    top: 0;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--theme-brown);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn:hover {
    background-color: #6d4c28;
}

.sun-decoration {
    position: absolute;
    top: -30px;
    left: 70%;
    transform: translateX(-50%);
    width: 10%;
    z-index: 999999;
}

.sun-decoration img {
    width: 100%;
    height: auto;
}

/* --- Grid Layout --- */
.luxury-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.woman-pose-img {
    width: 100%;
    height: auto;
}

/* --- COLUMN 2: CENTER (Content) --- */
.col-center-text {
    padding: 0 20px;
    z-index: 2;
}

.luxury-title {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 25px;
}

.luxury-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.luxury-list {
    list-style: none;
    padding: 0;
}

.luxury-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}

.luxury-list li::before {
    content: '→';
    /* Arrow */
    position: absolute;
    left: 0;
    color: var(--theme-brown);
    font-weight: bold;
}

.col-right-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Circular Mask */
.circle-mask-wrapper {
    height: 100%;
    width: 100%;
}

.circle-mask-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.refresh-badge {
    position: absolute;
    bottom: 90px;
    left: -60px;
    background-color: #855F34;
    color: #fff;
    width: 140px;
    height: 220px;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.badge-logo {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.badge-logo img {
    width: 100%;
    max-width: 50%;
    height: auto;
}

.refresh-badge h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
}

.refresh-badge span {
    font-family: cursive;
    font-size: 18px;
    display: block;
    margin: 5px 0;
}


/* --- Responsive --- */
@media (max-width: 991px) {
    .luxury-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .circle-mask-wrapper img {
        height: auto;
    }

    .col-left-pose {
        height: auto;
        order: 2;
    }

    .col-center-text {
        order: 1;
        text-align: center;
        padding: 100px 0 0 0;
    }



    .col-right-visual {
        order: -1;
        margin-top: 90px;
    }

    .luxury-list {
        text-align: left;
        display: inline-block;
    }

    .sun-decoration {
        left: 50%;
        top: -30px;
        width: 50%;
    }
}

@media (max-width: 768px) {
    .luxury-title {
        font-size: 32px;
    }

    .circle-mask-wrapper {
        width: 300px;
        height: 300px;
    }

    .refresh-badge {
        width: 110px;
        height: 180px;
        left: 0;
        bottom: 10px;
        font-size: 12px;
    }

    .refresh-badge h3 {
        font-size: 20px;
    }

    .scroll-top-btn {
        top: 10px;
        right: 10px;
    }

    .luxury-wellness-section {
        padding: 50px 20px;
    }

}