/* Main Hero Section */
.main-hero-section {
    height: 100vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.main-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(71, 71, 71, 0.5);
    z-index: 1;
}

.main-hero-content {
    z-index: 2;
    color: #fff;
    position: relative;
}

.main-hero-heading {
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: 36px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0px;
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.breadcrumb {
    background: linear-gradient(90deg, rgba(153, 122, 79, 0) 0%, #997A4F 50%, rgba(153, 122, 79, 0) 100%);
    font-size: 16px;
    border-radius: 6px;
    gap: 10px;
    bottom: 10px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    opacity: 0.7;
}

.breadcrumb-item.active {
    color: #fff;
}

@media (max-width: 768px) {
    .main-hero-section {
        height: 60vh;
    }

    .main-hero-heading {
        font-size: 20px;
    }

    .breadcrumb {
        font-size: 14px;
    }
}


/* Image Slider */
.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 30px;
    animation: marquee-desktop 25s linear infinite;
}

.marquee img {
    height: 300px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--box-shadow);
    margin: 10px auto;
}

@keyframes marquee-desktop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-mobile {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .marquee-track {
        animation: marquee-mobile 5s linear infinite;
        gap: 15px;
    }

    .marquee img {
        height: 200px;
        width: auto;
        margin: 10px 0;
    }
}

/* Image Slider */

/* Features */
.feature-box {
    background: var(--color-primary);
}

.feature-heading {
    color: black;
}

.feature-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .feature-img {
        width: 40px;
        height: 40px;
    }
}

/* Features */

/* Difference */

.difference .image-wrapper {
    transition: transform 0.3s ease;
    background: #fff7ec;
    border: 2px dashed var(--color-primary);
    border-radius: 20px;
    box-shadow: 10px 10px 0px var(--color-primary);
    padding: 2px;
}

.difference .image-wrapper img {
    border-radius: 18px;
}

.difference .image-wrapper:hover {
    transform: scale(1.03);
}

/* Difference */

/* Yogic Section */
.yogic-section {
    background: #fff url('../../images/bg/why_yogic_house.png') no-repeat center/cover;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Cards */
.yogic-card {
    outline: 2px dashed var(--color-secondary);
    border-radius: 20px;
    padding: 25px;
    transition: transform 0.3s ease;
    outline-offset: -10px;
}

.yogic-card:hover {
    transform: translateY(-10px);
}

.yogic-card .yogic-card-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid var(--color-secondary);
    object-fit: cover;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.yogic-card .yogic-card-heading {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--color-secondary);
    font-weight: 700;
}


/* Card Themes */
.light {
    background: linear-gradient(180deg, #FFEBCF, #FFFEFE);
}

.dark {
    background: var(--color-primary);
}

/* Responsive */
@media (max-width: 767px) {
    .yogic-card {
        margin-bottom: 20px;
    }
}

/* Yogic Section */


/* Course Fees */
.course_fees_section {
    background: linear-gradient(35.19deg, rgba(210, 188, 152, 0.404706) -38.25%, rgba(242, 242, 242, 0.86) 133.19%);
}

.course_fees_section .main_heading {
    background: var(--color-primary);
    color: var(--color-secondary);
    font-weight: 700;
    padding: 5px 15px;
    font-size: 20px;
    border-radius: 20px;
    font-family: "Cinzel", sans-serif;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 1px 2px var(--color-secondary);
}

.course_fees_section .container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    background-image: url("../../images/bg/coursebox-bg.webp");
    background-size: 20%;
    background-position: center;
    background-repeat: repeat;
    border: 1px solid var(--color-primary);
}

.info_card {
    background: var(--color-secondary);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    color: #fff;
    box-shadow: var(--box-shadow);
}

.info_card .icon_box {
    font-size: 45px;
    color: var(--color-primary);
    margin-right: 20px;
}

.info_card .cfees-head {
    margin: 0;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
}

.info_card .cfees-cont {
    margin: 5px 0 0;
    font-size: 26px;
    font-weight: 700;
}

.info_card .cfees-des {
    margin: 0;
}

.dicount_boxcont {
    background: rgba(5, 136, 55, 0.3);
    box-shadow: var(--box-shadow);
    padding: 15px;
    border-radius: 100px;
}

.discount_box {
    background: rgba(5, 136, 55, 1);
    padding: 15px;
    border-radius: 100px;
    text-align: center;
    color: #fff;
    box-shadow: var(--box-shadow);
}

.discount_box .disc-des {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.discount_box .disc-head {
    margin: 5px 0 0;
    font-size: 30px;
    font-weight: 600;
}

.fee_card_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.fee-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.fee-card {
    background: url(../../images/bg/coursefees-bg.png);
    width: 160px;
    height: 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.fee-card:hover {
    transform: scale(1.05);
}

.fee-card .old-price {
    text-decoration: line-through;
    color: var(--color-secondary);
    font-size: 18px;
    margin-bottom: 0px;
    font-family: "Nunito", sans-serif;
}

.fee-card .new-price {
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    color: var(--color-primary);
    font-size: 36px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 0px;
    text-transform: capitalize;
    text-shadow: 0 1px 0px rgba(0, 0, 0, 0.6);
}

.fee-card .room_type {
    max-width: 97px;
    margin: 0 auto;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    font-family: "Nunito", sans-serif;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .course_fees_section {
        padding-left: 10px;
        padding-right: 10px;
    }
    .course_fees_section .container {
        padding: 10px;
    }

    .info_card {
        flex-direction: row;
        text-align: left;
    }

    .course_fees_section .main_heading {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

    .discount_box .disc-head {
        font-size: 24px;
    }

    .fee-card {
        width: 150px;
        height: 150px;
    }

    .fee-card .old-price {
        font-size: 16px;
    }

    .fee-card .new-price {
        font-size: 18px;
    }

    .fee-card .room_type {
        font-size: 14px;
    }
}

/* Course Fees */

/* Schedule Section */
.schedule-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
    font-family: "Nunito", sans-serif;
}

/* Schedule Table */
.schedule-table {
    max-width: 1140px;
    margin: 0 auto 30px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-primary);
}

.schedule-header {
    background: var(--color-primary);
    color: var(--color-secondary);
    font-weight: 700;
    padding: 5px 15px;
    font-size: 20px;
    border-radius: 20px 20px 0 0;
    font-family: "Cinzel", sans-serif;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 1px 2px var(--color-secondary);
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 25px;
    font-size: 16px;
    background: rgba(204, 163, 105, 0.3);
}

.schedule-row.alt {
    background: #fff;
}

.schedule-row span:first-child {
    font-weight: 700;
    width: 40%;
    text-align: left;
}

.schedule-row span:last-child {
    width: 60%;
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .schedule-row {
        align-items: flex-start;
        padding: 5px 10px;
    }

    .schedule-row span {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
    }

    .schedule-header {
        font-size: 18px;
    }
}

/* Schedule Section */

/* Daily Program */
.daily_program {
    position: relative;
   background: linear-gradient(35.19deg, rgba(210, 188, 152, 0.404706) -38.25%, rgba(242, 242, 242, 0.86) 133.19%);

}

.daily_program .container {
    position: relative;
    z-index: 1;
}
.daily_program .flower-left, .daily_program .flower-right {
    position: absolute;
    top: 50%;
    width: 40%;
    opacity: 0.8;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.daily_program .flower-left {
    left: 0px;
}

.daily_program .flower-right {
    right: 0px;
}

.program_card {
    overflow: hidden;
    padding: 15px;
}

.program_card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    object-fit: cover;
    margin-bottom: 15px;
    z-index: 3;
}

.program_content {
    background: var(--color-secondary);
    padding: 18px 22px;
    border-radius: 20px;
    color: #fff;
    width: 90%;
    z-index: 4;
    position: relative;
    box-shadow: var(--box-shadow);
}

.program_content.reverse {
    flex-direction: row-reverse;
}


.program_left .icon {
    position: absolute;
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    box-shadow: var(--box-shadow);
    font-size: 40px;
    line-height: 40px;
    margin-top: -60px;
    z-index: 5;
}

.program_left .icon.icon_reverse {
   right: 20px;
   left: unset;
}

.program_left .programday_heading {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
}

.program_left .programday_description {
    margin: 0;
}

.program_day {
    border-radius: 10px;
    color: #fff;
    font-weight: 800;
    font-size: 32px;
    line-height: 32px;
    display: block;
    width: 100%;
    margin-bottom: 0;
}

.big_card .program_content {
    justify-content: center;
    gap: 25px;
}

@media (max-width: 768px) {

    .daily_program .container {
        padding-left: 0px;
        padding-right: 0px;
    }

    .program_card {
    padding: 10px;
}

    .program_content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        bottom: 12px;
        width: 95%;
        padding: 10px;
    }

    .program_content.reverse {
        flex-direction: column;
    }

    .program_left {
        max-width: 100%;
        align-items: center;
    }

    .program_left .icon {
    width: 40px;
    height: 40px;
    font-size: 30px;
    line-height: 30px;
    margin-top: -30px;
    left: 20px;
}

    .program_day {
        font-size: 24px;
    }

}

/* Daily Program */

/* Retreat Center */
.retreat-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.mandala-bg {
    background: url("../../images/bg/bg-1.png") center center no-repeat;
    background-size: 70%;
    opacity: 0.03;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    animation: rotate 20s linear infinite;
    transform-origin: center;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.retreat-section .container {
    position: relative;
    z-index: 2;
}

.retreat-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

/* Retreat Center */

/* Yoga Alliance */
.yoga-alliance {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.yoga-alliance .overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px;
    border-radius: 10px;
}

.yoga-alliance .yoga-alli-head {
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    font-family: "Cinzel", sans-serif;
}

.yoga-alliance .yoga-alli-subhead {
    font-size: 4rem;
    font-weight: 500;
    margin-top: 10px;
    color: #fff;
    font-family: "Happy Monkey", system-ui;
}

.yoga-alliance .yoga-alli-content {
    color: #fff;
    margin: 20px auto;
}

.yoga-alliance .yoga-alli-certificate {
    background: white;
    border-radius: 10px;
    padding: 20px 10px;
    margin-top: 40px;
    overflow: hidden;
}

.yoga-alliance .yoga-alli-certificate img {
    max-width: 80%;
    transition: transform 0.3s;
}

.yoga-alliance .yoga-alli-certificate img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .yoga-alliance .yoga-alli-head {
        font-size: 1rem;
    }

    .yoga-alliance .yoga-alli-subhead {
        font-size: 1.5rem;
    }

    .yoga-alliance .yoga-alli-content {
        text-align: justify;
        margin: 10px auto;
    }

    .yoga-alliance .overlay {
        padding: 40px 10px;
    }

    .yoga-alliance .yoga-alli-certificate {
        padding: 15px;
        margin-top: 20px;
    }
}

/* Yoga Alliance */
