/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&family=Alice&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --primary: #7c0a2e;
    --primary-light: #e8cf8a;
    --primary-dark: #5a0720;
    --secondary: #c9a24b;
    --accent: #c9a24b;
    --dark: #1f0a12;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}


/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
      width: 100%;
      max-width: 1280px;
      margin: auto;
      /*padding: 20px;*/
      box-sizing: border-box;
    }

body {
    font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    background-color: #c9a24b08;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Alice', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(124, 10, 46, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 10, 46, 0.4);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}
.sticky-top{position: fixed; width: 100%;}

/* Section Header */
.text-justify{text-align: justify;}
.section{padding: 3em 0;}
.section-header {
    margin-bottom: 10px;
    position: relative;
}

.section-header span {
    font-size:24px;
    color: rgb(90 7 32);
    margin-bottom: 0px;
    font-weight: 400;
    /*text-transform: uppercase;*/
    letter-spacing: 2px;
    font-family: Alice,cursive;
}

.about-section .text{    font-size: 1.1rem;    text-align: justify}
.bg-light-sec{background-color: rgb(201 162 75 / 20%);}
.title{    font-size: 36px;
    line-height: 45px;
    color: #1E1E1E;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Alice', sans-serif;
    margin: 0;}

.second-title{    font-size: 28px;
    line-height: 45px;
    color: #1E1E1E;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Alice', sans-serif;
    margin: 0;}
.title span{
    color: #7c0a2e;
    /*font-weight: 600;*/
    font-size: 2rem;
    text-transform: capitalize;
    letter-spacing: 0;
}
.titleHeading{ color: #1f2937; letter-spacing: -.025em; font-size: 2rem;
    margin-bottom: 5px;
    position: relative; font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;}

.divider {
    width: 80px;
    height: 3px;
    background: #f2e3e8;
    margin-top: 20px;
}
.yoga-training {background: #fff;}
.yoga-training .text{    font-size: 1.1rem;line-height: 1.8rem;}

.section-header .sub{background-color: rgb(232, 207, 138); color: rgb(124, 10, 46); padding: 6px 14px; border-radius: 40px; letter-spacing: .05em; font-weight: 400; font-size: 16px;}
.professional-yoga h2{font-size: 2rem;font-weight: 400; margin-top: 1rem; color: #000;}
.professional-yoga h2 span{color: #7c0a2e; font-weight: 600;     font-size: 2rem;
    text-transform: capitalize; letter-spacing: 0;}


.certificate-svg{   top: 26px;right: 30px;transform: rotate(270deg) !important;}
.certificate-svg svg{    color: rgb(124 10 46 / 52%); width: 120px; opacity: 0.2;}



.owl-dots {
  text-align: center;
  margin-top: 15px;
}
.owl-dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc!important;
  display: inline-block;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.owl-dot.active {
  background: rgb(124 10 46)!important;
  transform: scale(1.2);
  box-shadow: 
}
.owl-dot:hover {
  background: #7c0a2e;
}

/* Navigation */
header nav{border-radius: 60px; margin: 18px 45px 0 45px; display: block; width: 100%;  max-width:-webkit-fill-available;}
.navbar {
    padding: 4px 6px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 0; max-width: 100%; border-radius: 0px;
}

.navbar-brand img {
    width: 100%;
        color: var(--primary);
    font-weight: bold;
}
.navbar-brand{width: 10%; }
.navbar-nav {align-items: center;}
.nav-link {
    font-weight: 500;
    color: #222222 !important;
    padding: 8px 15px !important;
    position: relative;
    margin: 0 5px;
    font-size: 15px;
    font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}

.navCourse:after{
    background: none;
    position: relative;
}


.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.navCourse:hover:after,
.navCourse.active:after {
    width: 0%;
}

.nav-link:hover {
    color: #5a0720 !important;
    background: rgb(240 253 244);
    border-radius: 20px;
}
.headerBTN{background: transparent; color: #7c0a2e; border-color: #7c0a2e; box-shadow: 0 4px 12px rgb(124 10 46 / 30%);  padding: 8px 16px;     transition: .5s all;}
.headerBTN:hover{background:#7c0a2e; color: #fff;}
/* Navbar Dropdown Fixes */

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 10px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.dropdown-item:hover, 
.dropdown-item:focus {
    background: rgb(240 253 244);
    color: #5a0720;
}
.dropdown-menu li {
position: relative;
}
.dropdown-menu .dropdown-submenu {
display: none;
position: absolute;
left: 100%;
top: -7px;
}
.dropdown-menu .dropdown-submenu-left {
right: 100%;
left: auto;
}
.dropdown-menu > li:hover > .dropdown-submenu {
display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(31,10,18,0) 50%, rgba(31,10,18,.55) 100%), url('../img/home-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.mandala-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/mandala-pattern.png');
    opacity: 0.04;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: #faf7f0;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-btns .btn {
    margin-right: 15px;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-size: 16px;
}

.hero-img img {
    border-radius: 10px;
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/*slider start*/

.slider-area .carousel-item{overflow: hidden;}
.img-fluid{width: 100%;}


@keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(1,1);
    }
    100% {
        transform: scale(1.6,1.6);
    }
}

.main-banner .carousel-item img {
    /*animation: zoominoutsinglefeatured 60s infinite ;*/
    height: auto;
    width: 100%;
    object-fit: cover;
}


.carousel-control-next, .carousel-control-prev{ top: 40%; background: black;
    height: 40px;width: 40px; margin: 12px; opacity: .8;}
.slider-content{z-index: 9;}
.slider-content .welcome-text{display:block;font-family:'Alice', sans-serif;font-weight:700;color:#fff;font-size:1.5rem;}
.slider-content .sliderHeading{font-size: 55px;color: #ffffff; text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); letter-spacing: 4px;}
.slider-content .sliderHeading span{color: #c9a24b;}
.slider-content p{color: #fff;font-size: 20px;padding: 10px 0px;font-weight: 400;}
.main-banner .hero-overlay {position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: rgba(0, 0, 0, 0.2); z-index: 1;}
.main-banner{position: relative;}
.main-banner .btn-primary {
    background-color: #5a0720;
    border-color: #7c0a2e;
    color: #ffffff;
    box-shadow: 0 4px 15px rgb(124 10 46 / 40%);
}
.main-banner h4 {
    font-size: 62px;
    font-family: 'Great Vibes', cursive;
    font-weight: 300;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 2px;
    position: relative;
    letter-spacing: 6px;
}
.main-banner h4:before {
    content: "";
    background: #c9a24b;
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 10px;
    margin-left: -15px;
}
.main-banner h4:after {
    content: "";
    background: #c9a24b;
    position: absolute;
    width: 8px;
    height: 8px;
    /* left: 0; */
    border-radius: 50%;
    top: 10px;
    margin-left: 10px;
}


#bannervideo {
    height: 600px;
    object-fit: cover;
    width: 100%;
    object-position: center top;}

  /*slider end*/

/* About Section */
.about-section {
    position: relative;
}
.vision-section{position: relative; overflow: hidden;}
.whychoose-section{background: #faf6ee;}
/* Updated About Section */
.about-img-container {
    position: relative;
    margin-bottom: 10px;
}
.about-img-main {
    border-radius: 10px;
    overflow: hidden;
    /*box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);*/
    margin: 1em;
}
.hbelowpara{padding: 0 2em; text-align: justify; margin-bottom: 5px;}
.about-img-secondary {
    position: absolute;
    width: 40%;
    bottom: -30px;
    left: -30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
    z-index: 1;
}
.text-green{color: rgb(90 7 32);font-weight: 500;}

.contact-form-container {
    background: #faf6ee;
    border-radius: 8px;
    padding: 40px 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 25px 50px -12px, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px;
    position: relative; overflow: hidden;    border: 1px solid #e8cf8a;
}
.homeContactSection{position: relative; }
.homeContactSection .instaFollow{background-image: none!important;  color: #7c0a2e;
    background: transparent;
    border: 1px solid #7c0a2e!important;     padding: 12px 0;}
   .instaFollow img{    width: 8%;
    vertical-align: sub;}
.homeContactSection .instaFollow:hover{color: #fff;}
.bottom-icons{background: url(../img/icon/00.png);
    background-size: contain;
    width: 100%;
    padding: 1.5em;
    position: absolute;
    bottom: 0;
    opacity: 0.1;
    left: 0;}
.form-header {
    margin-bottom: 28px;
    text-align: center;
}

.form-header h3 {
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.form-header p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
}

.contact-form label:after {
    content: " *";
    color: #ef4444;
}

.contact-form label[for="phone"],
.contact-form label[for="message"] {
    font-weight: 400;
}

.contact-form label[for="phone"]:after,
.contact-form label[for="message"]:after {
    content: "";
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #ddd;;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7c0a2e;
    background: white;
    box-shadow: 0 0 0 3px rgba(124, 10, 46, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 50px;
    line-height: 1.5;
}
.contact-form input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.contact-form input:focus {
    outline: none;
    border-color: #7c0a2e;
    background: white;
    box-shadow: 0 0 0 3px rgba(124, 10, 46, 0.1);
    transform: translateY(-1px);
}

/* Optional: Add subtle animation to form elements */
.contact-form .form-group {
    animation: fadeInUp 0.6s ease-out;
}

.contact-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.contact-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.contact-form .form-group:nth-child(3) { animation-delay: 0.3s; }
.contact-form .form-group:nth-child(4) { animation-delay: 0.4s; }
.contact-form .btn { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Updated Features Section Styles */

.features-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/feature-bg.jpg');
    opacity: 0.2;
    z-index: 0;
}

.feature-card-new {
    background: white;
    border-radius: 15px;
    padding: 15px;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 0px 12px -1px rgb(187 185 180 / 68%);
    border: 1px solid rgb(194 192 186 / 34%);
}

.feature-card-new:hover {
    /*transform: translateY(-10px);*/
    box-shadow: 0 15px 35px rgba(124, 10, 46, 0.15);
}

.feature-icon-new {
    margin-bottom: 30px;
    text-align: center;
}

.feature-content-new .btext{font-style: italic; color: #6B7280}
.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(124, 10, 46, 0.2);
}

.icon-circle img {
    width: 35px!important;
    height: 35px;
}

.icon-circle i {
    color: var(--secondary) !important;
}

.feature-content-new h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
    color:#000;
    font-weight: 600;
    letter-spacing: 0;
}

.feature-content-new p {
    color:#374151;
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.feature-badge {
    display: inline-block;
    background: rgba(124, 10, 46, 0.1);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    text-align: center;
    width: 100%;
}



/* Retreat Courses Section */
.retreat-section {
    padding: 100px 0;
    background: var(--white);
    background-size: cover;
    position: relative;
}

.retreat-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(124, 10, 46, 0.1);
}

.featured-retreat {
    border: 2px solid var(--primary);
    position: relative;
}

.retreat-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.retreat-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.retreat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.retreat-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 3px 12px;
    border-radius: 30px;
    font-size: 12px;
}

.retreat-content {
    padding: 25px;
}

.retreat-category {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.retreat-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.retreat-description {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.retreat-features {
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.feature-item i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.retreat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 8px;
    border-top: 1px dashed rgba(124, 10, 46, 0.2);
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: var(--gray);
}

.retreat-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    padding: 3px;
}

.cta-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
}

.cta-box h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.cta-box p {
    color: var(--gray);
    margin-bottom: 0;
}

.btn-outline-light {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-light:hover {
    background: var(--primary);
    color: white;
}


/* Yoga Masters Redesign */
.teachers-section {
    padding: 100px 0;
    background: linear-gradient(rgba(250,246,238,.9), rgba(250,246,238,.9)), url(../img/bg-mandala.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.teacher-card-new {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(124, 10, 46, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(124, 10, 46, 0.1);
}

.teacher-card-new:hover {
    /*transform: translateY(-10px);*/
    box-shadow: 0 15px 40px rgba(124, 10, 46, 0.2);
}

.teacher-img-wrapper {
    position: relative;
    height: 380px;
    overflow: hidden;
}
.teacher-overlay{    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;  transition: all 0.4s ease;
    background: linear-gradient(to top, rgba(31,10,18,.61) 10%, rgba(31,10,18,.2) 25%, rgba(31,10,18,0) 40%);
}

.teacher-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.teacher-card-new:hover .teacher-img-wrapper img {
    transform: scale(1.05);
}
.teacher-card-new:hover .teacher-overlay{ background: linear-gradient(to top,rgba(31,10,18,1) , rgba(31,10,18,0));}
.teacher-info-new {
    position: absolute;
    bottom: -65px;
    left: 0;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 1;
    z-index: 1;
}

.teacher-card-new:hover .teacher-info-new {
    bottom: -25px;;
    opacity: 1;
}

.teacher-social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.teacher-social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.teacher-info-new {
    padding: 25px 5px;
    text-align: center;
}

.teacher-info-new h3 {
    font-size:16px;
    margin-bottom: 18px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.specialty {
    display: block;
    color: #7c0a2e;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.teacher-bio {
    margin-bottom: 15px;
}

.teacher-bio p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
}

.teacher-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 12px;
    color: var(--gray);
}

.teacher-meta span {
    display: flex;
    align-items: center;
}

.teacher-meta i {
    margin-right: 5px;
    color: var(--primary-light);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}


/* Background container for the control bar */
.custom-carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 0px 25px;
  border-radius: 40px;
  /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);*/
  width: fit-content;
  margin: 10px auto 0;
}

/* Buttons (Prev, Play, Next) */
.control-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #374151;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.control-btn:hover {
  transform: scale(1.1);
}

/* Play Button Special Style */
.control-btn.play {
  /*border: 2px solid #c9a24b;*/
  color: #c9a24b;
  background: #ffffff;
}

/* Dots Section */
.dots-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Dots styling */
.dots-wrapper .dot {
  width: 12px;
  height: 12px;
  background: #d1d5db;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dots-wrapper .dot.active {
  background: var(--secondary);
  transform: scale(1.4);
  box-shadow: 0 0 8px rgba(124, 10, 46, 0.4);
}


/*===============Teacher Page=====================*/

.teacher-box{padding:3%;}
.teacher_container {display: flex;align-items: center;justify-content: center;margin: auto;gap: 16px; flex-wrap: wrap;box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; background: #ffffee; position: relative;}
.teacher_c2 {width: 31%;padding: 16px;}
.teacher_c2 img {border-radius: 8px; height: 400px; object-fit: cover; object-position: top; width: 100%; z-index: 9; position: relative;}
.teacher_c3 {width: 67%;padding: 16px; z-index: 9}
.teacher_c3 h3 {    color: #000;
    font-size: 22px;
    margin-bottom: 15px;
    border-bottom: 2px solid #7c0a2e;;
    padding-bottom: 10px;}
.teacher_c3 p {text-align: justify; color: #2e2e2e;}
.teacher_c3 span {font-size: 15px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));color: #fff;padding: 4px 10px; border-radius: 30px; font-weight: 600;}

.teacher-box-rev{padding:2% 3%;}
.teacher_container_rev {display: flex;align-items: center;justify-content: center;margin: auto;gap: 16px; flex-wrap: wrap;box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; background: #fdfbf9; flex-direction: row-reverse; background: #ffffee; position: relative;}
.teacher_c2_rev {width: 31%;padding: 16px;}
.teacher_c2_rev img {border-radius: 8px; height: 360px; object-fit: cover; object-position: top; width: 100%; z-index: 9; position: relative;}
.teacher_c3_rev {width: 67%;padding: 16px; z-index: 9;}
.teacher_c3_rev h3 {color: #000;
    font-size: 22px;
    margin-bottom: 15px;
    border-bottom: 2px solid #7c0a2e;
    padding-bottom: 10px;}
.teacher_c3_rev p {text-align: justify; color: #2e2e2e;}
.teacher_c3_rev span {font-size: 15px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));color: #fff;padding: 4px 10px; border-radius: 30px; font-weight: 600;}
.founder-img img{height: 356px;object-fit: cover;border-radius: 10px; object-position: right;}
.germanBody .founder-img img{height: 415px;}
.founder-name{color: var(--primary); padding-bottom: 8px;}
.teacher_container::before , .teacher_container_rev::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://dtmantra.wpengine.com/wp-content/uploads/2024/03/Group.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
}

/*===============End Teacher Page=================*/




/* Testimonials Section */
.testimonials-section {
    /*padding: 100px 0;*/
    background: #faf6ee;
}

.testimonial-carousel{padding: 2rem 2rem;}

.testimonials-section .section-header .sub{background-color: rgb(242 227 232); color: rgb(124 10 46);}

.testimonials-section .section-header h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-top: 1rem;
    color: #000;
    line-height: 1;
}
.testimonials-section .section-header h2 span {
    color: #7c0a2e;
    font-weight: 600;
    font-size: 2rem;
    text-transform: capitalize;
    letter-spacing: 0;
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.testimonial-card {
    position: relative;
    background: #fff;
     overflow: hidden;
    border-radius: 10px;
    padding: 35px 30px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 5%);
    height: 100%;
    border: 1px solid rgba(124, 10, 46, 0.1);
        border-radius: 28px;
}

.testimonial-content {
    position: relative;
}
.reviewLastpara{font-size: 1.1rem;line-height: 1.7; color: rgb(75 85 99);}
.reviewBTN .abtbtn1{    background-image: linear-gradient(135deg, var(--secondary), #b8863a);     border: none;
    border-radius: 12px;font-size: 16px;}
.reviewBTN .abtbtn2{border-color: rgb(124 10 46); border-radius: 12px;font-size: 16px; color: rgb(124 10 46);}

.divider-star {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 40%;
  margin: auto;
}

.divider-star .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--secondary), transparent);
  opacity: 0.4;
}

.divider-star .icon {
  font-size: 20px;
  color: #7c0a2e;
}

.quote-icon {
    margin-bottom: 20px;position: absolute; top: -15px;
    left: 90%;
    width: 120%;}

.quote-icon img {
    width: 7%!important;
    height: auto;
}

.review-title{    color: rgb(90 7 32); font-weight: 400; font-size: 1.3rem; font-style: italic; z-index: 9; position: relative;}

.testimonial-content p {
     font-size: 17px; margin-bottom: 15px; position: relative; z-index: 1; padding: 12px 0 0; color: rgb(55 65 81); text-align: justify;}

.author {
    display: flex;
    align-items: center;
}

.reviewPagesection .row .col-md-6{ margin-bottom: 26px; }

.author img {
    width: 70px!important;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #53bb7a45;
}
.gradient-border-top {
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: linear-gradient(to right, transparent, var(--secondary), transparent);
  box-shadow: 0 2px 10px rgba(201, 162, 75, 0.2);
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 15px 15px 0 0;
  background: linear-gradient(to right, transparent, var(--secondary), transparent);
  box-shadow: 0 2px 10px rgba(201, 162, 75, 0.25);
}
.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 15px 15px 0 0;
  background: linear-gradient(to right, transparent, var(--secondary), transparent);
  box-shadow: 0 2px 10px rgba(201, 162, 75, 0.25);
}


.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 16px;
    color: rgb(124 10 46);
    display: block;
    margin-bottom: 0px;
}

.rating {
    color:#c9a24b;
}
.rating i{font-size: 14px;}

.owl-carousel .owl-nav .owl-prev { position: absolute;
    top: 45%; left: -20px;}
.owl-carousel .owl-nav i {height: 45px; width: 45px; line-height: 45px;
    text-align: center; color: #fff; background: var(--primary);}
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 45%;
    right: -20px;
}
.our-blog{    background: #faf6ee;}
.our-blog h2{  font-size: 2rem;
    font-weight: 500;
    /*margin-top: 1rem;*/
    color: rgb(31 41 55);}
.our-blog .section-header p{ font-size: 1.3rem;  padding: 1em 0; color: rgb(75 85 99);}

.contactlast .section-header h2{    font-size: 1.6rem;
    font-weight: 500;
    color: #1F2937;}

.contactlast .text{color: rgb(75 85 99);font-size: 1.05rem;}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 8px 7px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.border-b{border-bottom: 3px solid #c9a24b;
    width: fit-content;}

.contact-box{
    padding: 26px 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 0 #0000,0 0 #0000,0 0 #0000,0 0 #0000,0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);
    transition: all 0.3s ease;
    background: #faf6ee;
    border:1px solid;
    border-color: rgb(242 227 232);
    min-height: auto; text-align: center;
    }
  .contact-box i{color: rgb(124 10 46);
    font-size: 28px;
    margin-bottom: 14px;}
  .contact-box p{color: rgb(75 85 99); margin-bottom: 0px;}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.text-green-600{color: rgb(124 10 46);}
.w-12 {width: 3rem;}
.h-12 {height: 3rem;}
.callbox{background-image: #faf6ee;}


.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(124, 10, 46, 0.2);
}

.contact-icon i {
    color: #fff;
    font-size: 18px;
}
.callbox i {
    color: rgb(124 10 46);
}
.whatsappbox i {
    color: rgb(124 10 46);
}
.officebox i {
    color: rgb(124 10 46);
}
.locationbox{background-image: #fffdf8;}

.contact-icon{
    border-radius: 8px;
    /*background: linear-gradient(135deg, rgb(242, 227, 232), rgb(242, 227, 232));*/
    box-shadow: 0 7px 7px 1px rgba(0, 0, 0, 0.08);
}

.contact-text {
    flex: 1;
    padding-left: 10px;
}

.contact-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.contact-details{padding-right: 3em; padding-top: 0em;}

.contact-text p {
    font-size: 16px;
    font-weight: 600;
    color: rgb(55 65 81);
    margin-bottom: 3px;
    line-height: 1.3;
}

.contact-text small {
    font-size: 14px;
    color: rgb(124 10 46);
    font-weight: 500;
}
.locationbox{min-height: auto;}
.locationbox i{    font-size: 22px;}
.contact-box h5{font-size: 19px;}
.contact-box iframe{ border-radius: 8px;margin: 15px 0;}
.mapSection{padding: 3em 0;}
.contactform{padding: 3em 0; }

.contactform h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-top: 1rem;
    color: rgb(31 41 55);
}

.formbox{background-color: #fff; margin: 0 10rem; border:1px solid rgb(242 227 232); padding: 2rem; border-radius: 12px; box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1); position: relative;}

.formbox .abtbtn1{background-image: linear-gradient(135deg, var(--secondary), #b8863a); text-transform: capitalize; }

.formbox .contact-form input, .formbox .contact-form textarea{    padding: 8px 16px;}
.contact-social{display: flex; justify-content: center; column-gap: 20px; }
.contact-social i{color: rgb(124 10 46); font-size: 22px; }

/* Payment Options Section */
.payment-options-section {
    padding: 80px 0;
    background-color: #fff;
}

.payment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(124, 10, 46, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(124, 10, 46, 0.1);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 10, 46, 0.15);
}

.payment-header {
    padding: 30px 25px 8px;
    text-align: center;
    background: #fff;
}

.payment-header i {
    font-size: 30px;
    color: rgb(124 10 46);
    display: block;
    background: rgb(242 227 232);
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 15px;
    padding: 6px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-header h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: rgb(90 7 32);
    font-weight: 600;
}

.payment-header p {
    color: #1c1c1c;
    margin-bottom: 0;
    font-size: 16px;
}

.payment-body {
    padding: 8px 25px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    /*border-bottom: 1px dashed rgba(124, 10, 46, 0.2);*/
}

.payment-item:last-child {
    border-bottom: none;
}

.course-name {
    font-weight: 500;
    color: var(--dark);
}

.course-price {
    font-weight: 700;
    color: rgb(90 7 32);
}

.payment-item.custom-package {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
}

.payment-item.custom-package p {
    margin-bottom: 0;
    color: var(--gray);
    font-style: italic;
}

.payment-footer {
    padding: 4px 25px 25px;
    background: #fff;
}

.payment-footer .btn{background-color: rgb(124 10 46); border-radius: 8px;}

.retreat-payment .payment-header i{background: rgb(219 234 254); color: rgb(37 99 235);}
.retreat-payment .payment-header h3{color: rgb(30 64 175);}
.retreat-payment .course-price{color: rgb(30 64 175);}
.retreat-payment .payment-footer .btn{background: rgb(30 64 175);}


.custompack .payment-header i{background: rgb(243 232 255); color: rgb(147 51 234);}
.custompack .payment-header h3{color: rgb(147 51 234);}
.custompack .payment-body h4{color: rgb(147 51 234);}
.custompack .payment-footer .btn{background: rgb(147 51 234); color: #fff;}


/* Payment Methods Section */

.payment-method-card {
    text-align: center;
    padding: 10px 20px;
    background: white;
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 8px;
}


.payment-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgb(243 244 246);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon i {
    font-size: 32px;
    color: var(--primary);
}

.payment-method-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.payment-method-card p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 15px;
}

.text-blue-600{color: rgb(37 99 235);}
.text-purple-600{color: rgb(147 51 234);}
.text-orange-600{color: rgb(124 10 46);}
.payment-icon svg{    width: 2rem;height: 2rem;}

.safety-section{background: #fff;  padding: 0px 0 80px; }
.trust-safety{background-image: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border-radius: 12px; padding: 2em 0;}
.trust-safety svg{    width: 6rem;height: 4rem;}
.trust-safety h3{color: #fff; font-weight: 500; margin-bottom: 15px;}
.safety-points{ margin-top: 20px; display: flex; justify-content: center;}
.trust-safety p{font-size: 17px;}
.safety-points span{ background: hsla(0,0%,100%,.2); border-radius: 22px; margin-right: 10px; }
.sections{padding: 3rem 0;}
.sections .section-header h2 {
    font-size: 2.2rem;
    font-weight: 500;
    /*margin-top: 0.5rem;*/
    color: rgb(31 41 55);
}
.hr-logo {
    width: 280px;
    margin: auto;
    margin-bottom: 10px;
    display: block;
    margin-top: 10px;
}
.abtwelcome .locationbox{    background-image: #faf6ee;}
.w-8 {
    width: 2rem;
}
.h-8 {
    height: 2rem;
}
.abtwelcome .locationbox p{font-size: 15px;}

.program-card{background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(124, 10, 46, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(124, 10, 46, 0.1);}
.program-card .payment-header{padding: 20px 20px 20px;}
.program-card .payment-header i{background: #2563eb;     color: rgb(255 255 255);}
.program-card .payment-header h3{color: rgb(31 41 55); }
.pdtl{margin: 0 3rem;}
.program-card .payment-header .purp{background: #9333ea;}
.program-card .payment-header .whats{background: #7c0a2e;}
.program-card .payment-header .orng{background: #c9a24b;}
.program-card .payment-header .pnk{background: #db2777;}
.program-card .payment-header .mult{background: #0891b2;}


.schedule-box{background-image: #faf6ee; width: 70%;
    margin: auto; border-radius: 8px; padding: 2em;}
.schedule-box h3{color: rgb(90 7 32);     font-size: 22px;    font-weight: 500; margin-bottom: 1em;}
.schedule-tab{display: flex; justify-content: space-between; background: rgb(255 255 255); padding: 1.5em 2em; border-radius: 4px; box-shadow: 0 0 #0000,0 0 #0000,0 1px 2px 0 rgba(0,0,0,.05); align-items: center; margin-bottom: 1em; border:1px solid; border-color: rgb(243 244 246);}
.schedule-tab .font-semibold{font-weight: 600; font-size: 17px;}
.scheduleTime{border-right: 2px solid #7c0a2e;padding: 10px 16px 10px; background: beige;  width: 35%;}
.scheduleTime svg{    vertical-align: sub;padding-right: 4px;}
.scheduleTime i{color: #7c0a2e;    padding-right: 5px;}
.schedule-activity{color: #fff;width: 65%;padding: 0 1em;}
.schedule-activity span{    font-size: 17px;line-height: 1.75rem; color: #fff; font-weight: 500;}
/*.courseoverview{background: linear-gradient(to bottom right,#f0fdf4 , #fefce8);}*/
.overviewPara p{    font-size: 1.1rem;    text-align: justify;}
.courseoverview .text{    font-size: 1.1rem;    text-align: justify;}
.dailyschedule{position: relative; overflow: hidden;}
.dailyschedule .schedule-box{width: 100%; background: none; padding: 0em;  }
.dailyschedule .schedule-box .schedule-tab{    padding: 0; background: #7c0a2e;}
.text-sm {    font-size: 0.875rem; line-height: 1.25rem; }
/*.accomSection{    background: linear-gradient(to bottom right, #f0fdf4, #fefce8);}*/
.accomSection .about-img-main{margin: 0;}
.accompoints{    justify-content: space-between;}
.gallery-carousel .item a img{height: 180px!important; object-fit: cover; border-radius: 16px;}
.inclusion-card {background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); overflow: hidden; height: 100%; transition: all 0.3s ease; }
.inclusion-header {padding: 20px 25px; text-align: center; border-bottom: 1px solid #eee; }
.inclusion-card.included .inclusion-header {background: linear-gradient(135deg, rgba(201,162,75,0.1) 0%, rgba(201,162,75,0.2) 100%); }
.inclusion-card.not-included .inclusion-header {background: linear-gradient(135deg, rgba(31,10,18,0.06) 0%, rgba(31,10,18,0.1) 100%); }
.inclusion-header h3 {margin: 0; font-size: 22px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; }
.inclusion-card.included .inclusion-header h5 {color: #7c0a2e; font-size: 22px;}
.inclusion-card.not-included .inclusion-header h5 {color: #e74c3c; font-size: 22px; }
.inclusion-body {padding: 25px; }
.inclusion-body ul {list-style: none; padding: 0; margin: 0; }
.inclusion-body li {padding: 10px 0; display: flex; align-items: center; border-bottom: 1px dashed #eee; }
.inclusion-body li:last-child {border-bottom: none; }
.inclusion-body li i {margin-right: 12px; width: 20px; text-align: center; }
.inclusion-card.included .inclusion-body li i {color: #7c0a2e; }
.inclusion-card.not-included .inclusion-body li i {color: #e74c3c; }
/*.teacher-box{border: 1px solid #6394f64d;
    border-radius: 28px;     padding: 2em 0em; margin: 0 10px; box-shadow: 0 0 5px 2px #e5e5e5;}*/
.teacher-image {width: 150px!important; height: 150px; object-fit: cover; border-radius: 50%; border: 3px solid #6394f666; margin: auto; } 
.teacher-details {/*width: 85%;*/ margin-left: auto; margin-right: auto; background-color: #fff; padding: 8px 10px; position: relative; } 
.teachers-name {text-align: center; font-size: 18px; font-weight: 700; color: rgb(90 7 32); margin-bottom: 0; } 
.teachers-skills {text-align: center; margin-bottom: 0; font-size: 14px; color: rgb(99 102 241); font-weight: 400; }
.whatKnow{position: relative;}
.whatKnow .container{position: relative; z-index: 1;}
.know-box{    display: flex;margin-bottom: 30px;    padding: 12px 26px;   background: rgba(255, 255, 255, 0.7); border-radius: 12px; box-shadow: 0 8px 7px 3px rgba(0, 0, 0, 0.08); transition: all 0.3s ease;}
.know-icon{margin-right: 10px;     width: 30px;}
.know-icon i{    color: #c9a24b;      font-size: 28px;    padding-top: 5px;}
.know-icon i.fa-heart{    color:rgb(236 72 153); }
.safety h4{color: rgb(21 14 112);}
.safety i{color: rgb(124 10 46);}
.knowPoints .know-box{min-height: 9px;align-items: center;}
.knowPoints .know-icon{width: 10%;}
.knowPoints .know-text{width: 90%;}
.knowPoints .know-text p{margin: 0px;}
.upcomingDateSec{position: relative;}
.upcomingDateSec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/icon/pattern-bg.png);
    opacity: 0.8;
    z-index: 0;
    background-size: 15%;
}

.location-tabs {display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; } 
.location-tab {padding: 12px 30px; border: 2px solid #7c0a2e; border-radius: 50px; background: white; color: #7c0a2e; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; font-size: 16px; } 
.location-tab:hover {background: rgba(124, 10, 46, 0.1); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(124, 10, 46, 0.2); } 
.location-tab.active {background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(124, 10, 46, 0.3); } 
.location-tab i {font-size: 18px; }
.ttcCourses {transition: all 0.3s ease-in-out; }
/* Enhanced Yoga Teacher Training Programs Section */
.ttcCourses {margin: 0 2em; margin-top: 3em; }
.course_item {border: none; border-radius: 28px; background: linear-gradient(135deg, #ffffff 0%, #faf6ee 100%); padding: 30px; margin-bottom: 3em; box-shadow: 0 10px 30px rgba(124, 10, 46, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; border: 1px solid rgba(124, 10, 46, 0.1); }
.course_item::before {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(to right, transparent, var(--secondary), transparent); background-size: 200% 100%; animation: shimmer 3s ease-in-out infinite; }
.course_item:hover {box-shadow: 0 20px 40px rgba(124, 10, 46, 0.15), 0 10px 25px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9); }
@keyframes shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}
.course_item .item_image {position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); transition: all 0.3s ease; } 
.course_item:hover .item_image {transform: scale(1.02); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); } 
.course_item .item_image img {object-fit: cover; height: 295px; width: 100%; transition: transform 0.5s ease; }
.course_item:hover .item_image img {transform: scale(1.05); } 
.item_image .event-tag {position: absolute; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 12px 18px; color: white; font-weight: 700; text-align: center; left: 0; top: 20px; text-transform: uppercase; line-height: 20px; border-radius: 0 25px 25px 0; box-shadow: 0 4px 15px rgba(124, 10, 46, 0.3); z-index: 2; } 
.course_item .course_content {padding-left: 25px; position: relative; } 
.course_content .time {background: #faf6ee; padding: 10px 20px; border: 1px solid rgba(124, 10, 46, 0.2); border-radius: 100px; width: fit-content; display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: #7c0a2e; margin-bottom: 0px; box-shadow: 0 4px 12px rgba(124, 10, 46, 0.1); } 
.course_content .time i {color: #7c0a2e; font-size: 20px; } 
.course_content h3 {font-size: 24px; margin: 15px 0 15px 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 500; } 
.course_content h3 a {color: transparent; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); -webkit-background-clip: text; background-clip: text; text-decoration: none; transition: all 0.3s ease; } 
.course_content h3 a:hover {background: linear-gradient(135deg, var(--primary), var(--primary-dark)); -webkit-background-clip: text; background-clip: text; } 
.bor-bottom {border-bottom: 2px solid #e2e8f0; padding-bottom: 25px; margin-bottom: 15px; } 
.courseDesc {font-family: 'Raleway', sans-serif; font-weight: 500; line-height: 1.8; text-align: justify; font-size: 16px; color: #4b5563; } 
.course_info ul {padding-left: 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 0px; } 
.course_info ul li {list-style: none; flex: 1; min-width: 200px; z-index: 1; } 
.course_info .event__color {color: #1e293b; margin-bottom: 8px; font-size: 16px; font-weight: 600; line-height: 1.4; font-family: 'Raleway', sans-serif; } 
.course_info p {font-size: 22px; font-weight: 700; color: #7c0a2e; margin: 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } 
.btn-one {padding: 14px 28px; font-weight: 600; color: #fff; border: 2px solid #7c0a2e; border-radius: 12px; position: relative; text-transform: capitalize; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(124, 10, 46, 0.3); overflow: hidden; } 
.btn-one::before {content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s; } 
.btn-one:hover::before {left: 100%; } 
.btn-one:hover {background: linear-gradient(135deg, var(--primary-dark), var(--primary)); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124, 10, 46, 0.4); color: #fff; border-color: #5a0720; } 
.ttcSection{position: relative; overflow: hidden;}
.chakra-img {position: absolute; top: -125px; right: -9%; width: 22%; }
.chakra-img img{animation: spin 9s infinite linear;  -webkit-animation: spin 100s infinite linear; -moz-animation: spin 100s infinite linear;}
@-webkit-keyframes spin {
    0%  {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(-360deg);}   
}
.teamSection{position: relative; overflow: hidden;}
.teamSection .col-lg-4{z-index: 1;}
.teamSection::after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: -20px;
    width: 340px;
    height: 300px;
    background-image: url(../img/icon/bg-leaves.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
    filter: blur(1px);
} 

.course_item::after {content: ''; position: absolute; bottom: -20px; right: -20px; width: 315px; height: 300px; background-image: url('https://demo.awaikenthemes.com/restraint/wp-content/uploads/2025/04/section-bg-img-1.svg'); background-size: contain; background-repeat: no-repeat; background-position: center; opacity: 1; transform: rotate(15deg); z-index: 0; } 
.hr-logo {filter: brightness(0) saturate(100%) invert(53%) sepia(37%) saturate(550%) hue-rotate(6deg) brightness(114%) contrast(101%); }

.retreat-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; position: relative; z-index: 1;    margin: 2em 3em; }
.retreat-card {background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; }
.retreat-card:hover { box-shadow: 0 25px 60px rgba(183, 8, 79, 0.12); }
.featured-retreat {border: 2px solid var(--secondary); }
.retreat-media {height: 250px; position: relative; overflow: hidden; }
.retreat-image {width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.8s ease; }
/*.retreat-card:hover .retreat-image {transform: scale(1.05); }*/
.retreat-badge {position: absolute; top: 20px; right: 20px; background: var(--secondary); color: #fff; padding: 6px 15px; border-radius: 30px; font-size: 13px; font-weight: 600; z-index: 2; box-shadow: 0 5px 15px rgba(201, 162, 75, 0.3); }
.retreat-overlay {position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; display: flex; justify-content: space-between; align-items: flex-end; background: linear-gradient(to top, rgba(31,10,18,0.7) 0%, transparent 100%); color: #fff; }
.price-tag {background: rgba(255,255,255,0.9); padding: 2px 10px; border-radius: 30px; display: flex; flex-direction: column; align-items: center; }
.price-tag .from {font-size: 12px; color: #666; }
.price-tag .price {    font-size: 24px; font-weight: 500; color: #7c0a2e; line-height: 1.2; } 
.duration {background: rgb(237 253 245); color: #7c0a2e; padding: 6px 15px; border-radius: 30px; font-weight: 600; font-size: 14px; }
.retreat-content {padding: 20px 25px; }
.retreat-header {display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.retreat-title {font-size: 22px; color: var(--dark-primary); margin: 0; flex: 1; }
.retreat-rating {display: flex; align-items: center; }
.stars {color: #c9a24b; margin-right: 8px; }
.stars .fas {font-size: 14px; }
.rating-count {font-size: 13px; color: #fff; }
.retreat-features {display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.feature {display: flex; justify-content: center; align-items: center; text-align: center; padding: 10px 5px; background: #f9f9f9; border-radius: 8px; transition: all 0.3s ease;     background: linear-gradient(135deg, rgba(250,246,238,0.86), rgba(250,246,238,0.5));
    border: 1px solid rgba(124, 10, 46, 0.2);
    color: #7c0a2e;
    box-shadow: 0 4px 12px rgba(124, 10, 46, 0.1);}
.feature:hover {background: #7c0a2e; color: #fff; }
.feature:hover i {color: #fff; }
.feature i {font-size: 16px; color: #434343;     padding-right: 6px; }
.feature span {font-size: 12px; font-weight: 500; }
.retreat-description {color: #555; font-size: 15px; line-height: 1.6; margin-bottom: 12px; }
.retreat-footer {display: flex; justify-content: space-between; align-items: center; }
.btn-explore {background: var(--primary); color: #fff; padding: 10px 20px; border-radius: 30px; font-size: 14px; font-weight: 500; transition: all 0.3s ease; display: flex; align-items: center; }
.btn-explore:hover {background: var(--dark-primary); transform: translateX(5px); }
.btn-explore i {margin-left: 8px; font-size: 12px; }
.retreat-footer .btn-one{padding: 10px 18px;  }
.border-image{  border: 2px solid #5a0720;
    padding: 3px !important;
    box-shadow: 0 0 2px 0 #c9a24b !important;
    border-radius: 8px; height: 230px;
    object-fit: cover;}

.premium-card {
    background: #5a0720;
    border-radius: 16px;
    /*box-shadow: 0 15px 40px rgba(1, 149, 138, 0.15);*/
       border: 2px solid #5a0720;
    transition: transform 0.3s ease;
    margin-left: 20px;
    margin-bottom: 2em;
}

.premium-card .card-header {
    color: white;
    text-align: center;
    position: relative;
}

.premium-card .card-header h3 {
    margin: 0;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030303;
        background: #c9a24b;
    padding: 10px 60px;
    border-radius: 13px;
    width: fit-content;
    margin: auto;
    margin-top: -24px;
}

.premium-card .card-body {
    padding: 6px 20px;
}

.detail-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 45px;
    height: 45px;
    background: rgb(255 255 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--secondary);
    font-size: 16px;
}

.detail-content {
    flex-grow: 1;
}

.detail-label {
    font-weight: 500;
    color: #c9a24b;
    font-size: 14px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.detail-value {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}
.detail-icon img{width: 55%; filter: brightness(0) saturate(100%) invert(53%) sepia(37%) saturate(550%) hue-rotate(6deg) brightness(114%) contrast(101%);}

.detail-row.highlight {
    background: rgba(1, 149, 138, 0.05);
    margin: 20px -25px;
    padding: 15px 25px;
    border-radius: 0;
    border: none;
    border-top: 1px dashed rgba(1, 149, 138, 0.2);
    border-bottom: 1px dashed rgba(1, 149, 138, 0.2);
}

.detail-row.highlight .detail-icon {
    background: var(--secondary);
    color: white;
}

.detail-row.highlight .detail-icon img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.detail-row.highlight .detail-value {
    color: var(--secondary);
    font-weight: 700;
}

.premium-card .card-footer {
    padding: 0 25px 25px;
    text-align: center;
}

.premium-card .btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.premium-card .btn i {
    margin-right: 8px;
}
.course-highlight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 18px;
    background: rgb(255 255 255);
    border-top: 1px solid rgba(201, 162, 75, 0.1);  border-radius: 12px;
    margin: 0px 5px 5px;
}
.course-highlight-footer .btn-one{ padding: 8px 16px;border-radius: 30px; }
.price-tage span {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 3px;
}
.price-tage strong {
    font-size: 22px;
    color: #070707;
    font-weight: 500;
}
/*.overviewLeft{position: sticky; top: 110px;}*/
.courseoverview{position: relative;}
.courseoverview::after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: -20px;
    width: 340px;
    height: 300px;
    background-image: url(../img/icon/bg-leaves.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
    filter: blur(1px);
}


.curriculum-accordion-wrap .accordion-item {margin-bottom: 20px; border-radius: 8px !important; overflow: hidden; border: 1px solid rgb(201 162 75 / 68%); margin-top: 1rem; } 
.curriculum-accordion-wrap .accordion-button {background-color: #fff; color: #000;); font-weight: 500; padding: 15px 20px; box-shadow: none !important; }
.curriculum-accordion-wrap .accordion-button:not(.collapsed) {
    background-color: rgb(90 7 32);    color: #fff; }
.curriculum-accordion-wrap .accordion-button:not(.collapsed) i {
    color: #fff;
}
.curriculum-accordion-wrap .accordion-button.active i:last-child {color: #fff; } 

.curriculum-accordion-wrap .accordion-button i {
    color: rgb(90 7 32);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.curriculum-accordion-wrap .accordion-button::after {
    background-size: 1rem;
}

.curriculum-accordion-wrap .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.curriculum-accordion-wrap .accordion-body {
    padding: 25px 20px;
    background-color: #fff;
}

.module-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.detail-box {
    flex: 1;
    min-width: 250px;
}

.detail-box h5 {
    color: rgb(40 41 42);
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed rgba(124, 10, 46, 0.3);
}

.detail-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.detail-box ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.detail-box ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 14px;
}

.faq-accordion {border-radius: 12px; overflow: hidden; } 
.accordion-item {margin-bottom: 15px; border-radius: 8px !important; overflow: hidden; border: 1px solid rgba(124,10,46,0.1); box-shadow: 0 3px 15px rgba(0,0,0,0.05); } 
.accordion-button {width: 100%; padding: 20px 25px; text-align: left; background: white; border: none; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: all 0.3s ease; font-weight: 600; } 
.accordion-button:hover {background: rgba(124, 10, 46, 0.05); } 
.accordion-button.active {background: rgb(90 7 32 / 6%); color: rgb(90 7 32); }
.accordion-button.active i {color: white; }
.accordion-button i:first-child {color: rgb(90 7 32); font-size: 20px; margin-right: 15px; flex-shrink: 0; } 
.accordion-button span {flex-grow: 1; font-size: 17px; text-align: left; } 
.accordion-button i:last-child {color: rgb(90 7 32); margin-left: 15px; transition: transform 0.3s ease; } 
.accordion-button.active i:last-child {transform: rotate(180deg); color: rgb(90 7 32); } 
.accordion-content {max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: white; } 
.accordion-content.active {max-height: 1000px; }
.accordion-content p, .accordion-content ul {padding: 0 25px 15px; margin-bottom: 0; color: #374151; }
.accordion-content ul {list-style: none; padding-left: 60px; } 
.accordion-content li {position: relative; margin-bottom: 8px; } 
.accordion-content li::before {content: ''; position: absolute; left: -20px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background: rgb(90 7 32); border-radius: 50%; } 
.faq-cta {background: rgba(124, 10, 46, 0.05); padding: 30px; border-radius: 12px; border: 1px dashed rgb(90 7 32); margin-top: 40px; } 
.faq-cta h3 {color: rgb(90 7 32); margin-bottom: 15px; }

.apply-now{    background-image: url(https://dtmantra.wpengine.com/wp-content/uploads/2024/03/Group.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffee;
    position: relative;}


.enroll-logo{width: 12%; text-align: center; margin:auto; position: absolute;top: -82px;left: 44%;
    background: #fff;}
.enroll-bored{border: 1px solid rgba(124, 10, 46, 0.1); background-color: #fff; position: relative; padding: 30px 40px; width: 80%; margin: auto; margin-top: 25px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);} 
.enrollment-form .sub-heading{color:#7c0a2e; font-size: 22px;}
.apply-now .enroll-bored textarea{height: 100px;}
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    overflow: hidden;
    pointer-events: none;
}
.form-alert {
    display: none;
    align-items: flex-start;
    gap: 12px;
    background: #fdeceb;
    border: 1px solid #f1b8b4;
    border-left: 4px solid #c0392b;
    color: #7a2118;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 14.5px;
    line-height: 1.5;
    animation: formAlertIn 0.3s ease;
}
.form-alert.show {
    display: flex;
}
.form-alert i {
    color: #c0392b;
    font-size: 18px;
    margin-top: 2px;
}
.form-alert .form-alert-text {
    flex: 1;
}
.form-alert .form-alert-close {
    background: none;
    border: none;
    color: #7a2118;
    opacity: 0.6;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0;
}
.form-alert .form-alert-close:hover {
    opacity: 1;
}
@keyframes formAlertIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.waitings {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #00000070;
    padding: 10px;
    padding-top: 25%;
    display: none;
    top: 0;
    left: 0;
    z-index:99;
}
.waitings .text-light {
    color: #5a0720!important;
    letter-spacing: 1px;
    word-spacing: 2px;
    background: white;
  }
/* Gallery Section */
.gallery-section {
    padding: 40px 0;
    background-color: #f9f4ea;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124, 10, 46, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transform: scale(0);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-btn {
    transform: scale(1);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 70%;
    height: auto;
}

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    /*font-family: 'Montserrat', sans-serif;*/
}

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}
.contact-form-container

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(124, 10, 46, 0.25);
}

textarea.form-control {
    height: auto;
    min-height: 150px;
}

/* Map Section */
.map-section {
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: #000;
    color: var(--white);
    padding: 40px 0 0 0;
    position: relative;
/*
    --tw-gradient-stops: #5a0720, #5a0720, #5a0720;
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));*/
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/footer-bg.jpeg');
    background-size: cover;
    opacity: 0.25;
    z-index: 0;
    background-attachment: fixed;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-widget {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 10px;
    font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    color: #fff;
    font-weight: 700;
        border-bottom: 2px solid #7c0a2e;
    width: max-content;
}
/*
.footer-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 85px;
    height: 2px;
    background:var(--secondary);
}*/
.f-before{padding: 1em 0; padding-bottom: 2em;}
.f-before p{    color: rgb(242 227 232);    font-size: 1.1em;    padding-top: 15px; padding-bottom: 15px;}

.f-before h2{color: #fff; font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
font-size: 2rem; line-height: 1;}

.footer-widget ul{padding-left: 0px;}

.footer-widget ul li {
    margin-bottom: 5px;
}

.footer-widget ul li a {
    color: rgb(242 227 232);
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: rgb(201 162 75);
    padding-left: 0px;
}
.footer-widget p{ color: rgb(242 227 232);}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-contact-list li i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-contact-list li span,
.footer-contact-list li span a {
    color: rgb(242 227 232);
    font-size: 14.5px;
}

.footer-contact-list li span a:hover {
    color: rgb(201 162 75);
}

.newsletter-form {
    position: relative;
}
.footerbtn1{background: linear-gradient(135deg, var(--secondary), #b8863a); color: var(--dark); font-weight: 700; }
.footerbtn1:hover{color: #fff; background: var(--primary); background-image: none; }
.footerbtn2{color: rgb(201 162 75); border-color: rgb(201 162 75);}
.footerbtn2:hover{color: #5a0720; background-color:rgb(201 162 75) ;}

.newsletter-form input {
    width: 100%;
    height: 50px;
    background: rgb(255 255 255 / 17%);
    border: none;
    padding: 0 20px;
    color: var(--white);
    border-radius: 5px;
}
.newsletter-form input::placeholder{color: #eae6e6e6;}
.newsletter-form button {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 162, 75, 0.3);
    color: var(--white);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark) !important;
    transform: translateY(-3px);
}

.copyright {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /*margin-top: 20px;*/
    position: relative;
    z-index: 1;
    background-color: rgba(90, 7, 32, .5);
}

.copyright p{margin-bottom: 0px; color: rgb(232 207 138); font-size: 15px;}

.footer-menu {
    text-align: right;
}

.footer-menu a {
    color: rgb(232 207 138); font-size: 15px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: rgb(201 162 75);
}

.quickLink ul li::before {
    content: '';
    display: inline-block;
    height: 14px;
    width: 26px;
    background-image: url(../img/icon/location.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.footer-widget .para{color: #fff;}
.footer-logo{width: 70%;}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Contact Page Banner */
.contact-banner {
    background: linear-gradient(rgb(31 10 18 / 16%), rgb(31 10 18 / 16%)), url(../img/home-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}

.enroll-banner {
    background: linear-gradient(rgb(31 10 18 / 16%), rgb(31 10 18 / 16%)), url(../img/enroll-bg.webp);
    background-size: cover;
    background-position: top;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}
.lead-text{font-size: 1.2rem;
    font-weight: 500;}


.abtbtn1{background-color: #5a0720; border-color:#5a0720; transition: .5s all;}
.abtbtn1:hover{background-color: #5a0720; transform: scale(1.05);}

.abtbtn2{border-color:rgb(90 7 32); color: rgb(90 7 32); }
.abtbtn2:hover{background: transparent; transform: scale(1.05); border-color:rgb(90 7 32); color: rgb(90 7 32);}
.abtbottom{background-color: #e8cf8a; padding: 1em; left: 0; right: 0; width: 65%; margin: auto; opacity: 0.4;}
.rotatesvg svg{color:rgb(124 10 46);}
.rotatesvg{bottom: -25px;  animation: spin-slow 5s linear infinite;}
.svg2 svg{color: rgb(124 10 46);}
.svg2{top: -30px; right: 0; bottom: unset; opacity: 0.5;}

@keyframes spin-slow {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}
.contact-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    color: #fff;
}

.contact-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.contact-banner .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.contact-banner .breadcrumb-item.active {
    color: #eee;
}

.contact-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

/* Yoga Alliance Full-Width Section */
.yoga-alliance-section {
  background-color: #eef4f9;
  position: relative;
  overflow: hidden;
}

.yoga-alliance-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/mandala-bg-light.png');
  opacity: 0.03;
  z-index: 0;
}

.certification-image {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.certification-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(124,10,46,0.1));
}

.certification-content {
  padding:0px 40px;
  position: relative;
  z-index: 1;
}

.alliance-badge {
  max-width: 150px;
  margin-bottom: 30px;
}

.alliance-badge img {
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.yoga-alliance-section h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 20px;
}

.divider {
  width: 150px;
  height: 4px;
  background: #f9c637ba;
  margin: 5px 0;
}
.border-corner{    border-bottom-right-radius: 100px;
    border-top-left-radius: 100px;}

.yoga-alliance-section .lead {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 30px;
}

.certification-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.certification-benefits li {
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
}

.certification-benefits i {
  color: #c9a24b;
  margin-right: 12px;
  font-size: 20px;
  margin-top: 3px;
}

.certification-benefits strong {
  font-weight: 600;
  color: var(--dark);
}

.certification-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
}

/*========About Page CSS============= */

.environment-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 20px;
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: rgba(124,10,46,0.1);
    color: #7c0a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-item p {
    margin-bottom: 0;
    color: var(--gray);
}
/*=============End About PAge ===============*/

/*====================Thank You Page css ==============*/
.thank-you-section {
    padding: 80px 0;
}
.thank-you-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(124, 10, 46, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
}
.thank-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    animation: thankIconPop 0.5s ease-out;
}
@keyframes thankIconPop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}
.thank-you-card .title {
    color: var(--primary);
    margin-bottom: 15px;
}
.thank-you-text {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 35px;
}
.thank-you-steps {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 1px dashed rgba(124, 10, 46, 0.2);
    border-bottom: 1px dashed rgba(124, 10, 46, 0.2);
}
.thank-step {
    max-width: 170px;
}
.thank-step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
}
.thank-step p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}
.thank-you-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}
.thank-you-btns .whatsapp-btn {
    border-color: #25D366 !important;
    color: #1a9c4b !important;
}
.thank-you-btns .whatsapp-btn:hover {
    background: #25D366 !important;
    color: #fff !important;
}
.thank-you-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    color: #777;
    font-size: 0.95rem;
}
.thank-you-contact a {
    color: #777;
    text-decoration: none;
}
.thank-you-contact i {
    color: var(--primary);
    margin-right: 6px;
}
@media (max-width: 576px) {
    .thank-you-card {
        padding: 40px 20px;
    }
    .thank-you-steps {
        gap: 15px;
    }
}
/*=============End Thank You Page ===============*/


/*====================Gallery Page css ==============*/
/* Inner Banner Styles */
.inner-banner {
    background: linear-gradient(rgb(31 10 18 / 16%), rgb(31 10 18 / 16%)), url(../img/village-tour.jpg);
    background-size: cover;
    background-position: center;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}

.gallery-banner{
    background: linear-gradient(180deg, rgba(31,10,18,0) 50%, rgba(31,10,18,.55) 100%), url(../img/200hrs.png);
    background-size: cover;
    background-position: center;
    padding: 180px 0 110px;
    text-align: center;
    color: white;
    position: relative;
}

.about-banner{
    background: linear-gradient(180deg, rgba(31,10,18,0) 50%, rgba(31,10,18,.55) 100%), url(../img/about-banner.webp);
    background-size: cover;
    background-position: center;
    padding: 180px 0 110px;
    text-align: center;
    color: white;
    position: relative;
}

.inner-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 3px 3px 6px rgb(0 0 0 / 51%);
    letter-spacing: 2px;
}
.inner-banner h1 span{color: #c9a24b;}
.inner-banner-text{color: #fff; font-size: 1.25rem; line-height: 1.5;}

.inner-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.inner-banner .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.inner-banner .breadcrumb-item.active {
    color: #eee;
}

.inner-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}


.course_item .course_content .courseDesc{ font-family: 'Raleway', sans-serif; font-weight: 500;line-height: 28px;text-align: justify; padding-bottom: 12px; font-size: 15px;}


/* Gallery Page Styles */
.gallery-section {background: #faf9fa; }
.gallery-filter {margin-bottom: 30px; text-align: center; }
.gallery-filter .filter-btn {background: #f3f4f6; border: 1px solid #f3f4f6; color: rgb(55 65 81); padding: 8px 20px; margin: 5px; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; font-size: 16px; font-weight: 500; }
.gallery-filter .filter-btn.active, .gallery-filter .filter-btn:hover {background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; }
.gallery-grid {display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.gallery-item {position: relative; overflow: hidden; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); cursor: pointer; }
.gallery-item img {width: 100%; height: 250px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img {transform: scale(1.1); }
.gallery-overlay {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgb(6 6 6 / 21%); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-overlay {opacity: 1; }
.gallery-overlay-content {text-align: center; color: #fff; }
.gallery-overlay-content i {font-size: 30px; margin-bottom: 10px; }
.gallery-overlay-content h4 {font-size: 18px; margin: 0; font-weight: 500; }
        /* Lightbox customization */
.mfp-with-zoom .mfp-container, .mfp-with-zoom.mfp-bg {opacity: 0; transition: all 0.3s ease-out; }
.mfp-with-zoom.mfp-ready .mfp-container {opacity: 1; } .mfp-with-zoom.mfp-ready.mfp-bg {opacity: 0.8; }
.mfp-with-zoom.mfp-removing .mfp-container, .mfp-with-zoom.mfp-removing.mfp-bg {opacity: 0; }
.mfp-title {text-align: center; padding: 10px; font-size: 16px; color: #fff; } 

/* Lightbox Overrides */
.lightbox .lb-image {
    border: 5px solid var(--white);
    border-radius: 3px;
}

.lb-data .lb-caption {
    font-size: 16px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.lb-data .lb-number {
    font-family: 'Poppins', sans-serif;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .inner-banner {
        padding: 80px 0 50px;
    }
    
    .inner-banner h1 {
        font-size: 36px;
    }
    
    .gallery-card img {
        height: 200px;
    }
    
    .btn-filter {
        padding: 6px 15px;
        font-size: 12px;
        margin: 0 3px 8px;
    }
}

@media (max-width: 575.98px) {
    .inner-banner h1 {
        font-size: 30px;
    }
    
    .gallery-card img {
        height: 180px;
    }
}


/*====================End Gallery Page css ==============*/

/*================teacher page============*/
/* Additional styles for team page */
        .team-banner{    background: linear-gradient(rgb(31 10 18 / 16%), rgb(31 10 18 / 16%)), url(../img/team-bg.jpg);     background-size: cover;
    background-position: center;}
        
        .team-hero h1 {
            font-size: 48px;
            margin-bottom: 15px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        
        .teacher-detail-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(124,10,46,0.15);
            margin-bottom: 50px;
            border: 1px solid rgba(124,10,46,0.1);
        }
        
        .teacher-main-info {
            padding: 40px;
            background: linear-gradient(135deg, rgba(124,10,46,0.05) 0%, rgba(255,255,255,1) 100%);
        }
        
        .teacher-img-container {
            height: 100%;
            min-height: 400px;
            overflow: hidden;
        }
        
        .teacher-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .teacher-detail-card:hover .teacher-img-container img {
            transform: scale(1.03);
        }
        
        .teacher-name {
            font-size: 32px;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .teacher-title {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 20px;
            display: block;
            font-size: 18px;
        }
        
        .teacher-bio {
            margin-bottom: 30px;
            font-size: 16px;
        }
        
        .teacher-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .stat-item {
            background: white;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            min-width: 120px;
        }
        
        .stat-item h4 {
            color: var(--primary);
            margin-bottom: 5px;
            font-size: 24px;
        }
        
        .stat-item p {
            font-size: 14px;
            margin-bottom: 0;
        }
        
        /*.teacher-details {
            padding: 40px;
        }*/
        
        .detail-section {
            margin-bottom: 30px;
        }
        
        .detail-section h3 {
            font-size: 22px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .detail-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--primary);
        }
        
        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .skill-tag {
            background: rgba(124,10,46,0.1);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 14px;
        }
        
        .teacher-social {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .teacher-social a {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .teacher-social a:hover {
            transform: translateY(-5px);
            background: var(--primary-dark);
        }
        
        @media (max-width: 991.98px) {
            .teacher-img-container {
                min-height: 300px;
            }
            
            .teacher-main-info,
            .teacher-details {
                padding: 30px;
            }
        }
        
        @media (max-width: 767.98px) {
            .team-hero h1 {
                font-size: 36px;
            }
            
            .teacher-name {
                font-size: 28px;
            }
        }

/*================end teacher page============*/

/*==============food-Accommodation Page=============*/
.accom-section{background: #f9f4ea;}
.additional-ammen{background: #fff;}

/*==============end food-Accommodation page=============*/


/*====================TTC page CSS==================*/
/* Course Banner */

.course-banner{
    background: linear-gradient(180deg, rgba(31,10,18,0) 50%, rgba(31,10,18,.55) 100%), url(../img/200-banner.webp);
    background-size: cover;
    background-position: center;
    padding: 180px 0 110px;
    text-align: center;
    color: white;
    position: relative;
}
.goa-banner-100h{
    background: linear-gradient(180deg, rgba(31,10,18,0) 50%, rgba(31,10,18,.55) 100%), url(../img/goa-100hour.webp);
    background-size: cover;
    background-position: center;
}
.goa-banner-300h{
    background: linear-gradient(180deg, rgba(31,10,18,0) 50%, rgba(31,10,18,.55) 100%), url(../img/goa-300hour.webp);
    background-size: cover;
    background-position: center;
}
.goa-banner-500h{
    background: linear-gradient(180deg, rgba(31,10,18,0) 50%, rgba(31,10,18,.55) 100%), url(../img/goa-500hour.jpg);
    background-size: cover;
    background-position: center;
}

.course-200{background: linear-gradient(180deg, rgba(31,10,18,0) 50%, rgba(31,10,18,.55) 100%), url(../img/200hrs.png);
    background-size: cover;
    background-position: center;     padding: 160px 0 100px;}

.course-300{background: linear-gradient(rgba(31, 10, 18, 0.5), rgba(31, 10, 18, 0.5)), url('../img/300-hour-bg.jpg');
    background-size: cover;
    background-position: center;}

.course-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgb(0 0 0 / 51%);
    color: #c9a24b;
}

.course-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.course-banner .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
        font-size: 18px;
    font-weight: 500;
}

.course-banner .breadcrumb-item.active {
    color: #eee; font-size: 18px;
    font-weight: 500;
}

.course-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

/* Course Overview */
.course-overview-section {
    padding: 100px 0;
    background-color: var(--white);
}

.course-img-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.course-badge span {
    display: block;
    font-weight: 700;
    font-size: 18px;
}

.course-badge p {
    margin-bottom: 0;
    font-size: 12px;
}

.course-highlights {
    margin: 25px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.highlight-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 18px;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    background: rgba(124,10,46,0.1);
    padding: 15px;
    border-radius: 10px;
}

.meta-item i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 15px;
}

.meta-item span {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.meta-item strong {
    font-size: 18px;
    color: var(--dark);
    font-weight: 700;
}

/* Course Features */
.course-features-section {
    padding: 80px 0;
    background-color: #f9f6ee;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(124,10,46,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 100%;
    height: auto;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Curriculum Section */
.curriculum-section {
    padding: 100px 0;
    background-color: #f9f6ee;
}

.curriculum-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    /*height: 100%;*/
    border: 1px solid rgba(124,10,46,0.1);
}

.curriculum-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.curriculum-header img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.curriculum-header h3 {
    font-size: 22px;
    margin-bottom: 0;
    color: var(--dark);
}

.curriculum-card ul {
    list-style: none;
    padding-left: 0;
}

.curriculum-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.curriculum-card ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}
.whatlearn{background: linear-gradient(to top, #faf6ee, rgb(255 255 255));}
/* Schedule with Form Section */
.schedule-with-form-section {
    padding: 100px 0;
    background-color: var(--white);
}

.daily-schedule {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(124,10,46,0.1);
}

.schedule-item {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(124,10,46,0.2);
}

.schedule-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.schedule-time {
    width: 200px;
    flex-shrink: 0;
    font-weight: 600;
    color: var(--primary);
}

.schedule-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.schedule-content p {
    margin-bottom: 0;
    color: var(--gray);
    font-size: 16px;
}

.schedule-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

.quick-enroll-form {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(124,10,46,0.1);
    position: sticky;
    top: 20px;
}

.form-header h3 {
    font-size: 24px;
    color: #0e0e0e;
    margin-bottom: 10px;
}

.form-header p {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    width: 100%;
    color: #9ca3af;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(124,10,46,0.25);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray);
}

.form-footer i {
    color: var(--primary);
    margin-right: 5px;
}

@media (max-width: 991.98px) {
    .schedule-item {
        flex-direction: column;
    }
    
    .schedule-time {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .quick-enroll-form {
        position: static;
        margin-top: 50px;
    }
}



/* Activities Section */
.activities-section {
    padding: 100px 0;
    background-color: var(--white);
}

.activity-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.activity-card:hover {
    /*transform: translateY(-10px);*/
    box-shadow: 0 15px 30px rgba(124,10,46,0.2);
}

.activity-img {
    height: 200px;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.05);
}

.activity-content {
    padding: 20px 0px;
    background: white;
    text-align: left;
}

.activity-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #000;
}

/* Facilities Section */
.facilities-section {
    padding: 100px 0;
    background-color: #f9f6ee;
}

.facility-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.facility-img img {
    width: 100%;
    height: auto;
}

.facility-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}



.meal-features {
    margin-top: 15px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: #f9f4ea;
}
.upcoming-card{    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 10px; margin: 1em 3em; overflow: hidden; position: relative; z-index: 1;}

.pricing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    /*height: 100%;*/
    position: relative;
    border: 1px solid rgba(124,10,46,0.1);
    margin: 30px 20px;
}

.pricing-card.featured {
    border: 2px dashed var(--primary);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(124,10,46,0.1) 0%, rgba(255,255,255,1) 100%);
}

.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}


.pricing-header span {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.pricing-features {
    padding: 0 30px 30px;
    list-style: none;
}

.pricing-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.pricing-features li i {
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 5px;
}

.pricing-card .btn {
    margin: 0 30px 30px;
    display: block;
    width: calc(100% - 60px);

}

.prices {
    position: sticky;
    top: 120px;
    padding: 20px;
    /*border-radius: 20px;*/
    z-index: 1;
    overflow: hidden;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 2px 0px, rgba(60, 64, 67, 0.15) 0px 0px 6px 2px;
    height: 100%;
    background: #e8cf8a;
}
 .prices .course-name {
    display: flex;
    flex-flow: column;
    align-items: center;
}
 .prices::after {
    content: "";
    position: absolute;
    transform: rotate(4deg);
    height: 150px;
    left: -20px;
    top: -30px;
    width: calc(100% + 30px);
    z-index: -1;
    background: #7c0a2e;
}
 .prices .course-name span, .prices .course-name strong {
    text-align: center;
    color: #fff;
        font-weight: 500;
}
 .prices .course-name span{    font-size: 19px;
    font-weight: 400;}
.prices .course-name strong{font-size: 22px;}

.prices ul {
    margin-top: 20px;
    padding: 0 20px;
}
.prices ul li {
    display: flex;
    flex-flow: column;
    align-items: center;
    /*border: 1px solid rgba(36, 36, 36, 0.3019607843);*/
    border-radius: 12px;
    background: #fff;
    text-align: center;
    padding: 8px;
    gap: 9px;
    font-size: 18px;
    margin-bottom: 22px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
 .prices ul li span {
    font-weight: 600;
    font-size: 22px;
}

.prices ul li span del {
    color: #7a7373;
    font-size: 17px;
}


.dates-table .btn-primary{background-image: linear-gradient(135deg, var(--secondary), #b8863a); border:none;}
.dates-table .btn-one{border-radius: 28px;    padding: 8px 18px;    text-transform: uppercase;}

.dates-table {
  /*  background: white;*/
    padding: 30px 10px;
    /*border-radius: 10px;*/
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
}

.dates-table th {
    font-weight: 600;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    background: transparent;
}

.dates-table td {
    vertical-align: middle;
    background: transparent; padding: 15px 8px;     font-size: 18px;
    font-weight: 500;
}

.dates-table td i{color: #c9a24b;
    padding-right: 8px;
    font-size: 22px;}

.dates-table tr {    border-bottom: 1px solid #d8d7d7;}
.spotleft{  color: #292929;
    background: #e8cf8a;
    padding: 6px 10px;
    border-radius: 8px;
    width: 20%;
    text-align: center; font-size: 16px;}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .course-banner h1 {
        font-size: 36px;
    }
    
    .enroll-content h2 {
        font-size: 30px;
    }
    
    .timeline-content h4 {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .course-banner {
        padding: 100px 0 60px;
    }
    
    .course-banner h1 {
        font-size: 30px;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .schedule-timeline:before {
        left: 40px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-time {
        width: 70px;
        padding-right: 15px;
    }
    
    .enroll-content {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .enroll-features {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .course-banner h1 {
        font-size: 26px;
    }
    
    .pricing-header {
        padding: 20px;
    }
    
    .price {
        font-size: 30px;
    }
    
    .pricing-features {
        padding: 0 20px 20px;
    }
    
    .pricing-card .btn {
        margin: 0 20px 20px;
        width: calc(100% - 40px);
    }
}

/* Highlights Section */
.highlights-section {
    padding: 80px 0;
    background-color: #fff;
}

.highlight-list {
    list-style: none;
    padding-left: 0;
}

.highlight-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.highlight-list i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 20px;
    color: var(--primary);
}

@media (max-width: 767.98px) {
    .highlight-list {
        margin-bottom: 30px;
    }
}
/*====================EndTTC page CSS==================*/

/*==============RETREAT PAGE CSS -=======================*/
/* Retreat Banner */
.retreat-banner {
    background: linear-gradient(rgba(31, 10, 18, 0.5), rgba(31, 10, 18, 0.5)), url('../img/gallery-bg.jpg');
    background-size: cover;
    background-position: top;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}
.retreat-banner2 {
    background: linear-gradient(rgba(31, 10, 18, 0.5), rgba(31, 10, 18, 0.5)), url('../img/retreat-bg.jpg');
    background-size: cover;
    background-position: top;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}

.retreat-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    color: #fff;
}

.retreat-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.retreat-banner .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.retreat-banner .breadcrumb-item.active {
    color: var(--primary);
}

.retreat-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

/* Retreat Overview */
.retreat-overview-section {
    padding: 100px 0;
    background-color: var(--white);
}

.retreat-img-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.retreat-meta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    background: rgba(124,10,46,0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 200px;
}

.meta-item i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 15px;
}

.meta-item span {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.meta-item strong {
    font-size: 18px;
    color: var(--dark);
    font-weight: 700;
}

/* Retreat Benefits */
.retreat-benefits-section {
    padding: 80px 0;
    background-color: #f9f6ee;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(124,10,46,0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(124,10,46,0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Retreat Schedule */
.retreat-schedule-section {
    padding: 100px 0;
    background-color: var(--white);
}

.schedule-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.schedule-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 100px;
    width: 3px;
    height: 100%;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 130px;
}

.timeline-time {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    text-align: right;
    padding-right: 20px;
    color: var(--primary);
    font-weight: 600;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(124,10,46,0.1);
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.note {
    font-style: italic;
    color: var(--gray);
}

/* Retreat Activities */
.retreat-activities-section {
    padding: 100px 0;
    background-color: #f9f6ee;
}

.activity-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%; position: relative; margin: 0 1em;
}

.activity-card:hover {
    /*transform: translateY(-10px);*/
    box-shadow: 0 15px 30px rgba(124,10,46,0.2);
}

.activity-img {
    height: 200px;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.05);
}

.activity-content {
    padding: 20px;
    background: white;
}
.date-badge{position: absolute;
    top: 12px;
    left: 12px;
    background: rgb(124, 10, 46);
    color: #fff;
    padding: 3px 16px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 14px; z-index: 999;}

.activity-content h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: rgb(31 41 55);
    font-family: 'Alice', sans-serif;
}
.activity-content p{color: rgb(75 85 99);font-size: 15px;    text-align: justify;}
.blogSection .activity-content .btn-primary{    background: #7c0a2e; border: none; font-size: 12px;    color: #ffffff;}

/* YTTC Course Cards - Updated */
.yttc-course-card {background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; height: 100%; position: relative; border: 1px solid rgba(124, 10, 46, 0.1); display: flex; flex-direction: column; } 
.yttc-course-card.featured {border: 2px solid rgba(124, 10, 46, 0.3); } 
.otherTTC .course-level-badge {position: absolute; top: 15px; left: 15px; background: rgba(255, 255, 255, 0.9); padding: 6px 12px; border-radius: 30px; font-weight: 600; font-size: 14px; color: #7c0a2e; z-index: 2; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); } 
.otherTTC .course-image {height: 200px; overflow: hidden; position: relative; flex-shrink: 0; } 
.otherTTC .course-image img {width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; object-position: top;} 
.yttc-course-card:hover .course-image img {transform: scale(1.05); } 
.otherTTC .course-content {padding: 0px; flex-grow: 1; display: flex; flex-direction: column; } 
.otherTTC .course-content h3 {font-size: 22px; margin-bottom: 10px; color: #1e293b; font-weight: 600; font-family: 'Alice', sans-serif; text-align: center; margin-top: 12px; } 
.otherTTC .course-highlights {margin-bottom: 25px; flex-grow: 1; margin: 5px 0; padding: 0 20px; } 
.otherTTC .highlight-item {display: flex; align-items: center; gap: 8px; color: #475569; font-size: 14px; margin-bottom: 12px; padding: 8px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.05); } 
.otherTTC .highlight-item b{}
.otherTTC .highlight-item:last-child {border-bottom: none; margin-bottom: 0; } 
.otherTTC .highlight-item i {color: #7c0a2e; font-size: 16px; width: 20px; text-align: center; } 
.otherTTC .course-footer {display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(0, 0, 0, 0.1); } 
.otherTTC .course-price {display: flex; flex-direction: column; align-items: flex-start; } 
.otherTTC .course-price .price {font-size: 24px; font-weight: 500; color: #7c0a2e; line-height: 1; } 
.otherTTC .course-price .original-price {font-size: 14px; color: #94a3b8; text-decoration: line-through; } 
.otherTTC .btn-course {display: flex; align-items: center; gap: 8px; padding: 10px 20px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border: none; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; font-size: 14px; white-space: nowrap; } 
.otherTTC .btn-course:hover {background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(124, 10, 46, 0.3); }

/* Retreat Pricing */
.retreat-pricing-section {
    padding: 100px 0;
    background-color: var(--white);
}

.pricing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(124,10,46,0.1);
}

.pricing-card.featured {
    border: 2px solid #e3e6e9;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(124,10,46,0.1) 0%, rgba(255,255,255,1) 100%);
}

.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}



.pricing-header span {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.pricing-features {
    padding: 0 30px 30px;
    list-style: none;
}

.pricing-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.pricing-features i {
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 5px;
}

.inclusion-note {
    font-size: 14px;
    color: var(--gray);
}

/* Dates Section */
.dates-section {
    padding: 80px 0;
    background-color: #f9f6ee;
}

.dates-table {
   /* background: white;
    padding: 30px;
    border-radius: 10px;*/
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
}

.dates-table th {
    font-weight: 600;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.dates-table td {
    vertical-align: middle;
}
.enroll-section{padding: 80px 0px;}

/* Quick Enroll Section */
.quick-enroll-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.enroll-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.enroll-box h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}

.enroll-box p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .retreat-banner h1 {
        font-size: 36px;
    }
    
    .meta-item {
        min-width: 150px;
    }
    
    .schedule-timeline:before {
        left: 60px;
    }
    
    .timeline-item {
        padding-left: 90px;
    }
    
    .timeline-time {
        width: 60px;
    }
}

@media (max-width: 767.98px) {
    .retreat-banner {
        padding: 100px 0 60px;
    }
    
    .retreat-banner h1 {
        font-size: 30px;
    }
    
    .schedule-timeline:before {
        left: 40px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-time {
        width: 40px;
        font-size: 14px;
    }
    
    .enroll-box .col-lg-8 {
        margin-bottom: 20px;
    }
    
    .enroll-box .col-lg-4 {
        text-align: left !important;
    }
}

@media (max-width: 575.98px) {
    .retreat-banner h1 {
        font-size: 26px;
    }
    
    .meta-item {
        min-width: 100%;
    }
    
    .schedule-timeline:before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
    }
    
    .timeline-time {
        position: static;
        text-align: left;
        margin-bottom: 10px;
    }
}
/*==============END RETREAT PAGE CSS -=======================*/



/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .accordion-button {
    padding: 15px 20px;
  }
  
  .accordion-content p,
  .accordion-content ul {
    padding: 0 20px 20px;
  }
}

@media (max-width: 767.98px) {
  .accordion-button span {
    font-size: 16px;
  }
  
  .accordion-content ul {
    padding-left: 40px;
  }
}
/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 0px;
        border-radius: 0px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .about-img {
        margin-bottom: 50px;
    }
    
    .teacher-img {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .hero-section,
    .hero-slide {
        min-height: 600px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .footer-menu {
        text-align: left;
        margin-top: 15px;
    }
    
    .footer-menu a {
        margin: 0 10px 0 0;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
    
    .teacher-img {
        height: 200px;
    }
    
    .hero-img {
        margin-top: 50px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 30px;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .hero-btns .btn {
        /*display: block;*/
        width: 100%;
        margin-bottom: 15px;
    }
    
    .teacher-img {
        height: 250px;
    }
}

/* Updated Button Styles */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-gradient:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.btn-gradient:hover {
    color: var(--white)
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124, 10, 46, 0.3);
}

.btn-gradient:hover:before {
    opacity: 1;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: rgba(124,10,46,0.05);
  border-top: 1px solid rgba(124,10,46,0.1);
}





 /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .accordion-button {
                padding: 15px 20px;
            }
            
            .accordion-content p,
            .accordion-content ul {
                padding: 0 20px 20px;
            }
        }

        @media (max-width: 767.98px) {
            .accordion-button span {
                font-size: 16px;
            }
            
            .accordion-content ul {
                padding-left: 40px;
            }
            
            .faq-cta .btn {
                display: block;
                width: 100%;
                margin-bottom: 10px;
            }
            
            .faq-cta .ms-2 {
                margin-left: 0 !important;
            }
        }

@media (max-width: 991.98px) {
    /* Mobile menu container */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: white;
        z-index: 1050;
        padding: 20px;
        transition: all 0.4s ease-in-out;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .navbar-collapse.show {
        left: 0;
    }
    
    /* Mobile menu header */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 0 8px;
        margin-bottom: 0px;
        border-bottom: 2px solid #f0f0f0;
    }
    
    .mobile-menu-logo {
        max-height: 40px;
        width: auto;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
        padding: 5px;
    }
    
    /* Mobile menu toggle button */
    .mobile-menu-toggle {
        border: none;
        background: transparent;
        padding: 5px;
    }
    
    .mobile-menu-icon {
        display: flex;
        flex-direction: column;
        width: 25px;
        height: 20px;
        justify-content: space-between;
    }
    
    .mobile-menu-icon span {
        display: block;
        height: 3px;
        width: 100%;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    /* Navbar items styling for mobile */
    .navbar-nav {
        padding-top: 10px;
    }
    
    .nav-item {
        margin-bottom: 8px;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .nav-link {
        padding: 12px 15px !important;
        font-size: 16px;
        color: #333 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown-toggle::after {
        margin-left: auto;
    }
    
    /* Dropdown menus for mobile */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        border: none;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-item {
        padding: 10px 15px;
        border-bottom: 1px solid #f9f9f9;
    }
    
    /* Nested dropdowns */
    .dropdown-submenu {
        position: static;
        left: auto;
        top: auto;
        margin-top: 0;
        box-shadow: none;
        border-left: 2px solid #7c0a2e;
    }
    
    /* Enroll button for mobile */
    .mobile-enroll-btn {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
    
    /* Overlay when menu is open */
    .navbar::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navbar.show-overlay::after {
        opacity: 1;
        visibility: visible;
    }
     .navbar-nav {align-items: normal;}
}

/* Desktop styles remain the same */
@media (min-width: 992px) {
    .mobile-menu-header,
    .mobile-menu-close {
        display: none;
    }

    
    .navbar-collapse {
        position: static;
        height: auto;
        width: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
}

.rishi-course-wrap {
    overflow: hidden;
    display: block;
}
.rishi-course-box {
    position: relative;
    z-index: 9;
}
.rishi-course-box::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .4s;
    background-color: #0000004d;
    z-index: 8;
}
#rishi-course .yoga-level {
    z-index: 99;
    padding: 5px 40px;
    font-size: 16px;
}
.yoga-level {
    position: absolute;
    left: -48px;
    transform: rotate(-45deg);
    width: 220px;
    top: 39px;
    padding: 8px 40px;
    text-align: center;
    background-color: #5a0720;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}
.rishi-course-image {
    width: 100%;
    height: 520px;
    transition: .4s;
    object-fit: cover;
}
.rishi-info-content-wrap {
    position: absolute;
    bottom: 0px !important;
    width: 90%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transition: ;
    z-index: 99;
}
.rishi-course-heading {
    font-size: 28px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 0;
}
.rishi-course-sub-heading {
    position: relative;
    z-index: 9;
    font-weight: 600;
    color: #fff;
    padding: 6px 10px 6px 0;
}
.rishi-course-sub-heading::before {
    position: absolute;
    content: "";
    left: -33px;
    width: calc(100% + 60px);
    height: 100%;
    background-color: #5a0720;
    z-index: -1;
    top: 0;
    transform: skewX(-17deg);
}
.rishi-course-detail-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}
.rishi-duration-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 5px;
    filter: brightness(0) saturate(100%) invert(53%) sepia(37%) saturate(550%) hue-rotate(6deg) brightness(114%) contrast(101%);
}
.rishi-duration-text {
    font-weight: 400;
    color: #fff;
}
.theme-button {
    padding: 10px 25px;
    display: inline-block;
    border: 2px solid #7c0a2e;
    font-weight: 600;
    color: #7c0a2e;
    background-color: #fff;
    transition: .5s ease-in;
    font-size: 15px;
}
.theme-button:hover{
    background: #7c0a2e;
    color: #fff;
}
.rishi-course-wrap .theme-button {
    padding: 5px 20px;
}
.rishi-course-box:hover .rishi-info-content-wrap {
    transition: .4s;
    bottom: 0
}

.rishi-course-box:hover .rishi-course-image {
    transform: scale(1.2);
    width: 90%;
    transition: .4s;
}

.rishi-course-box:hover:before {
    transition: .4s;
    background-color: #000000bd
}
.alliance-img{    width: 50%;margin: auto;}



/*===========Responsive css=================*/
@media screen and (max-width: 1024px) {}

@media screen and (max-width: 768px) {
    .ttcCourses {margin: 0 1em; margin-top: 2em; } 
    .course_item {padding: 20px; margin-bottom: 2em; } 
    .course_item .course_content {padding-left: 0; padding-top: 20px; } 
    .course_content h3 {font-size: 22px; } 
    .course_info ul {gap: 10px; } 
    /*.course_info ul li {min-width: 100%; } */
    .hero-img{display:none; }
    .certification-content{padding: 10px 40px;}
    .cta-box{padding: 20px;}
    .footer-logo{width: 50%;}
    .hero-section, .hero-slide{        min-height: 500px;}
    .dropdown-menu{display: none;}
    .main-banner h4{font-size: 54px;}
    .slider-content .sliderHeading{    font-size: 50px;}
    .slider-content p{    font-size: 17px;}
    .title{font-size: 32px;}
    .chakra-img{    top: -100px;}
    .course_item .course_content{        padding-top: 2px;}
    .course_content h3{font-size: 20px;}
    .hero-btns{margin-bottom: 15px;}
    .teacher-img-wrapper img{object-position: top;}
    .border-image{    height: 190px;}
    .activity-content{padding: 15px;}
    .activity-content h3{font-size: 16px;}
    .contact-details{padding-right: 0em;}
    .premium-card{margin-top: 2em;}
    .course-highlight-footer{position: relative; z-index: 1;}
    .detail-row{    padding: 13px 0;}

}

@media screen and (max-width: 667px) {
    .navbar-brand{width: 15%;}
    .course_info p{font-size: 20px;}
    .course_info ul li{min-width: 150px;}
    .course_content .time{margin-top: 10px;}
    .chakra-img{top: -70px; right: -10%;}
    .retreat-grid{    margin: 2em 1em;}
    .teacher-img-wrapper{height:420px;}
    .border-image{height: 300px; margin-bottom: 12px;}
    .f-before h2{    font-size: 1.5rem;}
    .f-before p{    font-size: 16px;    padding-top: 8px;    padding-bottom: 5px}
    .f-before{padding-bottom: 1em;}
    .copyright{text-align: center;}
    .copyright .footer-menu{text-align: center; margin-top: 8px;}
    .footer-widget{margin-bottom: 25px;}
    .lead-text{margin-bottom: 6px;}
    .pdtl{margin: 0 1rem;}
    .schedule-tab .font-semibold{font-size: 16px;}
    .schedule-activity span{font-size: 16px;}
    .dailyschedule .row.mt-5{    margin-top: 1.5rem !important;}
    .upcoming-card{    margin: 1em 1em;}
    .dates-table{padding: 10px 10px;}
    .dates-table td{font-size: 16px;}
    .dates-table td i{font-size: 20px;}
}
@media screen and (max-width: 640px) {
    .main-banner h4{font-size: 50px;}
    .carousel-caption{right: 10%;left: 10%;}
    .slider-content .sliderHeading{font-size: 45px;}
    .slider-content p{font-size: 16px;    padding: 5px 0px;}
    #bannervideo{    height: 540px;}
    .lead-text{font-size: 18px;}
    .about-section .text{font-size: 17px;}
    .btn-one{padding: 10px 18px;}
    .teacher-card-new{    margin: 10px 4em;}
    .course-banner{padding: 110px 0 60px;}
}
@media screen and (max-width: 576px) {
    header nav{margin: 18px 28px 0 28px;}
    .main-banner h4{font-size: 45px;}
    .slider-content .sliderHeading{font-size: 42px;}
    #bannervideo{height: 500px;}
    .title{    line-height: 38px;}
    .course_content .time i{font-size: 16px;}
    .course_content h3{margin: 12px 0 5px 0;}
    .course_info p{font-size: 18px;}
    .retreat-content{    padding: 15px 20px;}
    .border-image{height: 270px;}
    .contact-form-container{padding: 40px 20px;}
    .course-banner h1{        font-size: 28px;}
    .courseoverview .text{font-size: 16px;}
    .section-header span{font-size: 20px;}
    .payment-header i{width: 50px;height: 50px; font-size: 24px;}
    .scheduleTime{width: 44%;}
    .dates-table td{padding: 10px 8px;}
    .dates-table .btn-one{    font-size: 13px;}
    .spotleft{    font-size: 15px;}
    .prices .course-name span{    font-size: 17px;}
    .prices .course-name strong{font-size: 20px;}
    .prices ul li span{font-size: 20px;}
    .gallery-carousel .item a img{height: 160px!important}
    .inclusion-body{padding: 20px;}
    .knowPoints .know-icon{width: 7%;}
    .know-icon i{font-size: 22px;}
    .knowPoints .know-box{min-height: auto;margin-bottom: 20px;}
    .otherTTC .highlight-item{margin-bottom: 5px;}
}
@media screen and (max-width: 490px) {
    .navbar-brand{width: 18%;}
    .carousel-caption{right: 8%;left: 8%;}
    .slider-content .sliderHeading{font-size: 38px; }
    .main-banner h4{font-size: 42px;}
    .title{font-size: 26px;}
    .section-header h2{font-size: 26px;}
    .chakra-img{top: -50px;}
    .location-tab{padding: 10px 20px;    font-size: 16px;     gap: 8px;}
    .course_item{padding: 16px;}
    .item_image .event-tag{font-size: 14px; padding: 6px 18px;}
    .course_info ul{gap:18px;}
    .course_info .btn-one{    display: block;width: max-content;}
    .course_item .item_image img{height: 270px;}
    .retreat-footer .btn-one{padding: 8px 18px;}
    .price-tag .price{font-size: 22px;}
    .price-tag{padding: 0px 5px;}
    .hero-btns .btn{margin: auto;width: max-content;}
    .border-image{height: 250px;}
    .homeContactSection .row.mt-4{margin-top: 0px!important;}
    .footer .hero-btns .btn{display: inline;}
    .f-before{    padding: 1em 10px;}
    .f-before p br{display: none;}
    .footer-widget h3{    font-size: 18px;}
    .border-image{height: 230px;}
    .teacher-card-new{        margin: 10px 2em; height:380px;}
    .footer:before{background-attachment: unset;}
    .review-title{font-size: 1.2rem;}
    .course-banner h1{        font-size: 26px;}
    .course-banner .breadcrumb-item.active{font-size: 16px;}
    .premium-card{margin-left: 0px; margin-bottom: 0px;}
    .detail-icon{width: 40px;    height: 40px;}
    .detail-row{        padding: 10px 0;}
    .price-tage strong{font-size: 20px;}
    .scheduleTime{        width: 57%;}
    .upcoming-card{margin: 1em 0em;}
    .dates-table{padding: 10px 0px;}
    .spotleft{font-size: 12px;}
}
@media screen and (max-width: 430px) {
    .carousel-caption{        right: 5%;left: 5%;}
    .main-banner h4{        font-size: 38px;}
    .slider-content .sliderHeading{font-size: 36px;}
    .about-img-main{margin-top: 0px;}
    .section-header h2{font-size: 24px;}
    .title {line-height: 32px; }
    .lead-text{font-size: 17px;}
    .about-section .text{font-size: 16px;}
    .location-tabs{    gap: 14px;    margin-top: 25px;}
    .ttcCourses{margin: 0 0em;margin-top: 2em;}
    .course_content .time{    font-size: 14px;padding: 5px 14px;}
    .course_content h3.mb-3{margin-bottom: 2px!important;}
    .course_item::after{    width: 230px;height: 230px;}
    .course_info .event__color{font-size: 15px;}
    .course_item .item_image img{height: 230px;}
    .retreat-title{font-size: 20px;}
    .retreat-header{margin-bottom: 8px;}
    .price-tag .price{font-size: 20px;}
    .retreat-footer .btn-one{padding: 6px 14px;font-size: 15px;}
    .retreat-media{height: 230px;}
    .activity-content h3{margin-bottom: 15px;}
    .contact-text{    padding-left: 5px;}
    .contact-icon{    width: 35px;    height: 35px;}
    .f-before h2{font-size: 1.3rem;}
    .navbar-brand{width: 26%;padding: 0;}
    header nav{margin: 18px 18px 0 18px;}
    .testimonial-carousel{    padding: 2rem 1rem;}
    .testimonial-card{padding: 28px 16px;}
    .testimonial-content p{font-size: 16px;}
    .author-info h4{margin-bottom: 2px;}
    .course-banner{padding: 130px 0 40px;}
    .course-banner h1{margin-bottom: 6px;}
    .pdtl{margin: 0 0rem;}
    .program-card .payment-header{padding: 20px 10px 20px;}
    .schedule-tab .font-semibold{font-size: 15px;}
    .scheduleTime{padding: 8px 8px 8px; width: 65%;}
    .gallery-carousel .item a img{height: 130px!important;}
    .otherTTC .course-content h3{font-size: 20px;}
    .otherTTC .course-price .price{font-size: 22px;}
    .overviewPara p{font-size: 16px;}
    .course-banner .breadcrumb-item a{font-size: 16px;}
    .premium-card .card-header h3{font-size: 18px;}
    .price-tage strong{font-size: 18px;}
    .quick-enroll-form{margin-top: 40px;}
    .quick-enroll-form{    padding: 25px 20px;}

     .dates-table table, .dates-table table tbody, .dates-table table tr, .dates-table table td {display: block; width: 100%; } 
     .dates-table table tr {background: #fff; border-radius: 12px; padding: 12px; margin-bottom: 15px; box-shadow: 0 3px 10px rgba(0,0,0,0.1); border: 1px solid #eaeaea; display: flex; flex-direction: column; gap: 8px; } 
     .dates-table table td {padding: 0; border: none; text-align: center; }
     .dates-table table td:first-child {font-weight: 600; color: #333; font-size: 16px; order: 1; } 
     .dates-table table td:nth-child(2) {order: 2; justify-content: flex-start; } 
     .dates-table table td:nth-child(3) {order: 3; justify-content: center; margin-top: 5px; }
     .dates-table td i{font-size: 17px;}
     .spotleft{font-size: 13px;}
     .teacher-info-new{    bottom: 8px;}

}
@media screen and (max-width: 400px) {
    .slider-content .sliderHeading{font-size: 34px;}
    .main-banner h4{font-size: 36px;}
    .course_info .btn-one{padding: 6px 10px;}
    .border-image{height: 200px;}
    .retreat-grid{margin: 2em 0em;}
    .contact-form input, .contact-form textarea{padding: 6px 16px;font-size: 15px;}
    .form-control{height: 40px;padding: 6px 15px;}
    #bannervideo{height: 480px;}
    .certification-benefits{margin-bottom: 15px;}
    .inclusion-card.included .inclusion-header h5{margin: 0px; font-size: 20px;}
    .inclusion-header{    padding: 15px 25px;}
    .inclusion-card.not-included .inclusion-header h5{margin: 0px; font-size: 20px;}
    .otherTTC .row.mt-5{margin-top: 2rem !important;}
    .otherTTC .course-footer{padding: 12px 25px;}
    .chakra-img{top: -35px;}
    .scheduleTime{padding: 7px 7px 7px;        width: 70%;}
    .teacher-info-new{bottom: 10px;}
    .otherTTC .highlight-item i{width: 15px;}
    .prices ul li{gap: 7px; font-size: 17px;}
    .prices ul li span{font-size: 18px;}
    .inclusion-body{        padding: 10px 20px;}
    .eligibility-section p{text-align: justify!important;}
    .teamSection br{display: none;}
    .know-icon i{font-size: 20px;}
    .otherTTC .course-content h3{font-size: 19px;}
    .footer-widget{margin-bottom: 20px;}
    .teacher-info-new{padding: 0px 5px;}

}
@media screen and (max-width: 390px) {
    .section-header h2{font-size: 22px;}
    .lead-text{font-size: 16px;}
    .chakra-img{top: -35px;}
    .course_item .item_image img{height: 200px;}
    .course_info ul li{min-width: 130px;}
    .duration{    padding: 4px 12px;}
    .teacher-img-wrapper{height: 380px;}
    .retreat-grid{    grid-template-columns: unset;}
    .course_item::after{width: 190px;height: 190px;}
    .detail-icon{width: 35px;height: 35px;}
    .payment-header h3{    font-size: 16px;}
    .scheduleTime i{    padding-right: 3px;    font-size: 15px;}
    .schedule-activity span{font-size: 15px;}
    .form-header h3{font-size: 22px;}
    .certification-benefits i{margin-right: 8px; font-size: 16px;}
    .know-box{padding: 10px 16px;}
    .otherTTC .course-price .price{font-size: 21px;}
}
@media screen and (max-width: 360px) {
    .carousel-caption{right: 3%;left: 3%;}
    .slider-content .sliderHeading{font-size: 32px;}
    .location-tab{        font-size: 15px;}
    .location-tabs{gap: 12px;}
    .retreat-title{font-size: 18px;}
    .teacher-card-new{margin: 10px 1em;}
    .border-image{height: 185px;}
    .copyright{padding: 10px 0px;}
    .bor-bottom{    margin-bottom: 8px;}
    .contact-form-container{        padding: 25px 15px;}
    .course-banner h1{        font-size: 23px;}
    .course-banner .breadcrumb-item a{font-size: 15px;}
    .course-banner .breadcrumb-item.active{font-size: 15px;}
    .premium-card .card-header h3{font-size: 16px;}
    .scheduleTime{padding: 7px 4px 7px;width: 80%;}
    .schedule-activity{padding: 0 10px;}
    .quick-enroll-form{margin-top: 20px;}
}
@media screen and (max-width: 330px) {
    .slider-content .sliderHeading{font-size: 30px;}
    .course_info ul{        gap: 10px;}
    .border-image{height: 175px;}
    .activity-img{height: 140px;}
    .activity-content{padding: 10px;}
    .activity-card{margin: 0;}
    .footer .hero-btns .btn{font-size: 13px;}
    .course-banner{padding: 110px 0 40px;}
    .otherTTC .course-highlights{padding: 0 10px;}
    .otherTTC .course-footer{        padding: 12px 12px;}
    .otherTTC .course-price .price{font-size: 20px;}
}

.whatsapp-float{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
    transition: transform .2s ease;
}
.whatsapp-float:hover{
    color: #fff;
    transform: scale(1.08);
}



