/* Retreats Page Modern Styles */

:root {
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Background Helpers --- */
.section-bg-hero {
    background-image: url('../img/retreats/banner.jpg');
}

.section-bg-provide {
    background-image: url('../img/retreats/img6.jpg');
}

.section-bg-join {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../img/retreats/img7.jpg');
    background-size: cover;
    background-position: center;
}

/* --- Hero Section --- */
.retreat-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.retreat-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
    margin: 0 auto;
}

.hero-tagline {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.hero-title {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-desc {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 45px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* --- Hero Breadcrumbs (Pill) --- */
.breadcrumb-list {
    z-index: 5;
    bottom: 0;
    position: absolute;
    width: 100%;
    text-align: start;
    background: var(--primary-color);
    border-radius: 50px;
}

.hero-breadcrumb-list {
    list-style: none;
    padding: 20px 50px;
    bottom: 0;
    display: inline-flex;
    gap: 15px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.hero-breadcrumb-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.hero-breadcrumb-list a:hover {
    color: var(--secondary-color);
}

.hero-breadcrumb-list span {
    color: var(--text-light);
    opacity: 0.3;
}

/* --- Contact Button (Premium) --- */
.btn-contact-us {
    font-size: 16px;
    color: var(--primary-color);
    background: transparent;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-contact-us:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(170, 35, 64, 0.2);
}

/* --- Pricing Section --- */
.pricing-details-section {
    background: var(--text-light);
    position: relative;
    z-index: 10;
}

/* --- Retreat Description Section --- */
.retreat-description {
    position: relative;
    overflow: hidden;
}

.retreat-description::after {
    position: absolute;
    content: "";
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 384px;
    height: 882px;
    z-index: -1;
    background: url(../img/best_retreat_bg.png) 0% 0% / cover no-repeat;
    opacity: 0.8; /* Subtle touch */
    pointer-events: none;
}

.pricing-card-modern {
    background: var(--primary-color);
    padding: 20px 35px;
    border-radius: 20px;
    color: var(--text-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

/* --- Corner Ripple Animation --- */
.card-ripple-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.ripple {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.ripple-tr {
    top: 0;
    right: 0;
}

.ripple-bl {
    bottom: 0;
    left: 0;
}

.ripple::before,
.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: ripple-wave 4s infinite;
}

.ripple::after {
    animation-delay: 2s;
}

@keyframes ripple-wave {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }

    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
    }
}

.card-label {
    background: var(--text-light);
    color: var(--primary-color);
    display: inline-block;
    padding: 6px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.pricing-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.pricing-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.pricing-box .room-type {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.price-line:last-child {
    margin-bottom: 0;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
    text-transform: uppercase;
}

.price-value-box {
    text-align: right;
}

.old-price {
    font-size: 16px;
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 10px;
}

.new-price {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.price-unit {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.6;
    margin-left: 5px;
}

.card-inclusion-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    position: relative;
    z-index: 2;
}

.inclusion-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-inclusion-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}

.card-inclusion-list li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 20px;
}

/* --- Section Stylings --- */
.retreat-section-title {
    color: var(--primary-color);
    font-weight: 700;
}

.best-retreat-img {
    border: 5px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.retreat-card-wrapper {
    background: var(--secondary-color);
    border-left: 6px solid var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    height: 100%;
}

.retreat-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.retreat-feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.retreat-feature-list li i {
    color: var(--primary-color);
    margin-right: 12px;
}

.daily_schedule {
    position: relative;
    background-image: url('../img/retreats/img4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--text-light);
}

.daily-schedule-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
}

.daily_schedule .container {
    position: relative;
    z-index: 2;
}

.schedule-container-modern {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--primary-color);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}


.schedule-item-modern {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 10px 15px;
    border-radius: 10px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.schedule-item-modern:hover {
    background: var(--secondary-color);
    transform: translateX(12px);
    border-color: var(--text-dark);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.schedule-time-badge {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: 12px;
    min-width: 130px;
    text-align: center;
    font-weight: 700;
    margin-right: 25px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.schedule-item-modern:hover .schedule-time-badge {
    background: var(--primary-color);
    color: var(--text-light);
}

.schedule-time-badge.bg-dark {
    color: var(--text-light);
}

.schedule-details p {
    margin-bottom: 0px;
}

.schedule-details .fw-bold {
    font-size: 19px;
    color: var(--text-light);
    display: block;
    margin-bottom: 3px;
}

.schedule-item-modern:hover .schedule-details p {
    color: var(--primary-color);
}


.schedule-details .text-muted {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 14px;
    font-weight: 400;
}

.schedule-item-modern:hover .schedule-details .text-muted {
    color: var(--text-dark) !important;
}


.accomo-info-card {
    background: var(--text-light);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--card-shadow);
}

.accomo-info-card .title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}


.buffet-menu-card {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 35px;
    border-radius: 25px;
    height: 100%;
}

@media (max-width: 991px) {
    .accomo-info-card {
        padding: 20px 10px;
    }

    .buffet-menu-card {
        padding: 20px 10px;
    }
}

.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-box-grid {
    background: rgba(212, 183, 115, 0.7);
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    padding: 60px 20px 20px;
    margin-top: 60px;
    text-align: center;
    height: calc(100% - 60px);
}

.provide-icon-wrapper {
    background: var(--primary-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -110px auto 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.provide-icon-wrapper img {
    filter: invert(1);
    height: 50px;
}


.inclusion-box-modern {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 40px;
    border-radius: 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.inclusion-box-modern::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -70px;
    right: -20px;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    pointer-events: none;
}

.inclusion-box-modern .title {
    color: var(--secondary-color);
    font-weight: 700;
}

.exclusion-box-modern {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 25px;
    height: 100%;
    border: 1px solid rgba(170, 35, 64, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.exclusion-box-modern::before {
    content: '\f057';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -70px;
    right: -20px;
    font-size: 180px;
    color: rgba(170, 35, 64, 0.08);
    z-index: -1;
    pointer-events: none;
}

.exclusion-box-modern .title {
    color: var(--primary-color);
    font-weight: 700;
}

.exclusion-box-modern i {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .pricing-card-modern {
        padding: 40px 30px;
    }
}

@media (max-width: 991px) {
    .retreat-hero {
        padding: 40px 0 40px;
        /* Restoring a bit more breathing room */
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card-modern {
        padding: 40px 25px;
        margin-top: 20px;
    }

    .card-label {
        margin-bottom: 0px;
    }

    .card-inclusion-list {
        grid-template-columns: 1fr 1fr;
        /* 2 columns for tablets specifically */
        gap: 15px;
    }

    .schedule-container-modern {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .card-inclusion-list {
        grid-template-columns: 1fr;
        /* Stacks only on mobile */
    }

    .new-price {
        font-size: 22px;
        /* Slightly larger for mobile stack */
    }

    .old-price {
        font-size: 14px;
    }

    .pricing-box .room-type {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .price-line {
        flex-direction: column;
        align-items: center;
        /* Center prices on mobile for better balance */
        gap: 8px;
        text-align: center;
    }

    .price-value-box {
        text-align: center;
    }

    .pricing-box .room-type {
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .pricing-card-modern {
        padding: 30px 15px;
    }
}

/* --- Booking Form Section --- */
.booking-form-section {
    position: relative;
    z-index: 5;
}

.booking-card-modern {
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.booking-info-content .title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.booking-info-content .title span {
    color: var(--primary-color);
}

.booking-info-content .note {
    border-color: var(--primary-color) !important;
}

.booking-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.booking-benefits li {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.booking-benefits li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
}

.form-wrapper-modern {
    background: #f8f9fa;
    border: 1px solid var(--primary-color);
    padding: 20px;
    border-radius: 20px;
}

.form_input_wrap {
    margin-bottom: 5px;
}

.form_input_wrap .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form_input_wrap .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.form_input_wrap .form-control:focus {
    box-shadow: 0 0 0 4px rgba(170, 35, 64, 0.1);
    border-color: var(--primary-color);
}

@media (max-width: 991px) {
    .booking-card-modern {
        padding: 20px 10px;
    }

    .booking-info-content h2.title {
        font-size: 32px;
        text-align: center;
    }

    .booking-benefits {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .booking-benefits li {
        margin-bottom: 0;
    }
}

/* --- Accommodation & Food Slider Styles --- */
.yoga-lifestyle-carousel .item img {
    height: 200px !important;
    object-fit: cover !important;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.yoga-lifestyle-carousel .item:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.yoga-lifestyle-carousel .owl-dots {
    margin-top: 30px !important;
    text-align: center;
}

.yoga-lifestyle-carousel .owl-dot span {
    width: 12px !important;
    height: 12px !important;
    background: rgba(170, 35, 64, 0.2) !important;
    border-radius: 50%;
    margin: 5px 7px !important;
    transition: all 0.3s ease;
}

.yoga-lifestyle-carousel .owl-dot.active span {
    background: var(--primary-color) !important;
    width: 30px !important;
    border-radius: 10px;
}

.join_us .title {
    color: var(--primary-color);
}

/* 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 */