/* Banner */
.banner {
    position: relative;
    height: 600px;
    width: 100%;
    align-content: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;

}

.banner::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    /* Gradient overlay for a more premium feel */
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
    top: 0;
    z-index: 1;
}

.banner .content {
    position: relative;
    z-index: 5;
    /* Higher than overlay */
    max-width: 100%;
    height: 100%;
    padding: 20px 0;
    margin-bottom: 30px;
}

.breadcrumb {
    position: relative;
    display: inline-block;
    background: var(--primary-color);
    padding: 8px 40px 8px 20px;
    border-radius: 0 50px 50px 0;
    margin-top: 15px;
    bottom: 0px !important;
    z-index: 5;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: left !important;
}

.breadcrumb ul li {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb ul li a:hover {
    color: var(--secondary-color);
}

.breadcrumb ul li i,
.breadcrumb ul li::after {
    content: '\f105';
    /* FontAwesome Angle Right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb ul li:last-child::after {
    content: '';
}

.banner_heading {
    font-family: 'Kanit', sans-serif;
    font-size: 36px;
    /* Increased for premium look */
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 #fff;
}

.banner_para {
    color: #000;
    font-size: 16px;
    /* Slightly larger */
    line-height: 1.6;
    font-weight: normal;
    margin-bottom: 40px;
    font-family: 'Kanit', sans-serif;
    max-width: 90%;
}



.slider-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.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;
    transition: color 0.3s ease;
}

.btn-contact-us:hover {
    color: #000;
}


.contact {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.contact:hover {
    background: var(--text-dark);
    color: #fff;
}

.details-box {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 420px;
    background: rgba(170, 35, 64, 0.85);
    /* Maroon overlay */
    color: #fff;
    padding: 30px;
    border-radius: 40px 0 0 0;
    /* Softer corner */
    z-index: 5;
    /* Higher than overlay */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}


.details-box .title {
    position: relative;
    font-size: 22px;
    margin-bottom: 15px;
    background: var(--secondary-color, #FAD7A0);
    padding: 8px 35px 8px 15px;
    border-radius: 0 50px 50px 0;
    display: inline-block;
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    color: var(--primary-color, #006064);
    left: -30px;
    border: none;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.highlight ul {
    list-style: none;
    padding: 0;
}

.highlight ul li {
    margin: 8px 0;
    font-size: 16px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
    color: #fff;
}

.highlight ul li i {
    margin-right: 10px;
}

.highlight ul li span {
    color: var(--secondary-color);
    font-weight: 600;
}


.fees table {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    border-collapse: separate;
}

.fees th,
.fees td {
    padding: 8px;
    border: 1px solid var(--secondary-color);
}


.fees th {
    background: transparent;
    color: #000;
}

.fees th.white-bg {
    background: rgba(255, 255, 255, 0.4);
}

.fees td.price-text {
    color: var(--secondary-color, #FAD7A0);
    font-weight: 700;
    font-size: 18px;
}


@media (max-width: 768px) {
    .banner {
        height: auto;
        padding: 15px 0px 0px 0px;
        background-position: center center;
    }

    .banner::before {
        background: linear-gradient(to top, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
    }

    .banner_heading {
        font-size: 22px;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .banner_para {
        max-width: 100%;
        font-size: 14px;
    }

    .slider-buttons {
        align-items: center;
        text-align: center;
        margin: auto;
        display: block;
    }

    .slider-buttons a {
        margin: auto 10px;
    }

    .banner .content {
        margin-bottom: 0px;
        text-align: center;
        height: auto;
    }

    .breadcrumb {
        padding: 8px 10px 8px 10px;
    }

    .details-box {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 20px;
        border-radius: 20px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    }
}

/* Banners */

/* Best Retreat */

.best_retreat {
    position: relative;
}

.best_retreat:after {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-position: center center;
    background: url(../img/best_retreat_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 384px;
    height: 882px;
    z-index: -1;
}

.best_retreat .row {
    align-items: flex-end;
    margin-bottom: 15px;
}

.retreat_img {
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    object-fit: cover;
}

.ceremony_box {
    background: var(--secondary-color);
    border-top: 4px solid var(--primary-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 20px;
    margin-top: 60px;
    padding: 25px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
}

.ceremony_box .ceremony_content {
    text-align: justify;
}

.ceremony_box .ceremony_head {
    background: var(--primary-color);
    border-radius: 50px;
    padding: 10px 35px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: max-content;
    max-width: 90%;
    z-index: 10;
}

/* Best Retreat */

/* Daily Program */

.daily_program {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 25px 0;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(170, 35, 64, 0.2);
    z-index: -1;
}

.daily_program .excursions_heading {
    position: relative;
    color: #fff;
    font-family: 'kanit';
    font-weight: 500;
    font-size: 28px;
    text-shadow: 0 4px 0 #000;
}

.daily_program .excursions_heading:after {
    content: '';
    position: absolute;
    top: 85%;
    left: 5px;
    width: 100%;
    height: 20px;
    background-image: url(../img/line8.png);
    background-repeat: no-repeat;
}

.program-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.daily_program .day-box {
    background: rgba(255, 255, 255, 0.66);
    border-radius: 20px;
    padding: 25px;
    margin-top: 35px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.daily_program .day-box .day-title {
    background: var(--primary-color);
    border-radius: 50px;
    max-width: 350px;
    padding: 7px 20px;
    color: #fff;
    margin-top: -45px;
    margin-left: 0px;
    margin-bottom: 10px;
    text-align: left;
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
}

.daily_program .day-box ul li {
    font-family: 'Gabarito';
    color: #000;
    font-size: 16px;
}

.daily_program .program_highlights {
    border: 2px dashed var(--secondary-color);
    padding: 15px;
    margin-top: 105px;
}

.daily_program .program_highlights .buddh_god {
    margin-top: -130px;
}

.daily_program .program_highlights .highlight_box {
    background: rgba(255, 255, 255, 0.72);
    padding: 15px;
}

.highlight_box .highlight_head {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .program-container {
        grid-template-columns: 1fr;
    }

    .highlight-content {
        flex-direction: column;
    }
}

/* Daily Program */


/* 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: 550px;
    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 */


/* Daily Schedule */

.daily_schedule {
    padding: 35px 0;
    position: relative;
}

.daily_schedule:after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background-position: center center;
    background: url(../img/daily_schedule.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 774px;
    height: 443px;
    z-index: -1;
}

.daily_schedule .schedule_cont {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 38px;
    margin-top: 60px;
}

.daily_schedule .schedule_cont .schedule_box {
    flex: 30%;
    max-width: 30%;
    text-align: center;
    max-width: 291px;
    margin: auto;
    border-radius: 50px;
    background: var(--secondary-color);
    border: 1px solid var(--text-dark);
    position: relative;
    margin-top: 15px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.daily_schedule .schedule_cont .schedule_box .schedule_time {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    width: 269px;
    max-width: 100%;
    margin: auto;
    border-radius: 50px;
    padding: 7px 0;
    font-weight: 600;
    font-family: 'Kanit';
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.daily_schedule .schedule_cont .schedule_box .schedule_for {
    color: #000;
    padding: 7px 0;
    font-weight: 600;
    font-family: 'Kanit';
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .daily_schedule .schedule_cont .schedule_box {
        flex: 100%;
        max-width: 100%;
    }

    .daily_schedule:after {
        width: 100%;
    }
}

.daily_schedule .note_text {
    font-family: 'Gabriela', serif;
    font-size: 18px;
    color: var(--primary-color);
    background: var(--secondary-color);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Daily Schedule */


/* Accomodation */

.accomodation {
    padding: 22px 0 50px 0;
}

.accomodation .row {
    align-items: center;
    margin-top: 43px;
}

.accomodation .row .middle_col {
    padding: 0;
}

.accomodation .accomo_content {
    border: 1px dashed var(--primary-color);
    padding: 16px;
}

.accomodation .accomo_content p {
    font-family: 'Gabriela';
    font-size: 16px;
    text-align: justify;
}

.food-info {
    background: var(--secondary-color) !important;
    border-left: 5px solid var(--primary-color) !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.food-info:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-5px);
}

.food-info .heading {
    color: var(--primary-color);
    font-weight: 700;
}



/* Accomodation */

/* Provide In Retreats */

.provide_retreats {
    position: relative;
    padding: 80px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    overflow: hidden;
}

.provide_retreats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 100%);
    z-index: -1;
}

.provide_retreats .container {
    position: relative;
    z-index: 1;
}

.provide_retreats .provide_box {
    background: var(--secondary-color);
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    margin-top: 120px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
}

.provide_retreats .provide_box .provide_img {
    margin-top: -75px;
    margin-left: auto;
    margin-right: auto;
    height: 115px;
    width: 115px;
    text-align: center;
    background-color: var(--primary-color);
    border-radius: 100%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
    align-items: center;
    display: flex;
    ;
}

.provide_retreats .provide_box .provide_img img,
.provide_retreats .provide_box .provide_img i {
    font-size: 35px;
    color: #fff;
    transition: all 0.3s ease;
    margin: auto;
}

.provide_retreats .provide_box .provide_img:hover img,
.provide_retreats .provide_box .provide_img:hover i {
    transform: scale(1.2);
}

.provide_retreats .provide_box .provide_head {
    text-align: center;
    font-family: 'Gabarito';
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-color);
}

.provide_retreats .provide_box .provide_content {
    text-align: center;
    font-family: 'Gabriela';
    font-size: 16px;
    color: #000;
}

/* Provide In Retreats */

/* Sample Healing */

.sample_healing {
    padding: 35px 0 50px 0;
}

.sample_healing .healing_content {
    margin-top: 35px;
}

.sample_healing .healing_btn {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    color: var(--primary-color);
    background: var(--secondary-color);
    border-radius: 50px;
    padding: 5.5px 15px;
    text-decoration: none;
    max-width: 135px;
    margin: auto;
    display: block;
    margin-top: 70px !important;
    text-align: center;
}

/* Sample Healing */


/* Inclusions & Exclusions */

.inclusions_exclusions .inclusion {
    background: var(--primary-color);
    padding: 20px 10px;
}

.inclusions_exclusions .exclusion {
    background: var(--secondary-color);
    padding: 20px 10px;
}

.inclusions_exclusions .inclusion_box {
    max-width: 90%;
    margin: auto;
    position: relative;
}

.inclusions_exclusions .inclusion_box::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-position: center center;
    background: url(../img/icon/like.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 350px;
    height: 350px;
    z-index: 0;
    opacity: 0.3;
}

.inclusions_exclusions .inclusion_box .content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.inclusions_exclusions .inclusion_box ul li {
    font-family: 'Gabarito';
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

.inclusions_exclusions .inclusion_box .inclu_head {
    text-align: center;
    font-family: 'Gabarito';
    font-size: 32px;
    color: #FFECBE;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.inclu_hr {
    border: 0;
    background: #FFECBE;
    margin-bottom: 20px;
    height: 3px;
    width: 60%;
}

.inclusions_exclusions .exclusion_box {
    max-width: 90%;
    margin: auto;
    position: relative;
}

.inclusions_exclusions .exclusion_box::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-position: center center;
    background: url(../img/icon/dislike.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 350px;
    height: 350px;
    z-index: 0;
    opacity: 0.5;
    filter: invert(1);

}

.inclusions_exclusions .exclusion_box .content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.inclusions_exclusions .exclusion_box .exclu_head {
    text-align: center;
    font-family: 'Gabarito';
    font-size: 32px;
    color: #493812;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.exclu_hr {
    border: 0;
    background: #493812;
    margin-bottom: 20px;
    height: 3px;
    width: 60%;
}

.inclusions_exclusions .exclusion_box ul li {
    font-family: 'Gabarito';
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
}

/* Inclusions & Exclusions */
/* 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 */

/* Student Review */

/* 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 */

/* 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 */

/* YTTC Page Modernization Styles */
.who-is-for {
    background: #fdf6f6;
    border: 1px solid var(--primary-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.who-is-for .title {
    color: var(--primary-color);
    font-weight: 700;
}

.who-is-for .fa-check-circle {
    color: var(--primary-color) !important;
}

.approach-details {
    background: var(--text-dark);
    border: 1px solid var(--secondary-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    color: var(--text-light);
}

.approach-details .title {
    color: var(--secondary-color);
    font-weight: 700;
}

.reasons_to_try {
    background: var(--primary-color) !important;
    color: white !important;
}

.cta_mini_card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta_mini_card .btn-light {
    color: var(--primary-color) !important;
}

.detailed_syllabus {
    background: linear-gradient(to bottom, var(--secondary-color), #fff);
}


.detailed_syllabus .accordion-button {
    font-family: 'Kanit', sans-serif !important;
    background-color: var(--primary-color) !important;
    color: white !important;
    transition: all 0.3s ease;
}

.detailed_syllabus .accordion-button:not(.collapsed) {
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.detailed_syllabus .accordion-button.collapsed {
    background-color: var(--primary-color) !important;
    color: var(--text-light);
}

.detailed_syllabus .accordion-button::after {
    filter: brightness(0) invert(1);
}

.detailed_syllabus .accordion-body {
    background-color: var(--secondary-color) !important;
    color: var(--text-dark) !important;
    border: 1px solid var(--primary-color) !important;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.detailed_syllabus .accordion-item {
    border: none !important;
    background: transparent !important;
}

.detailed_syllabus .accordion-button i {
    color: var(--secondary-color) !important;
    /* Make icons stand out on primary bg */
}

.daily_schedule .title {
    color: var(--primary-color) !important;
}

.accommodation-carousel .item {
    width: 100%;
    height: auto;
    padding: 20px;
    overflow: hidden;
    object-fit: cover;
}

.accommodation-carousel .item 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;
}


.accommodation-carousel .item .item {
    max-width: 355px;
    margin: auto;
}

.accommodation-carousel.item .owl-stage {
    display: flex;
}

.accommodation-carousel .item .owl-item {
    transform: scale(0.98);
    transition: transform 0.3s ease-in-out;
}

.accommodation-carousel .item .owl-item.active {
    transform: scale(1);
}


@media (max-width: 768px) {
    .accommodation-carousel .item img {
        height: 250px;
    }
}

.photo-gallery .gallary_photo .item img {
    height: 250px !important;
    object-fit: cover !important;
    width: 100% !important;
}

/* Enhanced note_text for YTTC */
.daily_schedule .note_text {
    max-width: 500px;
    background: #fff9f0 !important;
    border: 2px solid var(--primary-color) !important;
    padding: 1rem !important;
    border-radius: 1rem !important;
    transition: transform 0.3s ease;
}

.daily_schedule .note_text:hover {
    transform: translateY(-5px);
}

.daily_schedule .note_text p {
    color: var(--primary-color) !important;
    font-family: 'Gabarito' !important;
    font-size: 18px !important;
}
/* Quick Enquiry Form Style */
.quick-enquiry {
    background-color: var(--primary-color);
}

.quick-enquiry .enquiry-card {
    background-color: var(--text-light);
    border-radius: 20px;
    padding: 30px 40px;
    border: 8px solid rgba(255, 255, 255, 0.1);
}

.quick-enquiry .form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Kanit', sans-serif;
}

.quick-enquiry .form-subtitle {
    font-size: 14px;
    font-family: 'Gabarito', sans-serif;
}

.quick-enquiry .form-label {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.quick-enquiry .form-control,
.quick-enquiry .form-select {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.quick-enquiry .form-control:focus,
.quick-enquiry .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(170, 35, 64, 0.1);
}

.quick-enquiry .btn-submit {
    background-color: var(--black);
    color: var(--text-light);
    border: none;
    transition: all 0.3s ease;
}

.quick-enquiry .btn-submit:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.quick-enquiry .btn-action-black {
    background-color: var(--black);
    color: var(--text-light);
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-enquiry .btn-action-black:hover {
    background-color: var(--text-dark);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .quick-enquiry .enquiry-card {
        padding: 20px;
    }
    
    .quick-enquiry .form-title {
        font-size: 22px;
    }
}
