/* 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;
}

.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;
    }
}

/* 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 */

/* Yoga Course */
.course-box {
    background: url(../../images/bg/coursebox-bg.webp);
    background-position: center center;
    background-repeat: repeat;
    background-size: 20%;
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    padding: 25px;
}


.course-box .heading {
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 5px 0;
    border-radius: 8px;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
    font-family: "cinzel", serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1;
}

.course-details,
.course-fees {
    padding: 0 15px;
}

.course-details li {
    font-size: 24px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-details li:not(:last-child) {
    border-bottom: 1px dashed rgba(71, 71, 71, 0.5);
}


.course-details li p {
    color: var(--color-primary);
    margin-bottom: 5px;
}

.course-details li .value {
    color: var(--color-secondary);
}

.course-details i {
    color: #b89454;
    margin-right: 8px;
}


.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: #000;
    font-size: 18px;
    margin-bottom: 0px;
}

.fee-card .new-price {
    font-weight: 900;
    color: var(--color-primary);
    font-size: 36px;
    line-height: 1;
    text-align: center;
    margin-bottom: 5px;
    text-transform: capitalize;
    text-shadow: 0 1px 0px rgba(0, 0, 0, 1);
}

.fee-card .room-type {
    max-width: 60%;
    margin: 0 auto;
    line-height: 20px;
    color: var(--color-secondary);
    font-weight: 800;
}

.course-location {
    background-color: var(--color-secondary);
    color: white;
    padding: 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 400px;
    width: 100%;
}

.course-location .loc-icon {
    width: 50px;
    height: 50px;
    color: var(--color-primary);
    align-items: center;
    justify-content: center;
}

.course-location .loc-heading {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: left;
}

.course-location .loc-value {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
    text-align: left;
}

@media (max-width: 767px) {
    .course-box {
        padding: 15px;
    }

    .course-box .heading {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .course-details li {
        font-size: 14px;
        margin: 10px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .fee-card {
        width: 150px;
        height: 150px;
    }

    .fee-card .old-price {
        font-size: 16px;
    }

    .fee-card .new-price {
        font-size: 24px;
    }

    .fee-card .room_type {
        font-size: 14px;
    }
}

/* Yoga Course */


/* Subjects Covered */
.subjects {
    background: rgba(204, 163, 105, 0.3);
    position: relative;
}

.subjects .subheading-box {
    background-color: var(--color-primary);
    display: inline-block;
}

.subject-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px 10px;
    border: 2px solid var(--color-primary);
    box-shadow: 10px 10px 0px var(--color-secondary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
    text-align: center;
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0 #000;
}

.subject-card img {
    max-width: 185px;
    margin: auto;
}

.subject-card .heading {
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 18px;
    text-transform: uppercase;
}

.subject-carousel .owl-nav button {
    position: absolute;
    top: 40%;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    font-size: 24px;
    color: #fff !important;
}

.subject-carousel .owl-nav .owl-prev {
    left: -50px;
    background: var(--color-secondary) !important;
    width: 30px;
    height: 30px;
}

.subject-carousel .owl-nav .owl-next {
    right: -50px;
    background: var(--color-secondary) !important;
    width: 30px;
    height: 30px;
}

.subject-carousel .owl-nav .owl-prev:hover,
.subject-carousel .owl-nav .owl-next:hover {
    background: var(--color-primary) !important;
}

@media (max-width: 767px) {
    .subject-card {
        padding: 15px 5px;
        margin: 10px;
        text-align: center
    }

    .subject-card img {
        max-width: 100px;
    }

    .subject-card .heading {
        font-size: 16px;
    }

    .subject-carousel .owl-nav .owl-prev {
        left: 0px;
    }

    .subject-carousel .owl-nav .owl-next {
        right: 0px;
    }
}

/* 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 */

/* About Course */
.about-course-section {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    min-height: 400px;
}

.about-course-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 0;
}

.about-course-section .container {
    position: relative;
    z-index: 1;
}

/* Upcoming Dates */
.upcoming-dates {
    background: url('../../images/bg/bg-1.png') no-repeat center center/cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.upcoming-dates::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.upcoming-dates .container {
    position: relative;
    z-index: 1;
}

.upcoming-dates .common-btn {
    margin: unset;
    margin-bottom: -30px;
}

/* Grid */
.dates-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}

/* Each Date Box */
.date-item {
    width: 48%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center
}

.date-icon {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 5px solid var(--color-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 3;
}

.date-icon::before {
    content: "";
    position: absolute;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 3;
}

.date-icon .icon,
.date-icon i {
    height: 40px;
    width: 40px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-secondary);
}

.date-details {
    left: 0px;
    background: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 20px 20px 40px 20px;
    padding: 15px 15px 15px 45px;
    transition: 0.3s;
    position: relative;
    width: 100%;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.date-details .date-text {
    transition: all 0.3s ease;
}

.date-text .date {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    text-shadow: var(--color-secondary);
}

.date-text .seat {
    font-size: 16px;
    color: var(--color-secondary);
    margin: 3px 0 0;
}

.book-now-date-btn {
    position: relative;
    text-align: end;
    transition: all 0.3s ease;
}

.date-item:hover .date-text {
    transform: translateY(5px);
}

.date-item:hover .book-now-date-btn {
    transform: translateY(-5px);
}


/* Responsive */
@media (max-width: 992px) {
    .dates-grid {
        gap: 20px;
    }

    .date-item {
        width: 100%;
        margin: auto;
    }

    .date-icon {
        height: 60px;
        width: 60px;
        border-width: 2px;
    }

    .date-icon::before {
        height: 60px;
        width: 60px;
    }

    .date-icon .icon,
    .date-icon i {
        height: 24px;
        width: 24px;
    }

    .date-details {
        transform: translateX(-20px);
    }

    .date-text .date {
        font-size: 16px;
    }

    .date-text .seat {
        font-size: 14px;
    }

    .date-item:hover .date-text {
        transform: translateY(0px);
    }

    .date-item:hover .book-now-date-btn {
        transform: translateY(0px) translateX(-5px);
    }

}

/* Upcoming Dates */

/* 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 */

/* Enquery */

.inquiry-section {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Nunito", sans-serif;
    position: relative;
    background:
        linear-gradient(35.19deg, rgba(210, 188, 152, 0.404706) -38.25%, rgba(242, 242, 242, 0.86) 133.19%);

}

.inquiry-section .flower-left,
.inquiry-section .flower-right {
    position: absolute;
    top: 50%;
    width: 300px;
    opacity: 0.8;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.inquiry-section .flower-left {
    left: 0px;
}

.inquiry-section .flower-right {
    right: 0px;
}

.inquiry-section .container {
    position: relative;
    z-index: 1;
}

.inquiry-header {
    background: var(--color-primary);
    color: var(--color-secondary);
    font-weight: 700;
    padding: 5px 15px;
    margin-bottom: 0px;
    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);
}

.inquiry-header p {
    margin-bottom: 0px;
}

.inquiry-form {
    padding: 20px;
    background: #fff;
    border-radius: 0px 0px 20px 20px;
    max-width: 97%;
    margin: auto;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-primary);
}

.inquiry-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.inquiry-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.inquiry-form .form-group.full {
    width: 100%;
}

.inquiry-form label {
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.inquiry-form input,
.inquiry-form textarea {
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    background: #f5e7d2;
    padding: 12px 15px;
    font-size: 15px;
    color: var(--color-secondary);
    outline: none;
    transition: all 0.2s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: var(--color-primary);
    background: #fffaf3;
}

.inquiry-form .form-btn {
    text-align: center;
    margin-top: 20px;
}

.form-btn button {
    background: #c89c69;
    color: #222;
    font-weight: 700;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.form-btn button:hover {
    background: #b7854d;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .inquiry-header {
        font-size: 20px;
        border-radius: 20px 20px 0 0;
    }

    .form-row {
        flex-direction: column;
    }

    .inquiry-form {
        padding: 10px 5px;
    }

    .inquiry-form input,
    .inquiry-form textarea {
        border-radius: 10px;
        padding: 5px 15px;
        font-size: 14px;
    }

}

/* Enquery */


/* Curriculam */
.curriculum-section .accordion-item {
    margin-bottom: 37px;
}

.custom-accordion .accordion-button-custom {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 20px;
    font-weight: 800;
    padding: 8px 15px;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: var(--box-shadow);
    font-size: 16px;
    position: relative;
}

.custom-accordion .accordion-button-custom:hover {
    background-color: var(--color-secondary);
    color: #fff;
}


.custom-accordion .accordion-button-custom::before {
    content: "\f5bb";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
    position: absolute;
    left: 20px;
}

.custom-accordion .accordion-button-custom::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
    position: absolute;
    right: 20px;
}

.custom-accordion .accordion-button-custom:not(.collapsed)::after {
    transform: rotate(180deg);
}


.custom-accordion .accordion-body-custom {
    background: #fff;
    border: 1px solid var(--color-primary);
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 16px 24px;
    box-shadow: var(--box-shadow);
    max-width: 95%;
    margin: auto;
}

.custom-accordion ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.custom-accordion ul li i {
    color: var(--color-primary);
    font-size: 14px;
}

/* Curriculam */

/* 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 */

