/* --Banner-- */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner-carousel .item {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.banner-carousel .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-carousel .content {
    position: relative;
    text-align: center;
    max-width: 70%;
    z-index: 2;
    padding: 0 15px;
}

.banner-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;
}

.banner-carousel .banner-subheading {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 0;
    color: #fff;
    margin-bottom: 20px;
}

.banner-carousel .banner-text {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 50px;
}

/* Carousel nav buttons */
.banner-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 60px;
    right: 60px;
    display: flex;
    justify-content: space-between;
    width: 95%;
    pointer-events: none;
    z-index: 2;
    transform: translateY(-50%);
}

.banner-carousel .owl-nav button,
.banner-carousel .owl-nav .nav-btn {
    background: none;
    border: none;
    outline: none;
    font-size: 16px !important;
    color: var(--color-primary, #CCA369);
    cursor: pointer;
    pointer-events: auto;
    transition: color 0.2s;
}

.banner-carousel .owl-nav button:hover,
.banner-carousel .owl-nav .nav-btn:hover {
    color: var(--color-secondary, #474747);
}

.banner-carousel .owl-nav .nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Dots */
.banner-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
}

@media (max-width: 768px) {
    .banner-carousel .item {
        height: 80vh;
    }

    .banner-carousel .content {
        max-width: 80%;
    }

    .banner-carousel {
        height: 80vh;
    }

    .banner-carousel .banner-heading {
        font-size: 20px;
    }

    .banner-carousel .banner-subheading {
        font-size: 16px;
    }

    .banner-carousel .banner-text {
        font-size: 14px;
    }

    .banner-carousel .owl-nav {
    left: 0px;
    right: 0px;
    width: 100%;
}

    .banner-carousel .owl-nav .nav-btn {
        width: 15px;
        height: 15px;
    }
}

/* --Banner-- */

/* About Secion */
.about-section {
    padding: 40px 0;
}


.stats-card {
    background-color: var(--color-secondary);
    color: #fff;
    border-radius: 12px;
    padding: 10px 60px 10px 10px;
    text-align: left;
    position: relative;
    box-shadow: var(--box-shadow);
    width: 45%;
    max-width: 350px;
    overflow: hidden;
}

.stats-card .icon {
    font-size: 100px;
    color: #fff;
    position: absolute;
    bottom: 0px;
    right: 0px;
    opacity: 0.5;
}

.stats-number {
    font-size: 48px;
    font-weight: 800;
}

.stats-text {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ✅ Responsive adjustments */
@media (max-width: 992px) {
    .about-section {
        padding: 20px 0;
    }

    .stats-card {
        max-width: 300px;
        padding: 15px 50px 15px 15px;
        margin: 5px;
    }

    .stats-number {
        font-size: 40px;
    }

    .stats-card .icon {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .stats-card {
        max-width: 280px;
        padding: 12px 45px 12px 12px;
    }

    .stats-number {
        font-size: 20px;
    }

    .stats-text {
        font-size: 14px;
    }

    .stats-card .icon {
        font-size: 50px;
    }
}

@media (max-width: 576px) {
    .stats-card {
        max-width: 100%;
        padding: 10px 40px 10px 10px;
    }
}

/* About Secion */


/* Mid Hero Section */
/* Hero Section */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55vh;
    background: url('../../images/bg/hero_bg.webp') no-repeat center center/cover;
    position: relative;
}

/* Optional overlay for better text visibility */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-secondary);
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

/* Text Styles */
.hero-content .main-heading {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
    font-family: "Cinzel", serif;
    text-transform: uppercase
}

.hero-content .sub-heading {
    font-size: 95px;
    font-weight: 400;
    margin: 0;
    font-family: "Happy Monkey", system-ui;
    line-height: 1;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-section {
    height: 25vh;
}

    
    .hero-content .main-heading {
        font-size: 18px;
    }

    .hero-content .sub-heading {
        font-size: 36px;
    }
}

/* Mid Hero Section */

/* Courses Section */

.courses-section {
    padding: 40px 0;
    text-align: center;
    background-image:
        linear-gradient(0deg, #ffffff3b, #ffffff7a), linear-gradient(35.19deg, rgba(210, 188, 152, 0.23) -38.25%, rgba(242, 242, 242, 0.49) 133.19%), url(../images/courses_bg.png);
    background-blend-mode: normal, multiply, overlay;
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
}

.courses-section .desc {
    margin-bottom: 20px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;

}

.course-thumbnail {
    overflow: hidden;
    width: 100%;
    height: 220px;
}

.course-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
}

.course-card:hover .course-img {
    transform: scale(1.07);
    /* Slightly less for better layout */
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 5);
}

.course-info {
    padding: 10px 10px 25px;
    text-align: left;
    background:
        url('../../images/course_cardbg.png'),
        linear-gradient(180deg, #FFEBCF 0%, #FFFEFE 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.course_desc {
    padding: 10px 5px;
}

.course_desc .course_name {
    font-family: 'Nunito', sans-serif;
    color: var(--color-primary);
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
}

.course_desc .subtitle {
    color: var(--color-secondary);
    font-size: 20px;
    text-align: center;
    margin-bottom: 0px;
}

.course-info .details {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    font-size: 14px;
    color: var(--color-secondary);
    margin: 10px 0;
    padding-bottom: 5px;
    border-bottom: 2px dashed rgba(71, 71, 71, 0.5);
}

.course-info .details div {
    display: flex;
    align-items: self-start;
    justify-content: start;
}

.course-info .details div p {
    margin-bottom: 0;
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    line-height: 22px;
}

.course-info .details div p span {
    display: block;
    font-weight: 800;
}

.course-info .details .icon,
.price-list li .icon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: 5px;
    background-color: rgba(204, 163, 105, 0.3);
    border-radius: 10px;
    padding: 8px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    color: var(--color-secondary);
}

.price-list li {
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 2px dashed rgba(71, 71, 71, 0.5);
    font-family: "Nunito", sans-serif;
}

.price-list li p {
    margin-bottom: 0;
}

.price-list li:last-child {
    border-bottom: none;
    margin-bottom: 25px;
}


.course-price .price-amount {
    font-size: 18px;
    font-weight: 800;
}


@media (max-width: 992px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .course-grid {
        grid-template-columns: 1fr;
    }

    .course_desc .course_name {
        font-size: 24px;
    }

    .course-info .details .icon,
    .price-list li .icon {
        width: 20px;
        height: 20px;
    }

    .course-info .details div p {
        font-size: 14px;
    }

    .course-price .price-amount {
        font-size: 16px;
    }
}

/* Courses Section */

/* Yogic Section */
.yogic-section {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.yogic-section .flower-left,
.yogic-section .flower-right {
    position: absolute;
    top: 50%;
    width: 300px;
    opacity: 0.8;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.yogic-section .flower-left {
    left: 0px;
}

.yogic-section .flower-right {
    right: 0px;
}

.yogic-section .container {
    position: relative;
    z-index: 1;
}

/* 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: 20px;
    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 */

