/* General Hero Slider Styles */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 200px);
    overflow: hidden;
}

.hero-slider-wrapper .preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.hero-slider-wrapper .preloader img {
    width: 100%;
    /* Size of the loading image */
    max-height: 600px;
    animation: fadeInOut 1s infinite;
    /* Opacity animation */
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}

.hero-slider-wrapper.loading .preloader {
    display: flex;
    /* Ensure it's visible while loading */
}

.hero-slider-wrapper.loading .hero-slider {
    visibility: hidden;
    /* Hide the slider during loading */
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    visibility: visible;
}


.slider-container {
    display: flex;
    align-items: center;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.slider-content {
    display: flex !important;
    align-items: center;
    text-align: left;
    height: calc(100vh - 200px);
    padding: 40px 80px 40px 80px;
    /* Top padding clears the default 95px header */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    box-sizing: border-box;
    position: relative;
    z-index: 1;

}

.slider-text {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.5);
    /* Glass background */
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin-bottom: 40px;
}

.slider-content>.row {
    width: 100%;
    margin: 0;
}

/* removed full-screen gradient overlay to let waves shine through */


/* Hero Waves Animation Styling */
.hero-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.hero-waves span {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    animation: heroRipple 6s infinite ease-out;
}

.hero-waves span:nth-child(2) {
    animation-delay: 2s;
}

.hero-waves span:nth-child(3) {
    animation-delay: 4s;
}

@keyframes heroRipple {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    100% {
        transform: scale(10);
        opacity: 0;
    }
}


.slider-heading {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: var(--primary-color);
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
}

.slick-active .slider-heading {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.slider-text .slider-heading span {
    display: block;
    font-size: 42px;
    color: var(--text-dark);
    font-weight: 400;
    margin-top: 5px;
}

.slider-text p {
    color: var(--text-dark);
    font-size: 19px;
    line-height: 1.7;
    margin: 20px 0;
    font-family: 'Gabriela';
    max-width: 90%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}

.slick-active .slider-text p:nth-of-type(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.slick-active .slider-text p:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.slider-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slick-active .slider-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.slider-buttons a {
    display: inline-block;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
}

.btn-contact-us {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

/* Slider images removed from homepage slider for immersive full-background look */
.slider-image {
    display: none;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}


/* Previous and Next Buttons */
.prev-slide,
.next-slide {
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    z-index: 2;
    background-color: var(--primary-color);
    border: none;
    color: var(--text-light);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* Positioning of Buttons */
.prev-slide {
    left: 10px;
}

.next-slide {
    right: 10px;
}

/* Dots */
.slick-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slick-dots li {
    height: 5px;
}

.slick-dots li button:before {
    content: '' !important;
}

.slick-dots .dot {
    position: absolute;
    width: 12px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 0;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slick-dots .slick-active .dot {
    background-color: var(--text-light);
}


/* Responsive Design */
@media (max-width: 768px) {
    .slider-content::before {
        background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0.8) 70%, transparent 100%);
    }

    .slider-content {
        padding: 40px 35px 20px 35px;
        text-align: center;
    }

    .slider-heading {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .slider-text .slider-heading span {
        font-size: 18px;
    }

    .slider-text p {
        font-size: 14px;
        line-height: 1.2;
    }

    .slider-text,
    .slider-image {
        width: 100%;
        padding: 10px;
    }

    .slider-image {
        height: auto;
        max-height: 40vh;
    }

    .slider-image img {
        height: 100%;
        max-height: 40vh;
        object-fit: cover;
    }

    .slider-buttons {
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .btn-contact-us {
        width: 100%;
        margin-top: 0px;
        padding: 5px 20px;
        font-size: 18px;
    }

    .prev-slide,
    .next-slide {
        width: 20px;
        height: 20px;
    }
}

/* about section */
.about-us {
    position: relative;
    background-color: var(--text-light);
    /* Add your base color here */
    overflow: hidden;

}

.about-us .about-us-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 237px;
    height: 297px;
    background-image: url('../img/bg-img/bg-1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 0;
    opacity: 0.6;
}

.about-us .container {
    position: relative;
    z-index: 1;
    /* Ensures content is above background */
}

.about-us .about-us-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns */
    /* gap: 15px; */
    align-items: center;
}

.about-us .about-us-images .image-wrapper {
    position: relative;
    padding: 10px;
}

.about-us .about-us-images .image-wrapper .about-img1 {
    width: 100%;
    height: auto;
    border-radius: 50px 0 0 0;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    display: block;
    transition: all 0.3s ease;
}

.about-us .about-us-images .image-wrapper .about-img1:hover {
    transform: scale(1.1);
}

.about-us .about-us-images .image-group {
    display: grid;
    grid-template-rows: 1fr 1fr;
    /* Two rows for vertical stacking */
    /* gap: 15px; */
}

.about-us .about-us-images .image-wrapper .about-img2,
.about-us .about-us-images .image-wrapper .about-img3 {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.about-us .about-us-images .image-wrapper .about-img2:hover,
.about-us .about-us-images .image-wrapper .about-img3:hover {
    transform: scale(1.1);
}

.about-us .about-us-images .image-wrapper .about-img2 {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

.about-us .about-us-images .image-wrapper .about-img3 {
    border-radius: 0 0 50px 0;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}


.about-us .description {
    font-family: 'Gabriela';
    color: var(--text-dark);
    line-height: 1.6;
    text-align: justify;
}

/* Counter Section */
.counter-section {
    position: relative;
    padding: 40px 0;
    background: url('../img/home/2.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
}

.counter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.counter-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 calc(16.666% - 30px);
    /* 6 columns by default */
    min-width: 180px;
}

@media (max-width: 991px) {
    .counter-item {
        flex: 1 1 calc(33.333% - 30px);
        /* 3 columns on tablet */
    }

    .counter,
    .svg-container {
        width: 170px;
        height: 170px;
    }

    .number {
        font-size: 28px;
    }

    .text {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .counter-wrapper {
        gap: 15px;
    }

    .counter-item {
        flex: 1 1 calc(50% - 15px);
        /* 2 columns on mobile */
        min-width: 160px;
    }

    .counter {
        width: 160px;
        height: 160px;
    }

    .svg-container {
        width: 160px;
        height: 160px;
    }

    .number {
        font-size: 26px;
    }

    .text {
        font-size: 12px;
    }
}

.counter-section:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: var(--secondary-color);
    opacity: 0.6;
    top: 0;
}

/* Certification Section - Premium UI */
.certification-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 2%, white) 0%, color-mix(in srgb, var(--primary-color) 8%, white) 100%);
    position: relative;
    overflow: hidden;
}

.certification-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.cert-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(244, 123, 32, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cert-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.cert-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
}

.cert-logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.cert-title {
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Kanit', sans-serif;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.cert-divider {
    width: 60px;
    height: 3px;
    background: #f47b20;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.cert-description {
    color: #444;
    font-size: 19px;
    font-weight: 500;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Lora', 'Georgia', serif;
}

@media (max-width: 768px) {
    .cert-container {
        padding: 30px 20px;
    }

    .cert-title {
        font-size: 20px;
    }

    .cert-description {
        font-size: 16px;
    }

    .cert-header {
        flex-direction: column;
        gap: 15px;
    }

    .cert-logo {
        height: 60px;
    }
}

.counter {
    padding: 0 20px;
    position: relative;
    text-align: center;
    width: 200px;
    height: 200px;
    background-color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    overflow: visible;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.counter:hover {
    transform: scale(1.2);
}

.svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    /* Align progress */
}

svg {
    width: 100%;
    height: 100%;
}

circle {
    fill: none;
    stroke-width: 15;
}

.static-circle {
    stroke: var(--secondary-color);
    /* Outer static circle */
    opacity: 1;
}

.progress-circle {
    stroke: var(--primary-color);
    /* Progress circle */
    stroke-dasharray: 628;
    /* 2 * π * r (where r = 100) */
    stroke-dashoffset: 628;
    /* Start as fully hidden */
    transition: stroke-dashoffset 1.5s ease;
}

.number-section {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-light);
    z-index: 2;
    font-family: 'kanit';
    font-weight: 600;
}

.number {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-light);
    z-index: 2;
    font-family: 'kanit';
    font-weight: 600;
}

.text {
    font-size: 16px;
    margin-top: 5px;
    color: var(--text-light);
    font-family: 'Gabriela';
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .counter {
        width: 160px;
        height: 160px;
        margin-bottom: 20px;
    }

    .svg-container {
        width: 160px;
        height: 160px;
    }

    .number {
        font-size: 20px;
    }

    .text {
        font-size: 14px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .counter {
        width: 160px;
        height: 160px;
    }

    .svg-container {
        width: 160px;
        height: 160px;
    }

    .number {
        font-size: 28px;
    }

    .text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .counter {
        width: 150px;
        height: 150px;
    }

    .svg-container {
        width: 150px;
        height: 150px;
    }

    .number {
        font-size: 20px;
    }

    .text {
        font-size: 12px;
    }
}

/* Our Retreats Start */

.retreat {
    padding: 28px 0 63px 0;
    position: relative;
}


.retreat:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/retreat2.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 227px;
    height: 506px;
}

.retreat:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/retreat1.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 227px;
    height: 506px;
}


.retreat .retreat_head {
    position: relative;
    font-family: 'Kanit';
    font-size: 30px;
    font-weight: bold;
    color: var(--text-light);
    text-shadow: 1px 1px 2px var(--text-dark);
    text-align: center;
    margin-bottom: 0;
    z-index: 1;
    transition: all 0.5s ease;
}

.retreat .retreat_subhead {
    position: relative;
    font-family: 'Kanit';
    font-size: 20px;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 12px;
    z-index: 1;
    transition: all 0.5s ease;
}

.retreat_box .time_price {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 350px;
    background: var(--text-dark);
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    padding: 4px 10px;
    margin-bottom: 8px !important;
    margin: auto;
    z-index: 1;
    transition: all 0.5s ease;

}

.retreat_box .time_price .time {
    color: var(--text-light);
    font-family: 'Gabriela';
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

.retreat_box .time_price .price {
    color: var(--text-light);
    font-family: 'Gabriela';
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

.retreat_box .time_price .price span {
    color: var(--text-light);
    font-family: 'Gabriela';
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}


.retreat .common-heading {
    margin-bottom: 55px;
}


.retreat .retreat_box {
    position: relative;
    padding: 13px 9px;
    height: 520px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: var(--primary-color);
    /* Default background color */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background 0.5s ease-in-out;
    /* Smooth transition */
}

/* Fixed Bottom Elements */
.retreat .retreat_box p.text-justify.text-white {
    position: absolute;
    bottom: 90px;
    left: 15px;
    right: 15px;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0;
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

.retreat .retreat_box .btn_sec {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

/* Image container inside the box */
.retreat .retreat_box .retreat_img {
    opacity: 1;
    visibility: visible;
    height: 200px;
    transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out, visibility 0.5s ease-in-out;
    margin-bottom: 15px;
}

/* Image inside the box */
.retreat .retreat_box .retreat_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* On hover, set the image as the background */
.retreat .retreat_box:hover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background 0.5s ease-in-out;
}

/* Fade in background overlay smoothly */
.retreat .retreat_box:hover::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Hide the actual image on hover with smooth effect */
.retreat .retreat_box:hover .retreat_img img {
    opacity: 0;
    visibility: hidden;
}

.retreat .retreat_box:hover .retreat_img {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin-bottom: 0;
}


.retreat .retreat_box .extra-details {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.retreat .retreat_box:hover .extra-details {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
}

@media only screen and (max-width:1400px) {
    .retreat .retreat_box {
        height: 550px;
    }
}

@media only screen and (max-width:767px) {
    .retreat .retreat_box {
        margin-bottom: 20px;
        height: 550px;
    }
}

/* Our Retreats End */

/* Why Choose Start */

.why_choose {
    padding: 22px 0 43px 0;
    position: relative;
    overflow: hidden;
}

.why_choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/logo-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
    /* Control the opacity of the background image here */
    z-index: 0;
}

.why_choose>.container {
    position: relative;
    z-index: 1;
    /* Keep content above the background */
}

.why_choose .content {
    font-family: 'Gabriela';
    font-size: 16px;
    text-align: justify;
}

.why_choose .why_choose_img {
    margin: auto;
    text-align: center;
    align-items: center;
    border: 1px solid var(--primary-color);
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    object-fit: cover;
    overflow: hidden;
}

.why_choose .why_choose_img img {
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.why_choose .why_choose_img img:hover {
    transform: scale(1.2);
}

.mantra-text {
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

@media only screen and (max-width:767px) {
    .why_choose_content {
        flex-direction: column;
    }

    .why_choose_content .content {
        width: 100%;
    }

    .why_choose .why_choose_img {
        margin-bottom: 20px;
    }
}

/* Why Choose End */

/* Join US Start */

.join_us {
    padding: 36px 0 31px 0;
    background: url(../img/joinusbg.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}


.join_us .join_purnambox {
    max-width: 60%;
    margin-left: auto;
    text-align: end;
}

.join_us .join_purnambox .join_head {
    font-family: 'Kanit';
    font-size: 36px;
    font-weight: bolder;
    color: var(--text-light);
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px var(--text-dark);
}

.join_us .join_purnambox .join_subhead {
    font-family: 'Gabriela';
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 23px;
}

@media only screen and (max-width:767px) {
    .join_us .join_purnambox {
        max-width: 100%;
        margin: auto;
        text-align: center;
    }
}

/* Join US End */

/* Accomodation */

.accomodation {
    padding: 22px 0 50px 0;
}

.accomodation .row {
    align-items: center;
    margin-top: 43px;
}

.accomodation .row .middle_col {
    padding: 0;
}

.accomodation .accordion_img_section {
    display: block;
}

.accomodation .accomo_content {
    border: 1px dashed var(--primary-color);
    padding: 16px;
}

.accomodation .accomo_content p {
    font-family: 'Gabriela';
    font-size: 16px;
    text-align: justify;
}

.accomodation .accomo_img {
    height: 200px;
    width: 200px;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    border-radius: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    z-index: 1;
    position: relative;
}

.accomodation .accomo_img img {
    height: 200px;
    width: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.accomodation .accomo_img img:hover {
    transform: scale(1.2);
}

.accomodation .accomo_head {
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    max-width: 200px;
    text-align: center;
    border-radius: 50px;
    margin-top: -5px;
    position: relative;
}

.accomodation .accomo_head p {
    margin-bottom: 0 !important;
    font-family: 'Gabriela';
    font-size: 16px;
    color: var(--black);
    padding: 8px 0;
}

.accomodation .accomo_img_left {
    margin-bottom: 33px;
}

.accomodation .accomo_img_left img {
    position: relative;
    z-index: 999;
}

.accomodation .accomo_img_left .accomo_head:after {
    position: absolute;
    content: '';
    width: 68px;
    height: 11px;
    background: url(../img/accomo_line.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    right: -95px;
    top: 37%;
    transform: translateX(-50%);
}

.accomodation .accomo_img_right {
    margin-bottom: 33px;
    text-align: end;
}

.accomodation .accomo_img_right .accomo_img {
    margin-left: auto;
}

.accomodation .accomo_img_right img {
    position: relative;
    z-index: 999;
}


.accomodation .accomo_img_right .accomo_head:after {
    position: absolute;
    content: '';
    width: 68px;
    height: 11px;
    background: url(../img/accomo_line.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    left: -95px;
    top: 37%;
    transform: translateX(-50%);
    rotate: 180deg;
}

.accomodation .accomo_img_right .accomo_head {
    margin-left: auto;
}

@media only screen and (max-width:767px) {
    .accomodation .accordion_img_section {
        display: flex;
    }

    .accomodation .accomo_img {
        height: 150px;
        width: 150px;
    }

    .accomodation .accomo_head {
        max-width: 150px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .accomodation .accomo_img_left .accomo_head:after {
        display: none !important;
    }

    .accomodation .accomo_img_right .accomo_head:after {
        display: none !important;
    }

    .accomodation .accomo_head p {
        font-size: 14px;
    }

    .accomodation .row .middle_col {
        margin-bottom: 20px;
    }

    .accomodation .accomo_img_left,
    .accomodation .accomo_img_right {
        width: 50%;
    }

    .accomodation .accomo_img_left .accomo_img,
    .accomodation .accomo_img_right .accomo_img {
        text-align: center;
        margin: auto;
    }

    .accomodation .accomo_img_left .accomo_img,
    .accomodation .accomo_img_right .accomo_img {
        text-align: center;
        margin: auto;
    }
}

/* Accomodation */

/* Yoga Teacher Start */

.yoga_teacher {
    padding: 22px 0 31px 0;
}

.teacher .item {
    padding: 20px;
}

.yoga_teacher .teacher_img {
    position: relative;
    overflow: hidden;
    border: 5px solid var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    z-index: 0;
    height: 350px;
    /* Uniform height for the container */
}

.yoga_teacher .teacher_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images fill the container without distortion */
}

.yoga_teacher .teacher_name {
    position: relative;
    top: -15px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background: var(--secondary-color);
    border-radius: 50px;
    font-family: 'Gabarito';
    font-size: 18px;
    padding: 8px 15px;
    margin-bottom: 0;
    width: auto;
    display: block;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    z-index: 1;

}

.yoga_teacher .teacher .teacher_desig {
    background: var(--primary-color);
    border-radius: 20px;
    color: var(--text-light);
    font-family: 'Gabarito';
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
    padding: 10px 5px 15px;
    margin-left: auto;
    margin-right: auto;
    top: -20px;
    position: relative;
    z-index: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.yoga_teacher .teacher .see_more_btn {
    display: block;
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    height: 35px;
    width: 35px;
    border-radius: 100%;
    color: var(--primary-color);
    font-family: 'Gabarito';
    font-size: 16px;
    text-align: center;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    top: -30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.yoga_teacher .teacher .see_more_btn::before,
.yoga_teacher .teacher .see_more_btn::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    z-index: -1;
    pointer-events: none;
    animation: navBtnRipple 2s infinite ease-out;
}

.yoga_teacher .teacher .see_more_btn::after {
    animation-delay: 1s;
}

.yoga_teacher .teacher .see_more_btn:hover {
    transform: scale(1.2);
}

/* Yoga Teacher End */

/* About Founder Start */
.about-founder {
    background-color: #f9f9f9;
}

.about-founder .title {
    color: var(--primary-color);
}

.about-founder .founder-img-animation {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-founder .founder-img-animation .ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    /* Vibrant coral base color from screenshot */
    border-radius: 60px;
    /* Rounded square (not perfect circle) */
    opacity: 0;
    z-index: 1;
    animation: rippleWave 4s infinite ease-out;
}

.about-founder .founder-img-animation .ripple-1 {
    animation-delay: 0s;
}

.about-founder .founder-img-animation .ripple-2 {
    animation-delay: 1.3s;
}

.about-founder .founder-img-animation .ripple-3 {
    animation-delay: 2.6s;
}

@keyframes rippleWave {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.about-founder .founder-img {
    width: 250px;
    height: 250px;
    border: 1px solid var(--primary-color);
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.about-founder .founder-img:hover {
    transform: scale(1.05);
}

.about-founder .founder-name {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.about-founder .founder-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-founder .founder-quote {
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-color);
}

/* About Founder End */

/* Early Bird Discount Start */
.early-bird-discount {
    position: relative;
    padding: 100px 0;
    background: url('../img/home/11.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.early-bird-discount .eb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 90%, transparent) 0%, color-mix(in srgb, var(--secondary-color) 80%, transparent) 100%);
    z-index: 1;
}

.early-bird-discount .eb-content {
    z-index: 2;
}

.early-bird-discount .eb-heading {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.early-bird-discount .eb-title {
    font-family: 'kanit', sans-serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.early-bird-discount .eb-desc {
    font-size: 18px;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto 35px;
    font-family: 'Gabarito';
    opacity: 0.95;
}

.early-bird-discount .eb-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.early-bird-discount .eb-btn::before,
.early-bird-discount .eb-btn::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    z-index: -1;
    pointer-events: none;
    animation: navBtnRipple 2s infinite ease-out;
}

.early-bird-discount .eb-btn::after {
    animation-delay: 1s;
}

.early-bird-discount .eb-btn:hover {
    background: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
}

.early-bird-discount .eb-btn i {
    transition: transform 0.3s ease;
}

.early-bird-discount .eb-btn:hover i {
    transform: rotate(20deg) scale(1.2);
}

@media (max-width: 991px) {
    .early-bird-discount .eb-title {
        font-size: 40px;
    }

    .about-founder .founder-img-animation {
        width: 280px;
        height: 280px;
    }

    .about-founder .founder-img {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 767px) {
    .early-bird-discount {
        padding: 60px 0;
        background-attachment: scroll;
        /* Better for mobile */
    }

    .early-bird-discount .eb-title {
        font-size: 30px;
    }

    .early-bird-discount .eb-heading {
        font-size: 18px;
    }

    .early-bird-discount .eb-desc {
        font-size: 16px;
    }

    .about-founder .founder-img-animation {
        width: 220px;
        height: 220px;
        margin: 20px auto;
    }

    .about-founder .founder-img {
        width: 170px;
        height: 170px;
        border-radius: 30px;
    }

    .about-founder .founder-img-animation .ripple {
        border-radius: 40px;
    }
}

/* Early Bird Discount End */

/* Spiritual Leader Start */
.spiritual-leader .spiritual-leader-desc {
    max-width: 900px;
    font-size: 16px;
    line-height: 1.6;
}

/* Spiritual Leader End */

/* Student Review */
.student_review {
    background: var(--secondary-color);
    padding: 22px 0 39px 0;
    position: relative;
    overflow: hidden;
}

.student_review:after {
    position: absolute;
    content: '';
    background: url(../img/review_bg.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 566px;
    height: 752px;
}

.student_review .review {
    margin-top: 24px;
}

.student_review .owl-carousel .item {
    max-width: 355px;
    margin: auto;
}

.student_review .owl-carousel .owl-stage {
    display: flex;
}

.student_review .owl-carousel .owl-item {
    transform: scale(0.98);
    transition: transform 0.3s ease-in-out;
}

.student_review .owl-carousel .owl-item.active {
    transform: scale(1);
}

.student_review .review_box {
    position: relative;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 47px 25px 35px;
}

.student_review .review_box .gstar {
    display: flex;
    align-items: center;
    gap: 0px;
    position: absolute;
    background: var(--text-light);
    border-radius: 50px;
    top: -15px;
    padding: 0 10px 0 0;
    left: -15px;
}

.student_review .review .owl-item img {
    display: block;
    width: unset;
}

.student_review .review_box .review_content p {
    font-family: 'Gabriela';
    font-size: 16px;
    color: var(--text-light);
    text-align: justify;
}

.student_review .review_box .review_content p .read-more {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.student_review .review_box .review_content p .read-more:hover {
    color: var(--text-light);
    transform: scale(1.2);
}

.student_review .review_box .reviewer_name {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    background: var(--text-light);
    border-radius: 50px;
    bottom: -15px;
    padding: 10px 15px;
    right: -15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.student_review .review_box .reviewer_name p {
    margin-bottom: 0;
    font-family: 'Gabarito';
    font-size: 18px;
    color: var(--primary-color);
}

.student_review .review .owl-stage-outer {
    padding: 20px 0;
}

.student_review .video_review_head {
    background: var(--text-dark);
    border-radius: 20px 0 0 20px;
    max-width: 421px;
    margin-left: auto;
    margin-top: 45px !important;
}

.student_review .video_review_head p {
    color: var(--secondary-color);
    font-family: 'Gabarito';
    font-size: 36px;
    text-align: center;
}

.student_review .video_box iframe {
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

@media only screen and (max-width:767px) {
    .student_review .owl-carousel .item {
        max-width: 300px;
        margin: auto;
    }
}

/* Student Review */

/* Recent Blogs Start */
.blog {
    background-color: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    line-height: 1;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blog-date span {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.blog-date i {
    font-size: 14px;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more-link:hover {
    gap: 12px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.view-all-btn::before,
.view-all-btn::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    z-index: -1;
    pointer-events: none;
    animation: navBtnRipple 2s infinite ease-out;
}

.view-all-btn::after {
    animation-delay: 1s;
}

.view-all-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.05);
}

/* Recent Blogs End */

/* Gallery */


.gallery {
    padding: 40px 0;
}

.photo-gallery {}


.photo-gallery .photo_box {
    width: 100%;
    height: auto;
    padding: 20px;
    overflow: hidden;
    object-fit: cover;
}

.photo-gallery .photo_box img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}


.photo-gallery .owl-carousel .item {
    max-width: 355px;
    margin: auto;
}

.photo-gallery.owl-carousel .owl-stage {
    display: flex;
}

.photo-gallery .owl-carousel .owl-item {
    transform: scale(0.98);
    transition: transform 0.3s ease-in-out;
}

.photo-gallery .owl-carousel .owl-item.active {
    transform: scale(1);
}


/* Gallery */

/* Faq */

.faq {
    padding: 20px 0 110px;
    background: var(--secondary-color) url(../img/faq_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
}

.faq #accordionExample {
    max-width: 800px;
    margin: auto;
    margin-top: 32px !important;
}

.faq .accordion-item {
    background-color: transparent !important;
    border: none !important;
    margin-bottom: 10px;
}

.faq .accordion-body {
    margin-left: 50px;
    background: var(--text-light);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.faq .accordion-header {
    margin-bottom: 0;
    margin-right: 98px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
}

.faq .accordion-button::after {
    width: 20.63px;
    height: 25.47px;
    background-image: url(../img/close.png);
}

.faq .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px;
}

.faq .accordion-button {
    font-size: 16px;
    color: var(--text-light);
    background-color: var(--primary-color);
    border: 0;
    border-radius: 50px;
    padding: 10px;
    border: 2px solid var(--text-light);
}

.faq .accordion-button span {
    background: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--primary-color);
}

.faq .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.faq .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

@media only screen and (max-width: 767px) {
    .faq .accordion-header {
        margin-bottom: 0;
        margin-right: 0;
    }

    .faq .accordion-body {
        margin-left: 0;
    }
}

/* Faq */