:root {
    --mandala-primary-font: "Quicksand", sans-serif;
    --mandala-secondary-font: "Inter", sans-serif;
    --mandala-style-font: "Cinzel Decorative", serif;
    --mandala-style-font2: "Sansation", sans-serif;
    --mandala-style-font3: "Sansita One";
}
* {
    padding: 0;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: #c4cad0 #fff;
    box-sizing: border-box;
    font-family: var(--mandala-style-font2);
    color: #212020;
}
h1,
h2,
h3,
h4,
h5,
h6,
.mandala-title {
    /* font-family: var(--mandala-primary-font); */
    font-family: var(--mandala-style-font2);
}
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*,
:after,
:before {
    box-sizing: border-box;
}
body,
html {
    scroll-behavior: smooth;
    /* height: 100%; */
    /* width: 100%; */
}
body {
    background-color: #ebedf1;
    background-color: #f1f3f4;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.3125rem;
    color: #001d35;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    min-height: 100dvh;
}
/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000 !important;
    background-color: #3d493a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}
.loading-container {
    margin: 40px auto;
}
#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}
.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}
.loading {
    border: 1px solid transparent;
    border-color: transparent #faf9fa transparent #faf9fa;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}
.img__fluid {
    max-width: 100%;
    height: auto;
    border-radius: 100%;
}
@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* custom styles */
.text-center {
    text-align: center;
}
.text-end {
    text-align: end;
}
.flex {
    display: flex;
}
.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
.items-start {
    align-items: flex-start;
}
.flex-col {
    flex-direction: column;
}
.mx-auto {
    margin-inline: auto;
}
.ms-auto {
    margin-inline-start: auto;
}
.me-auto {
    margin-inline-end: auto;
}
.ms-3 {
    margin-left: 1rem;
}
.gap-1 {
    gap: 0.35rem;
}
.gap-2 {
    gap: 0.75rem;
}
.gap-3 {
    gap: 1rem;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-auto {
    margin-top: auto !important;
}
.mt-3 {
    margin-top: 1rem;
}
.mt-4 {
    margin-top: 1.5rem;
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
.box-shadow-none {
    box-shadow: none !important;
}
.container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* END::custom styles */
.page-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
/* Header */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
}
.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}
header {
    align-items: center;
    padding: 1rem 2rem;
    background: #ebedf1;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 20;
    position: sticky;
    top: 0;
    z-index: 50;
    transition: box-shadow 0.3s ease;
}
header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.brand__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
}
.brand__logo span {
    font-weight: bold;
    font-size: 28px;
    line-height: 32px;
    color: #333;
    font-family: var(--mandala-style-font);
}
.navbar-wrapper {
    display: flex;
    align-items: center;
    flex: 1 0;
}
.navbar,
.profile-nav {
    display: flex;
    align-items: center;
}
.navbar-lists {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 0.5rem;
}
.navbar-list {
    position: relative;
}
.navbar-menu {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
    position: relative;
}
.navbar-menu:hover {
    color: #212020;
}
.navbar-list.active .navbar-menu {
    font-weight: 600;
}
.navbar-list.active .navbar-menu::after {
    content: '';
    background-color: hsla(0, 0%, 29%, 1);
    width: 40%;
    height: 1px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

}
.user-media {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #28a745;
}
.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}
.dropdown-menu li a:hover {
    background: #f0f0f0;
}
.arrow-icon {
    display: inline-flex;
    margin-left: 4px;
    transition: transform 0.3s ease;
    margin-left: auto;
}
.dropdown.open .arrow-icon {
    transform: rotate(180deg);
}
/* Hamburger hidden on desktop */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}
/* Home */
.main-banner {
    position: relative;
    display: block;
    z-index: 1;
}
.img_banner__media {
    width: 100%;
    height: calc(100dvh - 200px);
    object-fit: cover;
    object-position: center;
}
.home-wrapper {
    padding-block: 100px 120px;
}
.watermark_media {
    position: relative;
}
.watermark_media__absolute {
    opacity: 0.05;
    inset: calc(0.25rem * 0);
    position: absolute;
    pointer-events: none;
}
.watermark_media__absolute.opacity_watermark {
    opacity: 0.2;
}
/* .watermark_media::after {
    content: '';
    position: fixed;
    bottom: 52px;     
    right: 0;
    z-index: 99;
    width: 150px;
    height: 150px;
    opacity: 0.3; 
    background-image: url(../images/mandala_1.png);
    background-size: 150px;
    background-position: center;
    background-repeat: no-repeat;

} */
.watermark_img {
    max-width: 100%;
    height: auto;
}
.banner-container {
    padding-block: 0px 90px;
    z-index: 1;
    position: relative;
}
.home-container {
    min-height: calc(100dvh - 53px - 81px);
    background-image: url(../images/home-bg.jpg);
    background-size: cover;
    background-position: top;
    position: relative;
    overflow: hidden;
}
.home-container::before {
    content: '';
    background-image: url(../images/home-bg_2.png);
    background-repeat: no-repeat;
    display: inline-block;
    width: 900px;
    height: 900px;
    position: absolute;
    right: -29px;
    top: 0;
    transform: translateX(50%);
    opacity: 0.19;
    mix-blend-mode: Luminosity;
}
.home-container::after {
    content: '';
    background-image: url(../images/home-bg_1.png);
    background-repeat: no-repeat;
    display: inline-block;
    width: 653px;
    height: 653px;
    position: absolute;
    left: 0;
    bottom: 113px;
    transform: translateY(50%);
    opacity: 0.19;
    mix-blend-mode: Luminosity;
}
.watermark_media_about {
    background-image: url(../images/about-bg.jpg);
}
.watermark_media_about::before {
    background-image: url(../images/about-bg_1.png);
    right: 0;
    top: -152px;
    transform: translateX(50%);
    mix-blend-mode: soft-light;
    opacity: 0.4;

}
.watermark_media_about::after {
    background-image: url(../images/about-bg_2.png);
    mix-blend-mode: soft-light;
    opacity: 1;    
    left: auto;
    right: 0;
}
.mandala_main {
    position: relative; 
}
.mandala_main img {
    max-width: 100%;
    height: auto;
}
.mandala-home__content {
    padding-left: 48px;
}
.mandala_main_about.mandala-home__content {
    padding-inline: 0px 12px;
}
.mandala-home__content h2 {
    font-family: var(--mandala-style-font3);
    font-weight: 400;
    font-size: 32px;
    line-height: 37px;
    margin-bottom: 54px;
    font-style: Regular;
    leading-trim: NONE;
}
.mandala-home__content p {
    font-weight: 400;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 24px;
    color: hsla(0, 0%, 29%, 1);
    margin-bottom: 24px;
    font-family: var(--mandala-primary-font);
    text-align: justify;
}
@font-face {
  font-family: 'Amsterdam';
  src: url('../fonts/AmsterdamOne-eZ12l.ttf') format('truetype');
}
.mandala_main_about.mandala-home__content h2 {
    color: hsla(0, 99%, 70%, 1);
}
.mandala-home__content h2 > span {
    font-family: 'Amsterdam';
    color: hsla(0, 99%, 70%, 1);
}

.banner_media img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    width: 100%;
}
.container__flex {
    padding-block: 80px;
}
.mandala_bg {
    /* background-color: #e0dfdb; */
    background-color: hsl(48deg 7.46% 86.86% / 83%);
    background-image: linear-gradient(
        45deg,
        hsl(226deg 100% 97%) 1%,
        hsl(240deg 100% 97%) 39%,
        hsl(260deg 88% 97%) 47%,
        hsl(279deg 88% 97%) 50%,
        hsl(291deg 87% 97%) 51%,
        hsl(310deg 75% 97%) 51%,
        hsl(327deg 73% 97%) 50%,
        hsl(316deg 73% 97%) 49%,
        hsl(311deg 85% 97%) 49%,
        hsl(300deg 85% 97%) 50%,
        hsl(294deg 83% 98%) 53%,
        hsl(278deg 100% 98%) 61%,
        hsl(270deg 100% 98%) 99%
    );
    background-image: linear-gradient(
        45deg,
        hsl(226deg 100% 97%) 0%,
        hsl(240deg 100% 97%) 8%,
        hsl(260deg 88% 97%) 17%,
        hsl(279deg 88% 97%) 25%,
        hsl(291deg 87% 97%) 33%,
        hsl(310deg 75% 97%) 42%,
        hsl(327deg 73% 97%) 50%,
        hsl(316deg 73% 97%) 58%,
        hsl(311deg 85% 97%) 67%,
        hsl(300deg 85% 97%) 75%,
        hsl(294deg 83% 98%) 83%,
        hsl(278deg 100% 98%) 92%,
        hsl(270deg 100% 98%) 100%
    );
    /* background-image: linear-gradient(
        300deg,
        hsl(226deg 68% 74%) 0%,
        hsl(242deg 66% 78%) 18%,
        hsl(259deg 65% 81%) 26%,
        hsl(277deg 62% 85%) 33%,
        hsl(294deg 61% 88%) 39%,
        hsl(312deg 59% 91%) 44%,
        hsl(328deg 56% 95%) 50%,
        hsl(319deg 53% 94%) 56%,
        hsl(308deg 47% 93%) 61%,
        hsl(296deg 46% 93%) 67%,
        hsl(289deg 40% 92%) 74%,
        hsl(278deg 36% 91%) 82%,
        hsl(268deg 32% 91%) 100%
    ); */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.mandala_bg__title {
    padding: 80px 24px;
}
.mandala_bg__title h1 {
    text-align: center;
    font-size: 42px;
    font-family: var(--mandala-style-font);
    font-weight: 600;
    line-height: 54px;
    color: #4d8584;
}
.mandala_bg__title p {
    padding-inline: 24px;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    color: #555555;
}
.about_border__media {
    position: relative;
}
.about_borderTop__box,
.about_borderBottom__box {
    position: absolute;
    top: -16px;
    left: -16px;
    border-top: 1.5px solid #acdfed;
    border-left: 1.5px solid #acdfed;
    width: 40%;
    height: 60%;
}
.about_borderBottom__box {
    top: auto;
    left: auto;
    right: -16px;
    bottom: -16px;
    border-width: 0;
    border-bottom: 1.5px solid #acdfed;
    border-right: 1.5px solid #acdfed;
}
.dot-pattern {
    width: 80px;
    height: 80px;
    position: absolute;
    right: -20px;
    top: -24px;
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns */
    grid-template-rows: repeat(5, 1fr); /* 4 rows */
    gap: 10px;
    width: fit-content;
    /* background-color: #f1f3f4;     */
}
.dot-pattern span {
    width: 4px;
    height: 4px;
    background-color: #7ea68c70; /* matches your dot color */
    border-radius: 100%;
    display: inline-block;
}
.about_bg__media {
    padding-block: 16px;
    background-color: #d9edf4;
    z-index: 9;
    position: relative;
}
.about_block__media {
    max-width: 100%;
    height: auto;
}
.about_block__content {
    padding-left: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.about_block__content h1 {
    line-height: 50px;
    font-size: 42px;
    margin-block: 0 12px;
}
.about_block__content p {
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 24px;
    color: #555555;
    font-weight: 500;
    margin-bottom: 16px;
}
.about_block__content p:nth-of-type(1) {
    margin-top: 12px;
}
.about_block__content p:nth-last-of-type(1) {
    margin-bottom: 0;
}
.about_block__content button {
    margin-top: 32px;
}
/* Product lists */
.produst_lists__search {
    justify-content: flex-end;
}
.produst_lists__search .search_course {
    margin-top: 0;
}
.mandala-course__lists.mandala-product__lists {
    flex-direction: row;
    flex-wrap: wrap;
    margin-inline: -12px;
}
.mandala-product__list {
    flex: 0 0 100%;
    margin-bottom: 0;
    padding-inline: 12px;
    text-decoration: none;
}
.mandala-product__list .mandala-course__list {
    flex-direction: column;
    margin-bottom: 24px;
}
.mandala-product__list .mandala-course__hd {
    margin-bottom: 0;
    justify-content: center;
}
.mandala-product__list .mandala-course__contnt {
    /* margin-top: 4px; */
    padding-top: 8px;
    padding-left: 0;
    border-top: 1px solid #e1e3e1;
}
.mandala-product__list .mandala-course__h {
    font-size: 16px;
    color: #212020;
}
/* product Details */
.main-wrapper {
    padding-block: 60px 80px;
    position: relative;
    flex-grow: 1;
}
.course-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.course-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    /* background: #ddd;
    height: 200px;
    text-align: center;
    line-height: 200px;
    font-weight: bold;
    border-radius: 6px; */
}
.product-img {
    width: 300px;
    height: 200px;
    background: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
.course-info {
    padding-left: 32px;
}
.course-info h2 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
    padding-bottom: 0.75rem;
    margin-top: 8px;
}
.course-info p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #555555;
    margin-bottom: 16px;
}
.price_wrapper {
    margin-block: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.price_wrapper > span {
    display: block;
    color: #6d28d2;
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
}
.price_wrapper .select_currency_type {
    display: flex;
}
.select_currency_type select {
    font-size: 13px;
    letter-spacing: 0.02em;
    border: 1px solid #c4cad0;
    text-transform: uppercase;
    border-radius: 2px;
    outline: 0;
    box-shadow: none;
}
.btn-buy {
    padding: 12px 16px;
    /* background: #007bff; */
    background-color: #222;
    color: white;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 1.5rem;
    box-shadow: 0px 1px 3px 0px #0000004d, 0px 4px 8px 3px #00000026;
}
/* .btn-buy:hover {
    background: #111;
} */
.btn-buy__custom,
.btn-buy__custom2 {
    width: auto;
    display: inline-block;
    border-radius: 6px;
    font-size: 13px;
    padding-inline: 32px;
    background-color: #28a745;
    position: relative;
    border: 0;
}
.btn-buy__custom2 {
    background-color: #6d28d2;
    border-radius: 1px;
    /* padding-right: 48px; */
    padding-block: 14px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.09em;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}
.btn-buy__custom:hover {
    background-color: #197930;
}
.btn-buy__custom2:hover {
    background-color: #0262c8;
}
/* .btn-buy__custom2::after {
    content: "";
    width: 28px;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    border-left: 27px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 52px solid #f1f3f4;
} */
.bg__custom2 {
    letter-spacing: 0.03em;
    padding-right: 40px;
}
.bg__custom2::after {
    border-bottom: 52px solid #fff;
}
.btn-theme {
    padding: 8px 12px;
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 100%;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    box-shadow: 0px 1px 3px 0px #0000004d, 0px 4px 8px 3px #00000026;
    outline: 0;
}
.btn-theme:hover {
    background: #0262c8;
}
.btn-theme__outline {
    background-color: #28a745;
    color: #fff;
}
.btn-theme__outline:hover {
    background-color: #28a745;
}
/* Slider */
.slider-heading {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-block: 32px 16px;
}
.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
}
.slide {
    flex: 0 0 80%;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    scroll-snap-align: start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    cursor: pointer;
}
.selected_package {
    border: 2px solid #c5bff4;
}
.slide .flex-grow {
    flex-grow: 1;
}
.slide h3 {
    margin-bottom: 0.5rem;
}
.price {
    margin-top: auto;
    font-weight: bold;
    color: #6d28d2;
    padding-top: 8px;
}
.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.slider-controls button {
    background: transparent;
    border: none;
    margin: 0px 4px;
    cursor: pointer;
    outline: 0;
}
.slider-controls button:hover > svg {
    fill: #000;
}

@media (min-width: 768px) {
    .slide {
        flex: 0 0 30%;
    }
}

/* footer */
.footer {
    /* position: fixed;  */
    /* bottom: 0;
    left: 0; */
    width: 100%;
    text-align: center;
    background: #333;
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    z-index: 99;
}
/* Orders */
.main_wrapper {
    padding-block: 50px 80px;
    position: relative;
    flex-grow: 1;
}
.order-main__heading {
    margin-top: 0px;
    margin-bottom: 32px;
}
.order-main__heading_mb {
    margin-bottom: 0.5rem;
}
.order-main__para {
    color: #727272;
    letter-spacing: 0.01em;
}
.tab-content {
    display: none;
    margin-top: 2rem;
    /* border: 1px solid #c4cad0; */
}
.tab-content__orders {
    background: transparent;
    padding: 1rem;
    border-radius: 6px;
    background-color: #fff;
    margin-bottom: 1rem;
}
.tab-content__orders:hover {
    box-shadow: 0 0 10px #e8e8e8;
}
.tab-content.active {
    display: block;
}
.order_tabs {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
}
.tabs button {
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    outline: 0;
    flex: 1;
    color: #555555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.tabs button.active {
    background: #eaeaea;
    color: #212020;
    font-weight: 600;
}
.tabs button > span {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}
.tabs button.active > span {
    color: #fff;
    background-color: #212020;
    font-size: 13px;
}
.tab-content__head {
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 1rem;
    padding-bottom: 16px;
}
.order_id {
    font-size: 16px;
    font-weight: 600;
}
.order_status_flex {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
}
.order_status > span {
    position: relative;
    color: #555555;
    font-size: 13px;
    line-height: normal;
    font-weight: 500;
}
.order_status > span::after {
    content: "";
    height: 14px;
    width: 1.4px;
    background-color: #c4cad0;
    position: absolute;
    right: -9px;
    top: 3px;
}
.order_status > span:nth-last-of-type(1)::after {
    content: none;
}
.order_status .status_order {
    background-color: rgba(210, 105, 30, 0.144);
    color: rgb(210, 105, 30);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    line-height: normal;
    font-weight: 6500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.order_status .status_order span:nth-of-type(1) {
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background-color: rgb(210, 105, 30);
    display: inline-block;
}
.order_status .status_order_completed {
    background-color: rgba(0, 128, 0, 0.068);
    color: green;
}
.order_status .status_order.status_order_completed span:nth-of-type(1) {
    background-color: green;
}
.order_status .status_order_canceled {
    background-color: rgba(255, 0, 0, 0.066);
    color: red;
}
.order_status .status_order.status_order_canceled span:nth-of-type(1) {
    background-color: red;
}
.order_status_ms {
    margin-left: 0.75rem;
}
.order_details__wrap {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e8e8e8;
}
.order_details__wrap:nth-last-of-type(1) {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.prod_order__media {
    flex: 0 0 160px;
    max-width: 160px;
    border: 1px solid #c4cad0;
    padding: 8px;
    border-radius: 5px;
}
.prod_order__media.prod_order__audio {
    background: #f1f3f4;
    border: 0;
    box-shadow: 2px 2px 4px #bebebe, -2px -2px 3px #fff;
    font-size: 16px;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-transform: capitalize;
    color: #727272;
    gap: 4px;
}
.img_order {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.prod_order__content {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
}
.prod_order__content h5 {
    font-size: 18px;
    margin-bottom: 6px;
}
.prod_order__content p {
    color: #555555;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.prod_order__content h6 {
    color: #28a745;
    font-size: 16px;
    margin-bottom: 4px;
}
.order_link {
    padding: 16px;
    display: flex;
    align-items: center;
}
.order_link a > svg {
    stroke: #727272;
}
/* Order Details */
.order-details__wrapper {
    margin-top: 1.5rem;
}
.order-status__block {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: -4px;
}
.order-status__item {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: #727272;
    position: relative;
    padding-bottom: 8px;
}
.order-status__item.status_completed {
    color: #212020;
    font-weight: 700;
}
.order-status__item::after {
    content: "";
    width: 100%;
    height: 4px;
    border-radius: 16px;
    background-color: #e8e8e8;
    position: absolute;
    bottom: 0px;
}
.order-status__item.status_completed::after {
    background-color: #28a745;
}
.order-status__info {
    margin-bottom: 6px;
}
.order-status__info > span {
    color: #212020;
    font-weight: 600;
}
.summary_heading {
    margin-block: 0.5rem;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.summary_items__head {
    border-bottom: 1px solid #c4cad0;
}
.summary_items {
    padding-bottom: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}
.summary_label {
    font-weight: 600;
    color: #555555;
}
.summary_value {
    margin-left: auto;
    padding-left: 6px;
}
.summary_media {
    margin-right: 6px;
    display: flex;
    align-items: center;
}
.summary_items_total {
    border-block: 1px solid #c4cad0;
    padding-top: 8px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}
/* File upload */
.upload-preview-container {
    text-align: center;
}
.upload__block input[type="file"] {
    margin-bottom: 10px;
}

.upload__block button {
    border: none;
    cursor: pointer;
    margin-block: 1rem 0.5rem;
    display: inline-flex;
    width: auto;
    margin-inline: auto;
}

.upload__block .progress-container {
    width: 100%;
    height: 12px;
    background-color: #eee;
    border-radius: 10px;
    margin-top: 10px;
    position: relative;
}

.upload__block .progress-bar {
    height: 100%;
    width: 0%;
    background-color: #28a745;
    transition: width 0.5s;
    border-radius: 10px;
}

.upload__block #statusText {
    font-size: 14px;
    text-align: end;
    position: absolute;
    right: 0;
    top: -20px;
    line-height: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.025em;
    color: #727272;
}
/* Hide default file input */
#fileInput {
    display: none;
}
.custom-upload-icon {
    cursor: pointer;
    display: block;
    text-align: center;
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: relative;
}
.upload__file__od {
    position: relative;
}
.upload__file__od::after {
    content: "";
    background-image: url(../images/image.svg);
    background-repeat: no-repeat;
    width: 100px;
    height: 107px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background-size: contain;
    background-position: center;
    opacity: 0.04;
}
#imagePreview {
    display: none;
    margin-top: 16px;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 5px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    height: 100px;
    object-fit: contain;
    margin-inline: auto;
}
/* Order confirmation */
.order-info__wrapper {
    text-align: center;
    background-color: #fff;
    border-radius: 12px;
    padding: 32px;
    width: 600px;
    margin-inline: auto;
    margin-top: 32px;
}
.order-info__icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}
.order-info__wrapper h1 {
    margin-bottom: 16px;
}
.order-info__wrapper p {
    color: #555555;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 24px;
}
.order-info__icon > p {
    margin-bottom: 0;
}
/* About */
.wrap-about {
    position: relative;
    padding: 0px 24px;
    margin-top: 48px;
}
.bg-about {
    /* background-color: rgba(243, 243, 243); */
    background-color: #fff;
    border-radius: 8px;
    padding: 32px 32px 40px;

}
.mandala_about__instructor {
    padding-block: 20px 80px;
}
.about_instructor {
    padding-left: 48px;
}
.para_quote {
    color: #6d28d2;
}
.instructor__para {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #9C9C9C;
    margin-top: 8px;
}
.instructor_name {
    margin-top: 32px;
    font-size: 24px;
    font-weight: 600;
}
.instructor_designation {
    margin-top: 12px;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
    color: #8f82f7;
}
.abt_img {
    max-width: 100%;
    height: auto;
    transform: translateY(0);
    border-radius: 50%;
    height: 450px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.bg_about {
    position: relative;
    overflow: hidden;
}
.bg_about::after {
        content: '';
    position: absolute;
    background: url(../images/featured-bg.jpg);
    background-size: contain;
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
/* Course details */
/* .bg_courses {
    position: relative;
    overflow: hidden;
}
.bg_courses::after {
        content: '';
    position: absolute;
    background: url(../images/featured-bg.jpg);
    background-size: contain;
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
} */
.custom-breadcrumb {
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    list-style-type: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #000000;
    font-weight: 500;
    padding: 0 8px;
}

.breadcrumb a,
.breadcrumb-item.active {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}
.mandala-courses__heading {
    font-size: 38px;
    line-height: 44px;
    font-weight: 600;
    font-family: var(--mandala-style-font);
}
.mandala-courses__para {
    color: #444549;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;
}
.mandala-course__lists {
    margin-top: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.mandala-course__list {
    display: flex;
    background-color: #fff;
    padding: 16px;
    border-radius: 24px;
    margin-bottom: 16px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.mandala-course__img {
    flex: 0 0 30%;
}
.mandala-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    height: 180px;
    width: 100%;
    object-fit: cover;
}
.mandala-course__contnt {
    flex: 1;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}
.mandala-course__hd {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.mandala-course__hd > span {
    margin-left: auto;
    color: #444549;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}
.mandala-course__hd > span > span {
    display: flex;
}
.mandala-course__h {
    font-size: 20px;
    margin-bottom: 0;
    color: #a3a034;
    color: #6d28d2;
    font-weight: 500;
    font-family: var(--mandala-primary-font);
}
.mandala-course__desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #444549;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: var(--mandala-primary-font);
}
.mandala-course__author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-block: auto;
}
.mandala_author__name {
    color: #444549;
}
.mandala_author__name > span {
    font-weight: 600;
    color: #444549;
}
.course_media__block {
    padding-left: 24px;
}
.course_media__box {
    /* border: 1px solid #e1e3e1; */
    border-radius: 2px;
    padding: 12px;
    background-color: #fff;
}
.mandala-course__space {
    gap: 16px;
}
.course-section {
    border-bottom: 1px solid #ebedf1;     
    z-index: 9;
    position: relative;
}
.course-section:nth-last-of-type(1) {
    border-bottom: 1px solid #ebedf1;
}

.course-header {
    background: #faf9fa;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.course-section.open .course-header {
    border-bottom: 1px solid #ebedf1;
}

.course-content {
    padding: 15px;
    display: none;
    background: #fff;
}
.course-content-headng {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}
.course-content-para {
    font-size: 14px;
    color: #444549;
    margin-bottom: 12px;
    letter-spacing: 0.0266em;
}
.course-header__title {
    font-size: 17.5px;
    line-height: 28px;
}

.lecture {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
.lecture > span {
    margin-left: auto;
    display: flex;
    align-items: center;
    padding-left: 8px;
}

.lecture a {
    color: #6d28d2;
    text-decoration: none;
    font-weight: 500;
}
.play__audio {
    position: relative;
    background-color: #e2e2e2;
    border-radius: 2px;
    overflow: hidden;
    flex: 0 0 48px;
}
.play__audio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(https://a10.gaanacdn.com/gn_img/images/play_1621599900.png);
    background-repeat: no-repeat;
    background-position: calc(50% + 1px) 50%;
    overflow: hidden;
    background-size: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    transition: all .2s;
}
.audio__media {
    width: 48px;
    height: 48px;
}

.lecture span > a {
    margin-right: 16px;
    display: flex;
    align-items: center;
}

.lecture:last-child {
    border-bottom: none;
}
.course-price {
    background: #f0f0f0;
    border-top: 1px solid #ebedf1;
    padding: 15px;
    display: none;
    align-items: center;
    margin-bottom: 12px;
}
.course_price_new {
    font-size: 17.5px;
    line-height: 28px;
    font-weight: 600;
    color: #6d28d2;
}
.course_price_new > span {
    color: #212020;
    font-family: var(--mandala-style-font2);
}
.course-price .btn-theme {
    width: auto;
    padding: 10px 20px;
}
.toggle-icon {
    font-size: 18px;
    margin-right: 10px;
    transition: transform 0.2s ease;
}

.open .toggle-icon {
    transform: rotate(90deg);
}

.expand-all {
    float: right;
    font-size: 14px;
    font-weight: bold;
    color: #6d28d2;
    cursor: pointer;
}
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 10px;
    margin-top: 32px;
}

.pagination li a {
    display: block;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    background-color: white;
    transition: all 0.3s ease;
}

.pagination li a:hover {
    background-color: #e0f3eb;
    /* border-color: #66bb6a; */
    border-color: #6d28d2;
    color: #2e7d32;
    color: #6d28d2;
    background-color: #f2f0ff;
}

.pagination li a.active {
    background-color: #4caf50;
    background-color: #6d28d2;
    color: white;
    border-color: #4caf50;
    border-color: #6d28d2;
    font-weight: bold;
}

.pagination li a.disabled {
    pointer-events: none;
    color: #aaa;
    background-color: #f2f2f2;
    border-color: #ccc;
}
.search_course {
    position: relative;
    width: 100%;
    margin-top: 40px;
}
.input-form-search {
    /* border: 1px solid #e1e3e1; */
    border: 0;
    outline: 0;
    height: 48px;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 14px;
    letter-spacing: 0.02em;
    width: 100%;
    background-color: #f9f9f9;
    box-shadow: inset 0 0 0 1px rgba(100, 121, 143, 0.3);
}
.search_course > span {
    position: absolute;
    right: 16px;
    top: 55%;
    transform: translateY(-50%);
}
/* Course Details */
.border__custom_content .course-content-headng {
    font-weight: 600;
}
.course_media__block {
    padding-left: 0;
}
.course_media__box {
    background-color: transparent;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.course_media__box .mandala-img {
    height: auto;
}
.day-list {
    margin-left: 24px;
    padding-left: 2px;
    display: block;
    border-radius: 10px;
    max-height: 365px;
    overflow: hidden;
    overflow-y: auto;
}
.day-button {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 12px;
    padding: 14px 16px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}
.day-button:last-child {
    margin-bottom: 0;
}
.day-button:hover {
    background-color: #f0f4ff;
    color: #212020;
}
.day-button.active,
.day-button.active:hover {
    background-color: #0262c8;
    color: #fff;
}
.text-section__UI {
    margin-top: 60px;
    margin-bottom: 40px;
    border: 1px solid #dddffd;
    padding: 1.5rem;
    border-radius: 10px;
    background: #fff7f433;
    min-height: 150px;
}
.border__custom_content {
    text-align: center;
}
.course-content__para {
    color: #444549;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.0266em;
}
.no-content__text {
    font-size: 18px;
    text-align: center;
    color: #444549;
}
.actions .btn-buy,.btn-download {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}
.btn-download {
    opacity: 0;
    display: none;
    transform: translateY(10px);
    pointer-events: none;
    transition: 0.4s ease-in-out;
    text-decoration: none;
    background-color: #28a745;
    color: #fff;
    text-transform: uppercase;
}
.btn-download.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    display: inline-block;
}
.actions .btn-buy {
    background-color: #222;
    color: #fff;
    width: auto;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.list-audios .course-content {
    display: block;
    background: url(../images/about-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.list-audios .lecture a {
    gap: 16px;
    color: #212020;
}
.list-audios .lecture {
    padding-block: 12px;
}
.list-audios .lecture:first-child {
    padding-top: 0;
}
.list-audios .lecture:last-child {
    padding-bottom: 0;
}
.list-audios .lecture > span {
    color: #8a898e;
    font-weight: 400;
    font-size: 12px;
}
.list-audios .lecture > span:nth-of-type(2) {
    margin-left: 2rem;
}
.course-content__heading {

}
.lecture_head {
    display: flex;
    justify-content: space-around;
    padding: 20px 15px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    background: url(../images/about-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;


    /* background: rgba(255, 255, 255, 0.25); */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
/* .lecture_head p:first-child {
    margin-left: 65px;
} */
.lecture.playing .play__audio::after {
    background-image: url(../images/pause.svg);
}
.contact-container::after{
    content: '';
	background-image: url(../images/signinn.png);
	background-repeat: no-repeat;
	width: 100%;
	min-height: 150vh;
	height: 130%;
	background-size: cover;
	background-position: center;
	position: absolute;
	left: 0;
	right: 0;
	top: -1px;
    z-index: -1;
}
