/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Castoro:ital@0;1&display=swap');

:root {
  --primary: #8c3e98;         
  --primary-light: #ff9b7a;
  --primary-dark: #c7502d;
  
  --secondary: #419170;       
  --secondary-light: #39bdb2; 
  --secondary-dark: #01655f; 
  --accent: #c75100;       

  --dark: #2b2f33;           
  --light: #f8f9fa;         
  --white: #ffffff;        

  --gray: #6c757d;     
  --light-gray: #e9ecef;  
} 


/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    color: #000
    /*background-color: #e9630208;*/
}
body p{line-height: 1.8; color: #000}

h1, h2, h3, h4, h5, h6 {
    font-family: "Cormorant", serif;
    font-weight: 500;
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}
.container {
      width: 100%;
      max-width: 1200px;
      margin: auto;
      /*padding: 20px;*/
      box-sizing: border-box;
    }

/* Buttons */
.btn {
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    border-top-left-radius: 0px;
}

.btn-primary {
    background-color: #8c3e98;
    border-color: #8c3e98;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(142, 121, 62, 0.3);
        margin: 0 5px;
}

.btn-primary:hover {
    background-color: #419170;
    border-color: #419170;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(142, 121, 62, 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;
}

/* Section Header */
.section-header {
    margin-bottom: 20px;
    position: relative;
}

.section-header span {
    display: block;
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    color: #40735d;
    font-weight: 600;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin-top: 20px;
}
.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: #027124!important;
    letter-spacing: 1px;
    word-spacing: 2px;
    background: white;
  }

.center {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-dark);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.text-justify{text-align: justify;}
/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.popup-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.popup-link:hover .popup-image {
    transform: scale(1.02);
}

.popup-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: var(--primary-dark);
    transform: rotate(90deg);
}

/* Responsive Popup */
@media (max-width: 768px) {
    .popup-close {
        top: -50px;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: 35px;
        height: 35px;
        font-size: 25px;
    }
    
    .popup-content {
        max-width: 95%;
    }
}

@keyframes bloom {
    0%, 100% { height: 15px; opacity: 0.8; }
    50% { height: 25px; opacity: 1; }
}
.section{padding: 3em 0; }
.bg-grey{background: #fcebf8;}


/* Navigation */
.navbar {
    padding: 4px 0;
    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: 5px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.navbar-brand{width: 6%;}
.navbar-brand img {
        color: var(--primary);
    font-weight: bold;
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 8px 10px !important;
    position: relative;
    margin: 0 5px;
    font-family: "Poppins", sans-serif;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.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: var(--secondary) !important;
}

/* 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: var(--primary);
    color: var(--white);
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}
.sliderTitle{font-size: 70px; font-weight: 600;}
.slider-subtitle{font-size: 35px;margin: 0;}
.sliderBtn{margin-top: 20px;}
.slider-subtitle,
.sliderTitle,
.carousel-caption p,
.sliderBtn {
  opacity: 0;
  transform: translateY(30px);
  animation: slideFade 1s ease forwards;
}

.slider-subtitle { animation-delay: 0.3s; }
.sliderTitle { animation-delay: 0.6s; }
.carousel-caption p { animation-delay: 0.9s; }
.sliderBtn { animation-delay: 1.2s; }

@keyframes slideFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 480px;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/image30.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d1b0b;
    opacity: .2;
}

.mandala-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/mandala-pattern.webp');
    opacity: 0.04;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 65px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: #faf7f0;
    font-family:  "Castoro", serif;
    font-weight: 400;
    letter-spacing: 3px;
}
.slider-subheading{color:var(--primary); font-family: 'Poppins', sans-serif; font-weight: 400;}

.hero-content p {
    font-size: 17px;
    margin: auto;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-btns .btn {
    margin-right: 15px;
    margin-bottom: 15px;
    font-size: 17px;
}

.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); }
}

/* About Section */
.about-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
        background-image: url(https://kits.rometheme.net/peaceful/wp-content/uploads/sites/60/2025/05/BG-4.webp);
    background-position: bottom center;
    background-size: cover;
}
.about-section strong {
    width: 48%;
    display: inline-block;
    padding: 12px 15px;
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    color: var(--primary);
    text-align: center;
    margin-bottom: 12px;
    margin-right: 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: rgb(65 145 112 / 5%);
    position: relative;
    overflow: hidden;
}

.about-section strong:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.about-section strong:hover {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(65, 145, 112, 0.3);
}

.about-section strong:hover:before {
    left: 100%;
}

.about-section strong i {
    margin-right: 8px;
    font-size: 16px;
}

.faq-accordion {
  border-radius: 12px;
  overflow: hidden;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(142,121,62,0.1);
}

.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;
}

.accordion-button:hover {
  background: rgba(142,121,62,0.03);
}

.accordion-button i:first-child {
  color: var(--primary);
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.accordion-button span {
  flex-grow: 1;
  font-weight: 500;
  font-size: 17px;
  color: var(--dark);
  text-align: left;
}
.accordion-button .icon-f{    flex: none;padding-right: 10px;}
.new-ttc-include .chakra-img {
    position: absolute;
    top: 20%;
    right: -320px;
    width: 50%;
    opacity: .8;
    animation: spin 60s infinite linear;
    -webkit-animation: spin 60s infinite linear;
    -moz-animation: spin 60s infinite linear;
    overflow: hidden;

}
.new-ttc-include{position: relative; overflow: hidden;}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.accordion-button i:last-child {
  color: var(--primary);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.accordion-button.active i:last-child {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.accordion-content p,
.accordion-content ul {
  padding: 0 25px 25px;
  margin-bottom: 0;
}

.accordion-content ul {
  list-style: none;
  padding-left: 45px;
}

.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: var(--primary);
  border-radius: 50%;
}

/* Updated About Section */
.about-img-container {
    position: relative;
    margin-bottom: 30px;
    margin-left: 40px;
}

.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;
}
.stat-item {
    text-align: center;
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 12%);
}
.stat-item h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    margin-bottom: 0;
    font-size: 14px;
}

.play-icon{  position: absolute;bottom: 0px;left: 0px;padding: 8px 8px 0 0;
    background: var(--white);border-top-right-radius: 14px;}
.play-icon a{    background: var(--secondary);    color: #fff;padding: 6px 26px;display: block;font-size: 24px;   border-radius: 12px;}
.play-icon a:hover{color: var(--primary)}

.abt-feature-box {
    display: flex;
    align-items: center;
    font-size: 13px;
        background: #f2f1ee;
    padding:12px 6px;
    border-radius: 10px;
    gap:10px;
    margin-bottom: 20px;
}
.pr-0{padding-right: 0px;}
.abt-feature-box .f-desc h4{font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 18px;}
.abt-feature-box .f-desc p{margin-bottom: 0px;}
.abt-feature-box i{font-size: 26px; color: #154945c2;}


.home-course-text {
    padding: 20px;
    background: #fff;
}
.home-course-text h3 {
           padding: 6px;
    font-size: 24px;
    text-align: center;
    width: 100%;
    background: var(--secondary);
    color: #fff;
    border-radius: 10px;
    font-weight: 800;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);;
}
.home-course-text p {
    text-align: justify;
    margin: 15px 0;
}

.home-course-box {
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
    margin: 30px 0px 0 0px;
    height: 96%;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    /*background: var(--white);*/
    position: relative;
    /*border: 1px solid rgba(142, 121, 62, 0.1);*/
}

/*.home-course-box:hover {
    box-shadow: 0 20px 40px rgba(142, 121, 62, 0.2);
}*/

.home-course-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}

.home-course-img img {
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
    border-top-left-radius: 100px;
        border-bottom-right-radius: 100px;
        border: 8px solid #ffffff;

}

.home-course-img img.flip {
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
    border-top-left-radius: 0;
        border-bottom-right-radius:0;
        border-top-right-radius: 100px;
        border-bottom-left-radius:100px;
        border: 8px solid #ffffff;

}

/*.home-course-box:hover .home-course-img img {
    transform: scale(1.05);
}*/

.img-border {
    border: 5px solid var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 25px #d5bbe5;
}

.home-course-text {
    padding: 30px 25px;
    padding-top: 15px;
    background: var(--white);
    position: relative;
}
.ttc-right-form{margin-right: 10px;}
.ttc-right-form .quick-enroll-form{    padding: 30px 20px;}
.ttc-right-form .form-header h3{    background: var(--primary);    color: #fff;    padding: 8px; margin-bottom: 20px;}



/*.home-course-box:hover .home-course-text h3 {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(197, 119, 96, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}*/

.home-course-text p {
    text-align: justify;
    margin: 20px 0;
    color: #000;
    line-height: 1.7;
    font-size: 15px;
}

/* Course overlay effect */
/*.home-course-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}*/

.home-course-box:hover .home-course-img::before {
    opacity: 1;
}

.guide-section .guide {
  position: relative;
  padding: 20px 15px;
  background: #fff;
  color: #1b1b1b;
  margin: 4px 10px;
  box-shadow: 0 5px 10px #e2e2e2;
  border-radius: 8px 60px 8px 60px;
  overflow: hidden;
}

.guide-section .guide figure {
  margin-bottom: 15px;
  border-radius: 100%;
  border: 3px solid var(--primary);
  overflow: hidden;
  width: 60%;
  margin: 0 auto;
  padding: 5px;
}
.guide-section .guide figure img{border-radius: 50%;}

.guide-section .guide h3 {
  font-size: 25px;
  color: #38122c;
  line-height: 1.4;
  font-weight: normal;
      text-align: center;
    font-weight: 700;
}

.guide-section .guide h3 a {
  color: #1b1b1b;
  text-decoration: none;
}

.guide-section .guide h3 a:hover {
  text-decoration: underline;
}

.guide-section .guide:before {
  content: '';
  position: absolute;
  left: -5px;
  top: -3px;
  border-left: 65px solid var(--primary);
  border-bottom: 65px solid transparent;
}

.guide-section .guide:after {
  content: '';
  position: absolute;
  right: -5px;
  bottom: -3px;
  border-right: 65px solid var(--primary);
  border-top: 65px solid transparent;
}
.mid-quote{padding: 10em 0;background: url(../img/sun-bg.webp) no-repeat center; background-size: cover;}
.mid-quote h5{font-size: 34px; color: #fff; margin-bottom: 20px; text-shadow: 2px 5px 4px #000000;}
.workshops-section {
    background-color: #fff;
}

.workshop-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(142, 121, 62, 0.1);
    border-bottom: 3px solid #8c3e98;
    border-top: 3px solid #8c3e98;
    border-radius: 25px;
}
.workshop-card .img-border{border:none;}

.workshop-card:hover {
    /*transform: translateY(-5px);*/
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.workshop-img {
    height: 180px;
    overflow: hidden;
}

.workshop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.workshop-card:hover .workshop-img img {
    transform: scale(1.05);
}

.workshop-content {
    padding: 12px 20px;
}

.workshop-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    /*font-family: "Cormorant", serif;*/
}

.workshop-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.workshop-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray);
}

.workshop-meta span {
    display: flex;
    align-items: center;
}

.workshop-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.drop-class ul{padding: 0px; margin: 0px; border: 1px solid #ddd; background: #fff;}
.drop-class ul li{font-size: 15px; list-style: none; display: inline-block; width: 19%; text-align: center; padding: 8px; margin: 0px; height: 100%;}
.drop-class ul.thead{background: var(--primary);}
.drop-class ul.thead  li{color: #fff;}
.drop-class ul li strong{display: none;}
.footer-form-left ul{padding: 0px; margin: 0px;}
.footer-form-left ul li{list-style: none; padding: 8px 0; text-align: justify;}

.few-days-left ul{padding: 0px; margin: 0px;}
.few-days-left ul li{padding: 5px 0 ; list-style: none; text-align: justify;}
.few-days-left ul li span {}
.footer-form-left .sub-heading {
    position: relative;
    overflow: hidden;
    padding: 10px;
    font-size: 20px;
    background: var(--primary);
    color: #fff;
    text-align: left;
    margin-bottom: 12px;
    font-weight: 600;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    padding-left: 40px;
    text-align: center;
}

 .sub-heading2 {
    position: relative;
    overflow: hidden;
    padding: 10px;
    font-size: 20px;
    background: var(--primary);
    color: #fff;
    text-align: left;
    margin-bottom: 12px;
    font-weight: 600;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    padding-left: 40px;
    text-align: center;
}

.overviewSubheading{
    padding: 6px;
    background: var(--primary);
    color: #fff;
    text-align: left;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    padding-left: 40px;
}
/*.footer-form-left .sub-heading:after {
    position: absolute;
    content: '';
    height: 100px;
    width: 50px;
    background: #fff;
    top: -41px;
    right: -24px;
    transform: rotate(-42deg);
}*/

.ttcBox{ background-image:url(../img/image22.webp);   height:380px;
    background-size: cover;
    background-position: center;
    position: relative; border-radius: 16px; overflow: hidden;}

.ttc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0d1b0b;
    padding: 20px;
    color: white; height: 100%; opacity: 0.2;z-index: 8;
}
.ttc-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 40px;
    color: white; 
    z-index: 9;
}

.click-crcl{ position: absolute;
    top: 0;
    right: 0;
    padding: 30px 40px;
    color: white; 
    z-index: 9; }

.click-crcl a{    background: #fff;
    display: flex;
    color: #000;
    padding: 18px;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    justify-content: center;
    align-items: center;
    font-size: 21px; transition: 0.5s ease-in-out;}

.click-crcl a:hover{background: var(--primary); color:#fff;}
.ttc-desc h2{color: #fff;}
.reason-choose .play-icon{    top: 0px;
    left: 0px; bottom:unset; border-top-right-radius:0px;
    padding: 0px 8px 8px 0; border-bottom-right-radius: 14px;}


.reason-choose .play-icon .arr{ background: var(--secondary);    color: #fff;padding: 6px 14px;display: block;  border-radius: 12px; text-align: center;}
.play-icon .arr h4{font-size: 42px; margin-bottom: 2px; color:yellow;}
.choose-right{padding-left: 1em;}
.point-box{    display: flex;gap: 10px;justify-content: center;align-items: center;     border-bottom: 1px solid #c3c3c3;padding-bottom: 10px;padding-top: 22px;}
.point-box:last-child{border:none;}
.rsn-icon{width: 13%;}
.rsn-desc{width: 90%; padding-left: 10px;}
.rsn-icon i{    background: var(--primary);
    color: #fff;
    padding:24px;
    border-radius: 50%;
    font-size: 29px;}
.rsn-icon img{    background: var(--secondary);
    color: #fff;
    padding:10px;
    border-radius: 50%;
    font-size: 29px;}

.reason-choose .about-img-container{margin-left: 0px; margin-right: 10px;}

.testimonial-section .play-icon{right: 0; padding: 8px 0px 0 8px;    border-top-left-radius: 14px; left: unset; border-top-right-radius:0px;}

.testimonial-section .play-icon a{    background-image: url(https://kits.rometheme.net/peaceful/wp-content/uploads/sites/60/2025/05/Image-16.webp);
    background-position: center center;
    background-size: cover;     padding: 70px 120px;}
.price-left-img img{border-radius: 20px;}
.cta{background-image: url(../img/yoga-teacher-training_india.webp);
    background-position: center center;
    background-size: cover; position: relative; padding: 6em 0;}
.cta .cta-subheading{    font-size: 20px;
    color: var(--primary);     font-weight: 500;    text-shadow: 0 0 2px #000000;}
.cta .cta-heading{font-size: 46px;}
.cta .hero-overlay{opacity: 0.66;}
.ttc-banner{    background: url(../img/ttc-banner.webp);
    background-size: cover;
    background-position: top;
    position: relative;}
.g-center{justify-content: center;}
.left-ttc{background: #ffffffdb;}
.ttc-banner-info{padding: 4em; padding-right: 1em;}
.banner-subheading{    display: block;
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;    font-family: 'Poppins', sans-serif; }
.banner-heading{    font-size: 36px;text-shadow: 0 0px 2px rgba(0, 0, 0, 0.3);    font-family: "Castoro", serif;
    font-weight: 400;letter-spacing: 2px; line-height: 48px; color: var(--primary); margin-bottom: 20px;}

.ttc-banner-info p{margin-bottom: 20px;}
.banner-logos{display: flex;    gap: 30px;    padding-top: 30px; justify-content: center;}
.abt-icons{display: flex; padding: 16px 0px;}
.abt-icon-box{display: flex; align-items: center; gap:10px;}
.abt-icon-box span{font-weight: 500;}
.ttc-about-left{position: sticky; top: 100px; padding-right: 1em;}



/* Yoga Masters Redesign */
.teachers-section {
    position: relative;
    overflow: hidden;
        background-image: url(https://kits.rometheme.net/peaceful/wp-content/uploads/sites/60/2025/05/BG-3.webp);
    background-position: bottom center;
    background-size: cover;
}

.teacher-card-new {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0px 10px rgb(22 22 22 / 30%);
    transition: all 0.4s ease;
    height: 100%;
    /*border: 1px solid rgba(142, 121, 62, 0.1);*/
    margin: 10px 2px;
    border-bottom: 3px solid #8c3e98;
    border-top: 3px solid #8c3e98;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    border-radius: 25px;
}

.teacher-card-new:hover {
    /*transform: translateY(-10px);*/
    box-shadow: 0 15px 40px rgba(142, 121, 62, 0.2);
}

.teacher-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.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-social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.teacher-card-new:hover .teacher-social-links {
    bottom: 20px;
    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: 10px 7px;
    text-align: center;
    background: linear-gradient(0deg, #8c3e9842 0, #fff 100%);
}

.teacher-info-new h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--primary);
    font-family: "Cormorant", serif;
    font-weight: 700;
}
.divider-small {
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin: 15px 0;
}
.specialty {
    display: block;
    color: var(--dark);
    font-weight: 400;
    margin-bottom: 0px;
    font-size: 14px;
}

.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);
}

/* Testimonials Section */

.testimonial-card {
    background: var(--secondary);
    border-radius: 0px;
    padding: 22px;
    box-shadow: 0 0px 10px 1px rgb(5 5 5);
    margin: 2px;
    height: 100%;
    position: relative;
    /*border: 1px solid rgba(142, 121, 62, 0.1);*/
}
.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 60px solid #70a48f; /* peach */
  border-bottom: 60px solid transparent;
      transform: rotate(180deg);
}


.testimonial-content {
    position: relative;
}

.quote-icon {
    margin-bottom: 20px;
        position: absolute;
    top: 0;
    right: 0;
    opacity: 0.8;
}

.quote-icon img {
    width: 100%;
    height: auto;
}

.testimonial-content p {
    font-style: italic;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 60px!important;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary);
    background: #fff;
    padding: 10px;
}

.author-info h4 {
    font-family: "Poppins";
    font-size: 17px;
    margin-bottom: 5px;
    color: #fff;
}

.author-info span {
    font-size: 14px;
    color: rgb(189, 182, 182);
    display: block;
    margin-bottom: 5px;
}

.rating {
    color:#ffe234;
}

.owl-carousel .owl-nav .owl-prev { position: absolute;
    top: 40%; 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: 40%;
    right: -20px;
}

 .owl-carousel.excursion-carousel .owl-nav .owl-prev { position: absolute;
    top: 37%; left: -20px;}

 .owl-carousel.excursion-carousel .owl-nav .owl-next {
    position: absolute;
    top: 37%;
    right: -20px;
}


/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
        border-radius: 10px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 5px 0 #a2a2a2dd;
    padding: 15px 20px;
    align-items: center;
}
.contact-info a{color: #2b2f33;}

.contact-icon {
    width: 60px;
    height: auto;
    margin-right: 5px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 70%;
    height: auto;
}

.contact-text h4 {
    font-size: 20px;
    margin-bottom: 5px;
    font-family: "Cormorant", serif;
    font-weight: 700;
    color: #40735d;
    text-align: center;
}
.contact-text{ width: 100%; text-align: center; }
.contact-text p{margin: 0px;}

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    margin-bottom: 15px;
    font-family: "Cormorant", 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(--secondary);
    transform: translateY(-5px);
}

.contact-form {
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 24px;
    font-family: "Cormorant", serif;
}

.contact-left h3 {
    margin-bottom: 30px;
    font-size: 24px;
    font-family: "Cormorant", 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(142, 121, 62, 0.25);
}

textarea.form-control {
    height: auto;
    min-height: 150px;
}

/* Map Section */
.map-section {
    height: 440px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: ;
}

.gallery-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
    transition: all 0.3s ease;
    padding: 5px;
}

.gallery-card:hover {
    /*transform: translateY(-10px);*/
    box-shadow: 0 15px 30px rgba(142,121,62,0.2);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
        border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

/*.gallery-card:hover img {
    transform: scale(1.05);
}*/
.payment-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(142, 121, 62, 0.1);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.payment-card h3 {
    font-family: "Cormorant", serif;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--dark);
}

.payment-card p {
    text-align: center;
    margin-bottom: 20px;
    color: var(--gray);
}

.payment-details {
    background: rgba(142, 121, 62, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.payment-details p {
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px;
}

.payment-form label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 5px;
    display: block;
}

.payment-notice .alert {
  
}
.contact-map-img img, .map-section iframe{ height: 450px }

.payment-notice h4 {
    font-family: "Cormorant", serif;
    color: var(--dark);
}

.payment-notice ul {
    padding-left: 20px;
}

.payment-notice ul li {
    margin-bottom: 8px;
}
.payment-card form{text-align: center;}
.payment-card table{width: 100%;}
/* Footer */
.footer {
    background: var(--primary);
    color: var(--dark);
    padding: 70px 0 0;
    position: relative;
}


.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-widget {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-widget h3 {
    font-size: 24px;
    margin-bottom: 0px;
    position: relative;
    padding-bottom: 10px;
    font-family: "Cormorant", serif;
    color: var(--white);
    font-weight: 700;
}

.footerhr{    max-width: 180px; margin-bottom: 15px;}
.quickLink ul li::before {
    content: '';
    display: inline-block;
    height: 14px;
    width: 26px;
    background-image: url(../img/icon/icon-ff.webp);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.fix-social {position: fixed; left: 20px; bottom: 20px; z-index: 999; } 
.fix-social a i {height: 50px; width: 50px; font-size: 31px; text-align: center; border-radius: 100%; overflow: hidden; transition: .5s all; color: #fff; padding: 9px } 
.fix-social a {
  display: block;
  margin: 5px 0;
  background: #129809;
    max-width: 60px;
    max-height: 60px;
    padding: 14px;
    border-radius: 100%; animation-name: pulsess; animation-duration: 1.5s; animation-timing-function: ease-out;
    animation-iteration-count: infinite; transition: all 0.3s;}

    @keyframes pulsess {  
 50% {
    box-shadow:  0 0 0 0 #1ea10e;
    scale: 0.9;
}

   100% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    scale: 1;
}
}


.footer-widget ul{padding-left: 0px;}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 5px;
}



.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    padding: 10px 0;
    border-top: 1px solid rgb(255 255 255 / 22%);
    margin-top: 0px;
    position: relative;
    z-index: 1;
    padding-bottom: 0px;
}
.copyright a{color: var(--white)}
.copyright span{font-size: 14px;}
.footer-menu {
    text-align: right;
}

.footer-menu a {
    color: #fff;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--secondary);
}

.footer-social a.fb-icon{background: #38539b;}
.footer-social a.insta-icon{background: linear-gradient(10deg, #efa513, #9007dc);}
.footer-social a.yt-icon{background: #FF0000;}
.footer-social a.wp-icon{background: #00a000;}
.footer-widget .para{color: var(--white);     display: flex;align-items: center;gap: 15px; font-size: 15px;}
.footer-widget .para i{color: var(--white); font-size: 24px;}
.footer-logo{width: 22%; display: block; margin: auto; margin-bottom: 15px;     background: #fff;
    border-radius: 50%;}
.footer-otherLinks {
    display: flex;
    justify-content: space-between;
}
.otherlinks p {
    margin-bottom: 0px;
    color: #fff;
    font-size: 14px;
}
.policyLinks span {
    border-right: 1px solid #fff;
    padding: 0px 7px;
    font-size: 14px;
}
.copy-footer.otherlinks p a {
    color: #fff;
}

.fix-apply{ position: fixed; bottom: 30px; right: 30px; border:2px solid #fff; z-index: 999; font-size: 13px; padding: 10px 20px; }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    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(--secondary);
    transform: translateY(-5px);
}

/* Contact Page Banner */
.contact-banner {
    background: linear-gradient(rgb(0 0 0 / 40%), rgb(0 0 0 / 40%)), url(../img/enroll-banner.webp);
    background-size: cover;
    background-position: top;
    padding: 180px 0 130px;
    text-align: center;
    color: white;
    position: relative;
}
.enroll-banner {
    background: linear-gradient(rgb(0 0 0 / 40%), rgb(0 0 0 / 40%)), url(../img/enroll-banner.webp);
    background-size: cover;
    background-position: center;
    padding: 180px 0 130px;
    text-align: center;
    color: white;
    position: relative;
}

.enroll-form-container{   
    padding: 3em;
    border-radius: 20px;
    box-shadow: 0 0 2px 1px #d6d6d680; position: relative;}

.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);
}

.img-border2{    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;}

/* Daily Schedule Section */
.daily-schedule-section {
    background-color: #f9f9f7;
    position: relative;
        background-image: url(https://kits.rometheme.net/peaceful/wp-content/uploads/sites/60/2025/05/BG-4.webp);
    background-position: bottom center;
    background-size: cover;
}

.schedule-container {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-block {
    margin-bottom: 30px;
    position: relative;
}

.schedule-block:last-child {
    margin-bottom: 0;
}

.block-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.block-header h3 {
    font-size: 22px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    font-family: "Cormorant", serif;
    color: var(--dark);
}

.block-header h3 i {
    margin-right: 10px;
    color: var(--primary);
}

.block-header .timeline {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, var(--primary), rgba(1, 149, 138, 0.2));
    margin-left: 15px;
}

.schedule-items {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.schedule-item {
    display: flex;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-item .time {
    width: 150px;
    flex-shrink: 0;
    font-weight: 600;
    color: var(--dark);
    padding-top: 3px;
}

.schedule-item .activity {
    display: flex;
    flex-grow: 1;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: rgba(1, 149, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.activity-details h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark);
}

.activity-details p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
}



.text-border-design {
    width: 60%;
    display: inline-block;
    padding: 12px 15px;
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    color: var(--primary);
    text-align: center;
    margin-bottom: 12px;
    margin-right: 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: rgb(65 145 112 / 5%);
    position: relative;
    overflow: hidden;
}

.text-border-design:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.text-border-design:hover {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(65, 145, 112, 0.3);
}

.text-border-design:hover:before {
    left: 100%;
}






/*====================Gallery Page css ==============*/
/* Inner Banner Styles */
.inner-banner {
    background: linear-gradient(rgb(0 0 0 / 16%), rgb(0 0 0 / 16%)), url(../img/village-tour.webp);
    background-size: cover;
    background-position: center;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}

.gallery-banner{
    background: linear-gradient(rgb(0 0 0 / 16%), rgb(0 0 0 / 16%)), url(../img/gallery-bg.webp);
    background-size: cover;
    background-position: top;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}
.inner-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    color: #fff;
}

.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);
}




.faq-inner{padding: 4em 0;}
.faq-inner h1{color: #40735d; font-weight: 800;}

/*================teacher page============*/
/* Additional styles for team page */
        .team-banner{    background: linear-gradient(rgb(0 0 0 / 40%), rgb(0 0 0 / 40%)), url(../img/team-banner.webp);     background-size: cover;
    background-position: center;  padding: 180px 0 130px;}
        
        .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(142,121,62,0.15);
            margin-bottom: 50px;
            border: 1px solid rgba(142,121,62,0.1);
        }
        
        .teacher-main-info {
            padding: 40px;
            background: linear-gradient(135deg, rgba(142,121,62,0.05) 0%, rgba(255,255,255,1) 100%);
        }
        
        .teacher-img-container {
            height: 100%;
            min-height: 400px;
            overflow: hidden;
            padding: 1em;
        }
        
        .teacher-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            border-radius: 12px;
        }
        
        .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; text-align: justify;
        }
        
        .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: "Cormorant", 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(142,121,62,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============*/


@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .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;
    font-size: 17px;
}

.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(142, 121, 62, 0.3);
}

.btn-gradient:hover:before {
    opacity: 1;
}

/* 404 Error Page Styles */
.error-banner {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.error-banner h1 {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
    font-family: "Cormorant", serif;
}

.error-banner h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: "Cormorant", serif;
}

.error-banner p {
    font-size: 18px;
    color: var(--gray);
    max-width: 500px;
}

.error-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.error-image img {
    transition: transform 0.5s ease;
}

.error-image:hover img {
    transform: scale(1.02);
}

.error-actions .btn {
    padding: 12px 25px;
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .error-banner {
        padding: 80px 0;
    }
    
    .error-banner h1 {
        font-size: 100px;
    }
    
    .error-banner h2 {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .error-banner {
        padding: 60px 0;
        text-align: center;
    }
    
    .error-banner h1 {
        font-size: 80px;
    }
    
    .error-banner h2 {
        font-size: 30px;
    }
    
    .error-banner p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .error-image {
        margin-top: 40px;
    }
    
    .error-actions {
        justify-content: center;
    }
    
    .error-link-card {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .error-banner h1 {
        font-size: 60px;
    }
    
    .error-banner h2 {
        font-size: 26px;
    }
    
    .error-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .error-actions .btn:last-child {
        margin-bottom: 0;
    }
}
.btn-second{background: var(--secondary); border-color: var(--secondary)}
.point-box{ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);border: 1px solid rgba(142, 121, 62, 0.1);padding: 12px 12px;border-radius: 8px;}

.retreat-info-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(142, 121, 62, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}
.info-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
    padding: 12px 22px;
    color: white;
}
.info-card-header h3 {
    color: white;
    margin: 0;
    font-size: 24px;
    font-family: "Cormorant", serif;
    font-weight: 600;
}
.info-card-body {
    padding: 10px 18px;
}

.info-card-body p {
    line-height: 1.7;
    margin-bottom: 0;
    text-align: justify;
}
.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0px 0;
}

.benefit-item i {
    color: var(--secondary);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.benefit-item span {
    line-height: 1.6;
    font-size: 16px;
}
.acti-cards{box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);border: 1px solid rgba(142, 121, 62, 0.1); margin-bottom: 2em;}
.acti-cards .home-course-text{padding: 12px 22px 0px 12px;}
.acti-cards .home-course-img{    background-size: cover;height: -webkit-fill-available;    margin: 8px; margin-right: 0px;     border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;}
.acti-cards .home-course-text h3{background: var(--primary);     clip-path: none;}
.order-last .home-course-img{margin-right: 8px;}
.drop-class ul li:first-child{width: 22%;}
.drop-class.month-table ul li{width: 32%;}



/* Alternative Styling Option - Cards */
.itinerary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.itinerary-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(142, 121, 62, 0.1);
}

.itinerary-card .card-header {
    background: #8c3e98;
    padding: 15px;
    text-align: center;
    color: white;
}

.itinerary-card .card-header h3 {
    color: white;
    margin: 0;
    font-size: 20px;
    font-family: "Cormorant", serif;
}

.itinerary-card .card-body {
    padding: 20px;
}

.card-schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.card-schedule-item:last-child {
    border-bottom: none;
}

.card-schedule-item .card-time {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.card-schedule-item .card-activity {
    font-size: 14px;
    text-align: right;
}
.accom-image{ height: 100%; background: url(../img/accomodation01.webp); background-size: cover; background-position: top; border-radius: 12px;  background-color: #fff;  }
.food-image{    height: 100%; background: url(../img/sattvic-nutrition-00.webp); background-size: cover; background-position: top; border-radius: 12px;}
.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(121, 191, 94, 0.1) 0%, rgba(121, 191, 94, 0.2) 100%); }
.inclusion-card.not-included .inclusion-header {background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.2) 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: #27ae60; font-size: 22px; margin: 0px;}
.inclusion-card.not-included .inclusion-header h5 {color: #e74c3c; font-size: 22px;  margin: 0px;}
.inclusion-body {padding: 12px 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: #27ae60; }
.inclusion-card.not-included .inclusion-body li i {color: #e74c3c; }
.fullwidth-teachers {
    background: #f9f9f5;
    position: relative;
}

.ttc-slly .accordion .card .card-header {
    padding: 0px;
    border: none;
}

.ttc-slly .accordion .card .card-header button.accordion-button {
    display: block;
    width: 100%;
    padding: 12px;
    padding-right: 30px;
    border: 1px solid #f4fff9;
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

/*.ttc-slly .accordion .card .card-header button.accordion-button:after {
    position: absolute;
    content: '';
    height: 100px;
    width: 50px;
    background: #f4fff9;
    top: -41px;
    right: -24px;
    transform: rotate(-42deg);
}
*/
.ttc-slly .accordion .card .card-header button.accordion-button:hover {
    background: #7e2c8b;
    text-decoration: none;
}

.ttc-slly .accordion .card .card-header button.accordion-button i {
    float: right;
    margin-top: 6px;
    color: #fff;
}

.ttc-slly .accordion .card .card-header button.accordion-button:focus {
    background: var(--primary);
    text-decoration: none;
}

.ttc-slly .accordion .card-body {
    border-top: 5px solid var(--primary);
}

.ttc-slly .accordion .card-body.new-ttc-slly p {
    text-align: justify;
    padding: 0px;
}

.ttc-slly .accordion .card-body.new-ttc-slly ul li {
    text-align: left;
}

.ttc-slly .accordion .card-body ul li {
    list-style: none;
    padding: 8px 0;
    display: inline-block;
    width: 45%;
}

.ttc-slly .card {
    margin-bottom: 12px;
    border: none;
}

.ttc-slly .accordion .card-body ul {
    padding: 0px;
}

.ttc-slly .accordion .card-body ul li span {
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}

.ttc-slly #curriculum .panel-default>.panel-heading {
    text-align: center;
    background: #419170;
    position: relative;
    overflow: hidden;
}

.ttc-slly .panel-title {
    margin: 0px;
    color: #fff;
    padding: 0 40px 0 0;
}

.ttc-slly .panel-title a {
    margin: 0px;
    color: #fff;
}

.ttc-slly .panel-body.card-body.new-ttc-slly {
    background: #fff;
}

.ttc-slly #curriculum .panel-default>.panel-heading:after {
    position: absolute;
    content: '';
    height: 100px;
    width: 50px;
    background: #f4fff9;
    top: -41px;
    right: -24px;
    transform: rotate(-42deg);
}

.ttc-slly #curriculum .panel-title a i.fa:before {
    color: #ffffff;
}

.ttc-slly #curriculum .panel-group .panel {
    margin-bottom: 10px;
}

.ttc-slly #curriculum {
    background: transparent;
}
.new-slyy-img img{    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;}

/*.card-body.new-ttc-slly .new-slyy-img {
    width: 35%;
    margin: 0 auto;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px #d5bbe5;
}*/

.teacher-fullwidth-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.teacher-fullwidth-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.teacher-img-container {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.teacher-img-container .mandala-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/mandala-frame.webp') center/contain no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.teacher-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.teacher-bio-content {
    padding: 14px;
    height: 100%;
}

.teacher-meta {
    margin-bottom: 15px;
}

.exp-badge, .specialty-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
}

.exp-badge {
    background: var(--primary);
    color: #fff;
}

.specialty-badge {
   background: var(--primary);
    color: #fff;
}

.teacher-bio-content h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 5px;
}

.position {
    font-style: italic;
    margin-bottom: 6px;
    font-size: 16px;
    text-align: center;
    color: #000;
}

.teacher-bio {
    margin-bottom: 20px;

}

.teacher-bio p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

        /* Enhanced Course Details Card Styles */
        .course-details-card {
            background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
            border-radius: 16px;
            padding: 22px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(142, 121, 62, 0.15);
            border: 1px solid rgba(142, 121, 62, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .course-details-card:hover {
            box-shadow: 0 15px 40px rgba(142, 121, 62, 0.2);
        }
        
        .course-details-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
        }
        
        .course-details-header {
            text-align: center;
            margin-bottom: 8px;
            position: relative;
        }
        
        .course-details-header h3 {
            color: var(--primary);
            font-family: 'Cormorant', serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        
        .course-details-header .subtitle {
            color: var(--gray);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .course-detail-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid rgba(142, 121, 62, 0.1);
            transition: all 0.3s ease;
        }
        
        .course-detail-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .course-detail-item:hover {
            background: rgba(142, 121, 62, 0.03);
            padding-left: 10px;
            padding-right: 10px;
            margin-left: -10px;
            margin-right: -10px;
            border-radius: 8px;
        }
        
        .detail-icon {
            width: 45px;
            height: 45px;
            background: rgba(142, 121, 62, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            color: var(--primary);
            font-size: 18px;
        }
        
        .detail-content {
            flex: 1;
        }
        
        .detail-label {
            font-size: 13px;
            color: var(--gray);
            font-weight: 500;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .detail-value {
            font-size: 15px;
            color: var(--dark);
            font-weight: 500;
            line-height: 1.4;
        }
        
        .course-details-footer {
            margin-top: 25px;
            text-align: center;
        }
        
        .enroll-btn {
            background: var(--primary);
            border: none;
            color: white;
            padding: 14px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            width: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .enroll-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            opacity: 0;
            z-index: -1;
            transition: all 0.3s ease;
        }
        
        .enroll-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(142, 121, 62, 0.3);
        }
        
        .enroll-btn:hover:before {
            opacity: 1;
        }
        
        .enroll-btn i {
            margin-right: 8px;
        }
        
        .seats-info {
            font-size: 12px;
            color: var(--gray);
            margin-top: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .seats-info i {
            color: var(--secondary);
        }
        
        /* Animation for card entrance */
        .course-details-card {
            animation: fadeInUp 0.6s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
.schedule-tab{display: flex; justify-content: space-between; background: rgb(255 255 255); 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);   /*  background: var(--primary);*/} 
.scheduleTime{border-right: 2px solid var(--primary);padding: 10px 16px 10px; background: #f1e7f5;  width: 35%;}
.scheduleTime svg{    vertical-align: sub;padding-right: 4px;}
.scheduleTime i{color: var(--primary);    padding-right: 5px;}
.schedule-activity{color: #fff;width: 65%;padding: 0 1em;}
.schedule-activity span{    font-size: 16px;line-height: 1.75rem; color: #222; font-weight: 500;}
.text-sm{font-size: 13px;}
.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(142,121,62,0.1);
    position: sticky;
    top: 20px;
}

.form-header h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
    text-align: center;
    font-weight: 600;
    background-color: #8c3e98;
    padding: 5px
}

.form-header p {
    margin-bottom: 8px;
    text-align: center;
    font-size: 14px;

}

.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(142,121,62,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;
}
.hightlight .box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    margin-bottom: 35px;
    transition: all 650ms ease-in;
    box-shadow: 1px 1px 10px rgb(220, 220, 220);
    border-radius: 30px 0px;
    overflow: hidden;
    /*padding: 18px 20px;*/
    border-bottom: 3px solid #8c3e98;
    border-top: 3px solid #8c3e98;
    border-radius: 25px;
}
.hightlight .box .box-icon i {
    color: var(--primary);
    font-size: 3.25rem;
    width: 5rem;
    /*height: 5rem;*/
    line-height: 3rem;
    display: block;
    margin-bottom: 0.55rem;
}

.hightlight .box .box-icon img{width: 100%; margin-bottom: 5px;}
.hightlight .box-title {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.75;
    color: var(--primary);
}
.hightlight .box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: solid 2px var(--primary);
    border-bottom: solid 2px var(--primary);
    transition: 0.5s;
    transform: scaleX(0);
}
.hightlight .box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-left: solid 2px var(--primary);
    border-right: solid 2px var(--primary);
    transition: 0.5s;
    transform: scaleY(0);
}
.hightlight .box:hover {
    /*color: var(--secondary);*/
    transition: all 150ms ease-in;
}
.hightlight .box:hover::before, .hightlight .box:hover::after {
    transform: scale(1);
}
.rishikesh-img{width: 60%; margin: auto;}
.rishikesh-img img{     border-top-left-radius: 100px;
    border-bottom-right-radius: 100px; }




 .quote-sec{ padding: 1em 0 4em 0;  }   
.quote-box {width: 70%;margin: 4em auto 0 auto; position: relative; }
.quote-box h2, .quote-box p, .quote-box i{  }
.quote-box .quote-p{ padding: 20px; border-right: 3px solid #40735d; border-left: 3px solid #40735d; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) }
.quote-box i.fa-quote-left{ position: absolute; top:-50px; left: 0px; color:#40735d; font-size: 40px;  }
.quote-box i.fa-quote-right{ position: absolute; bottom:-50px; right: 0px; color:#40735d; font-size: 40px;  }
.quote-box .quote-p p{ font-weight: 500; }
/*============Resoponsive Css Start ==================*/



.how-book-box{ background: #fff; border-bottom: 3px solid #8c3e98;    border-top: 3px solid #8c3e98;    border-radius: 25px; padding: 25px; text-align: center; }
.how-book-box h4{ color: #8c3e98; font-weight: bold; }
.how-book-box span{ font-weight: bold; font-size: 70px ; display: block; color: #419170; opacity: 1; }












@media screen and (max-width: 768px) {
    .hero-img{display:none; }
    .certification-content{padding: 10px 40px;}
    .cta-box{padding: 20px;}
    .footer-logo{width: 35%;}
    .hero-section, .hero-slide{        min-height: 500px;}
    .dropdown-menu{display: none;}
    .about-img-container{margin-left: 0px;}
    .ttc-desc{    padding: 15px 20px;}
    .teacher-img-wrapper img{object-position: top;}
    .cta .cta-heading{font-size: 34px;}
    .ttc-banner-info{    padding: 1em;padding-right: 1em;}
    .banner-heading{font-size: 26px;    letter-spacing: 1px;    line-height: 36px; margin-bottom: 10px;}
    .course-details-card{margin-top: 30px; }
    .premium-card{margin-left: 0px;}
    .detail-row{    padding: 10px 0;}
    .detail-row.highlight{margin: 12px -25px;    padding: 10px 25px;}
    .special-offer{padding-top: 0px;}
    .offer-box{    margin: 0em 1em;}
    .excl-heading{font-size: 2em;}
    .excl-subheading{font-size: 18px;}
    .excl-inner-box{    padding: 3.5em 20px;}
    .about-section strong {
    width: 100%;
}
.container{ padding: 0 15px }
.why-to-do .col-md-6{ width: 100%; max-width: 100%; flex: 100%; }
.img-fluid{ width: 100%; }
.footer-form .col-md-7,.footer-form .col-md-5{ width: 100%; max-width: 100%; flex: 100%; }
.navbar-toggler {
    background-color: #8c3e98;
     color: #fff;
     padding: 0px;
     height: 40px;
        width: 40px;
        line-height: 30px;
        text-align: center;
    }
    .navbar-toggler-icon{ background: transparent; color: #fff; padding: 0px; }
    .nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 8px 10px !important;
    position: relative;
    margin: 0 5px;
    font-family: "Poppins", sans-serif;
    border-bottom: 1px dashed #d9a9e0;
}
.text-border-design {
    width: 100%;
}
.why-rishikesh-sec .col-md-6{ width: 100%; max-width: 100%; flex: 100%; }
.ttc-schedule-m  .col-md-7{ width: 100%; max-width: 100%; flex: 100%; }
.ttc-schedule-m  .col-md-5{ width: 100%; max-width: 100%; flex: 100%; }
.drop-class ul.thead {
    background: var(--primary);
    display: none;
}
.drop-class ul{ margin-bottom: 20px; border-top: 5px solid #8c3e98 }
.drop-class ul li {
    width: 100%;
}
.drop-class ul li:first-child {
    width: 100%;
}
.drop-class ul li strong {
    display: inline-block;
    margin-right: 8px
}
.drop-class.month-table ul li {
    width: 100%;
}
.rishikesh-img {
    width: 100%;
    margin: auto;
}
.quote-box {
    width: 95%;
    margin: 4em auto 0 auto;
    position: relative;
}
.beyond .col-md-4{ width: 100%; max-width: 100%; flex: 100%; }
.beyond .col-md-8{ width: 100%; max-width: 100%; flex: 100%; }
.beyond .home-course-img { height: 500px }
.order-last {
    order: 0 !important;
}
.accom-image, .food-image{ height: 580px }
.ttc-slly .card-body .col-md-4 {width: 100%; max-width: 100%; flex: 100%;}
.ttc-slly .card-body .col-md-8 {width: 100%; max-width: 100%; flex: 100%;}
.ttc-slly .accordion .card-body ul li{ width: 100% }
.how-book .col-md-4 {width: 100%; max-width: 100%; flex: 100%; margin-bottom: 15px}
.new-ttc-include .col-md-5 {width: 100%; max-width: 100%; flex: 100%; margin-bottom: 15px}
.new-ttc-include .col-md-4 {width: 100%; max-width: 100%; flex: 100%; margin-bottom: 15px}
.order-last .home-course-img {
    margin-right: 8px;
    height: 350px;
}
.faq-section p{text-align: justify;}
}
@media screen and (max-width: 667px) {
    .teacher-img-wrapper img{object-position: top;}
    .ttcBox{margin-bottom: 40px;}
    .ttcBoxSecond{margin-bottom: 0px;}
    .teacher-img-wrapper{    height: 390px;}
    .choose-right{padding-top: 20px;}
    .banner-heading{text-align: center;}
    .ttc-banner-info p{text-align: center;}
    .banner-logos{padding-top: 4px;}
    .premium-card .card-header h3{    font-size: 20px;}
    .detail-value{font-size: 15px;}
    .icon-top{font-size: 26px;}
    .offer-box{padding: 2em 2em;}
    .schedule-right{display: none;}
    .c-price-box h4{font-size: 16px;}
    .course-info-heading{font-size: 22px;}
    .point-list{text-align: left;}
    .workshop-img{height: 240px;}
    .workshop-content h4{font-size: 24px;}
    .order-last{    order: 0 !important;}
    .navbar-brand {
    width: 9%;
}
.drop-class ul.thead {
    background: var(--primary);
    display: none;
}
.drop-class ul{ margin-bottom: 20px; border-top: 5px solid #8c3e98 }
.drop-class ul li {
    width: 100%;
}
.drop-class ul li:first-child {
    width: 100%;
}
.drop-class ul li strong {
    display: inline-block;
    margin-right: 8px
}
.contact-map-img img {
    height: auto;
}
.map-section iframe{ height: 250px; }
.map-section {
    height: auto;
}
.contact-map.section{ padding: 0px; }
}
@media screen and (max-width: 640px) {}
@media screen and (max-width: 576px) {
    .hero-content{padding: 4em 0;}
    .hero-section, .hero-slide{        min-height: auto;}
    .hero-section{height: auto;}
    .hero-btns .btn{font-size: 16px;}
    .hero-content h1{font-size: 32px;}
    .about-img-secondary{width: 53%;bottom: -30px;left: 0px;}
    .divider{margin: 10px 0;}
    .stat-item{padding: 8px 8px;}
    .features-section{padding: 60px 0;}
    .ttc-uniform-section{padding: 60px 0;}
    .retreat-section{padding: 60px 0;}
    .teachers-section{padding: 60px 0;}
    .about-section{padding: 60px 0;}
    .testimonials-section{padding: 60px 0;}
    .faq-section{padding: 60px 0;}
    .course-image{height: 250px;}
    .retreat-img{height: 250px;}
    .yoga-alliance-section h2{font-size: 32px;}
    .footer-widget{margin-bottom: 30px; text-align: center;}
    .abt-feature-box{padding: 12px 12px;}
    .ttcBox{height: 350px;}
    .teacher-card-new{margin: 0px 60px;}
    .cta .cta-heading{font-size: 28px;}
    .cta{padding: 5em 0;}
    .activity-details h4{font-size: 20px;        font-weight: 600;}
    .c-prices{gap:10px;}
    .offer-points{    gap: 15px;    flex-direction: column;}
    .faq-section .g-5{    --bs-gutter-y: 0rem;}
    #header-carousel .carousel-item {
        /* position: relative; */
        min-height: 280px;
    }
    .rishikesh-img {
    width: 100%;
    margin: auto;
}
.accordion-button span {
    flex-grow: 1;
    font-weight: 500;
    font-size: 13px;
    color: var(--dark);
    text-align: left;
}
.mid-quote h5 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 5px 4px #000000;
}
.mid-quote h5 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 5px 4px #000000;
}
.drop-class ul.thead {
    background: var(--primary);
    display: none;
}
.drop-class ul{ margin-bottom: 20px; border-top: 5px solid #8c3e98 }
.drop-class ul li {
    width: 100%;
}
.drop-class ul li:first-child {
    width: 100%;
}
.drop-class ul li strong {
    display: inline-block;
    margin-right: 8px
}
    .footer-logo {
        width: 19%;
    }
    .ttc-slly .accordion .card .card-header button.accordion-button{ font-size: 14px; text-align: left; }
        .accom-image, .food-image {
        height: 400px;
    }
    .home-course-text h3 {
    padding: 6px;
    font-size: 18px;
}
    .beyond .home-course-img {
        height: 330px;
    }
    .scheduleTime {
    border-right: 2px solid var(--primary);
    padding: 10px 16px 10px;
    background: #f1e7f5;
    width: 40%;
}
.scheduleTime{ font-size: 13px }
.schedule-activity span {
    font-size: 14px;
    line-height: 1.75rem;
    color: #222;
    font-weight: 500;
}
.schedule-activity {
    color: #fff;
    width: 57%;
    padding: 0 1em;
}
.point-box {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(142, 121, 62, 0.1);
    padding: 0px;
    border-radius: 8px;
}
.footer-widget .para {
    color: var(--white);
    display: block;
     align-items: center; 
    gap: 15px;
    font-size: 15px;
    text-align: center;
}
.footer-widget .para a.para{display: inline-block;}
}

@media screen and (max-width: 490px) {
    .about-img-secondary{width: 40%;bottom: -9px;}
    .section-header span{margin-bottom: 5px;}
    .section-header{margin-bottom: 10px;}
    .stat-item{        padding: 8px 12px;}
    .certification-benefits li{    display: block;}
    .contact-banner{padding: 70px 0 40px;}
    .contact-banner h1{font-size: 30px;}
    .teacher-card-new{margin: 0 50px;}
    .specialty{margin-bottom: 0px;}
    .copyright{padding: 8px 0;margin-top: 5px;}
    .copyright p{margin-bottom: 0px;}
    .copyright .footer-menu{display: none;}
    .section-header span{padding-top: 10px;}
    .course-overview-section{    padding: 60px 0px;}
    .activities-section{    padding: 60px 0px;}
    .schedule-time h4{font-size: 20px;}
    .upcoming-card{margin:0;}
    .dates-table{    padding: 18px;}
    .dates-table h3{font-size: 20px;}
    .pricing-header{    padding: 16px;}
    .price{font-size: 20px;}
    .pricing-header h3{font-size: 20px;}
    .pricing-section{padding: 60px 0px;}
    .retreat-overview-section{padding: 60px 0px;}
    .schedule-with-form-section{    padding: 60px 0;}
    .curriculum-section{padding: 60px 0;}
    .quick-enroll-form{margin-top: 0;}    
    .timeline-content{    padding: 15px;}
    .footer-widget h3{font-size: 18px;    margin-bottom: 12px;}
    .navbar-brand img{height: 45px;}
    .navbar{    padding: 9px 0;}
    .hero-content{padding: 4em 1em;}
    .hero-content h1{font-size: 30px;}
    .section-header h2{font-size: 26px;}
    .abt-feature-box{font-size: 14px;}
    .rsn-icon i{padding: 16px; font-size: 22px;}
    .cta .cta-heading{font-size: 26px;}
    .accordion-button span{font-size: 16px;}
    .footer-widget h3{font-size: 24px;}
    .banner-heading{font-size: 24px;}
    .premium-card .card-header h3{        font-size: 18px;}
    .detail-value{        font-size: 14px;}
    .icon-top{font-size: 24px;}
    .feature-card{padding: 10px 6px;}

    .btn-gradient{font-size: 15px;}
    .accordion-content p{    padding: 10px 25px 25px;}
    .schedule-item .time{font-weight: 500;}
    .abt-icons{    flex-direction: column;gap: 20px;}
    .premium-card .card-header{    padding: 12px;}
    .premium-card .card-body{    padding: 6px 18px;}
    .side-boxes{padding: 0.7em;}
    .offer-box{margin: 0px; padding: 2em 1em;}
    .accordion-content ul{padding-left: 30px;}
    .curriculum-list li{    padding-left: 6px;}
    .schedule-item .time{font-size: 15px;}
    .block-header h3{font-size: 19px;}
    .activity-details h4{font-size: 19px;}
    .section{padding: 40px 0px;}
    .course-info-heading{font-size: 20px;}
    .course-highlights{    gap: 10px;margin-bottom: 12px;}
    .c-prices{flex-direction: column;}
    .c-price-box{    width: 100%; text-align: center;}
    .c-price-box p{font-size: 22px;}
    .point-list{justify-content: left;}
    .excl-subheading{font-size: 17px;}
    .excl-heading{font-size: 28px;}
    .included-header h3{font-size: 18px;}
    .workshop-content{padding: 15px;}
    .teacher-info-new{height: auto;}


        .navbar-brand img {
        height: auto;
    }
        .navbar-brand {
        width: 16%;
        height: auto;
    }
        #header-carousel .carousel-item {
        /* position: relative; */
        min-height: 230px;
    }
        .section-header h2 {
        font-size: 24px;
    }
    p{ font-size: 15px }
        .accordion-button span {
        font-size: 14px;
    }
    .mid-quote {
    padding: 6em 0;
    background: url(../img/sun-bg.webp) no-repeat center;
    background-size: cover;
}

    .accom-image, .food-image {
        height: 300px;
    }
    .teacher-bio-content h3 {
    color: #fff;
    font-size: 23px;
    margin-bottom: 5px;
}

.sub-heading2 {
    position: relative;
    overflow: hidden;
    padding: 2px;
    }
    .order-last .home-course-img {
    margin-right: 8px;
    height: 280px;
}
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 35%;
    right: -20px;
}
.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 35%;
    left: -20px;
}
}

@media screen and (max-width: 480px) {
.footer-logo {     width: 29%;    height: auto;}

.acti-cards .home-course-img { height: 240px;}
.contact-map-img img{
    height: auto;
}
.map-section iframe{ height: 250px; }
.map-section {
    height: auto;
}
.food-content { margin-top: 20px }
.accordion-button i:first-child {
    color: var(--primary);
    font-size: 20px;
    margin-right: 0;
    flex-shrink: 0;
}
.ttc-slly .accordion .card .card-header button.accordion-button {
    display: block;
    width: 100%;
    padding: 10px;
    padding-right: 6px;
    }

    .ttc-slly .accordion .card .card-header button.accordion-button {
        font-size: 13px;
        text-align: left;
    }    
}




@media screen and (max-width: 430px) {
    .navbar{padding: 10px 0;}
    .icon-circle img{width: 35px;    height: 35px;}
    .icon-circle{width: 60px;height: 60px;}
    .feature-content-new h3{    margin-bottom: 8px;}
    .feature-icon-new{margin-bottom: 10px;}
    .feature-content-new h3{    font-size: 18px;}
    .footer{    padding: 50px 0 0;}
    .hero-content h1{text-align: center;        font-size: 28px;}
    .hero-content p{text-align: center;}
    .hero-btns .btn{margin: auto;width: 50%; margin-bottom: 15px;}
    .section-header h2{    margin-bottom: 10px;}
    .course-content{padding: 16px;}
    .yoga-alliance-section h2{font-size: 28px;}
    .certification-benefits i{    margin-right: 5px;}
    .feature-item i{width: 40px;    font-size: 18px;height: 40px;}
    .retreat-content{padding: 16px;}
    .retreat-description{margin-bottom: 10px;}
    .feature-item{margin-bottom: 8px;}
    .retreat-footer{margin-top: 10px;}
    .retreat-features{margin-bottom: 10px;}
    .price{font-size: 20px;}
    .teacher-info-new h3{font-size: 20px;}
    .specialty{font-size: 14px;}
    .gallery-section{padding: 50px 0;}
    .footer-social a{width: 30px;height: 30px;}
    .copyright p{text-align: center;}
    .section-header span{font-size: 16px;}
    .preloader{display: none;}
    .ttcBox{        height: 270px;}
    .play-icon .arr h4{font-size: 34px;}
    .reason-choose .play-icon .arr{    padding: 6px 8px;}
    .point-box{padding-top: 14px;}
    .teacher-img-wrapper{        height: 340px;}
    .testimonial-section .play-icon a{    padding: 35px 80px;}
    .testimonial-content p{margin-bottom: 20px;}
    .cta{        padding: 4em 1em;}
    .cta .cta-heading{font-size: 24px;}
    .footer-logo{width: 40%;}
    .footer-widget h3{font-size: 22px;}
    .g-5{--bs-gutter-y:0;}
    .rsn-desc p{font-size: 15px; text-align: justify;}
    .reason-choose .play-icon{width: 35%;}
    .pr-0{padding-right: 10px;}
    .reason-choose .about-img-container{margin-right: 0px;}
    .enroll-form-container{padding: 3em 1em;}
    .teacher-bio{margin-bottom: 10px;}
    .teacher-detail-card{margin-bottom: 40px;}
    .ttc-banner-info p{font-size: 15px;}
    .banner-heading{font-size: 22px;}
    .certification-card img{    max-height: 110px;}
    .course-info-box{padding: 1em;}
    .course-info-heading{font-size: 18px;}
    .c-price-box p{font-size: 20px;}
    .offer-cta{margin-top: 20px;}
    .excl-heading{font-size: 26px;}
    .point-list p{font-size: 14px;}
    .banner-logos div{text-align: center;}
    .banner-logos div img{    width: 70%;}
    .banner-heading{font-size: 20px;}
    .abt-icon-box img{width: 9%;}
    .premium-card .card-header h3{        font-size: 16px;}
    .premium-card .btn{padding: 12px; font-size: 15px;}
    .teacher-img-container{padding: 10px;}
    .navbar-collapse{padding: 15px;}
    .ttc-about-left{padding-right: 0px;}
    .dropdown-item{font-weight: 400;}

.copyright span {
    font-size: 9px;
}
    .navbar-brand img {
        height: auto;
    }

.home-course-img img {
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    border: 8px solid #ffffff;
}
.home-course-img img.flip {
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    border: 8px solid #ffffff;
}


    .order-last .home-course-img {
    margin-right: 8px;
    height: 220px;
}
.acti-cards .home-course-img {
    background-size: cover;
    height: -webkit-fill-available;
    margin: 8px;
    margin-right: 0px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    height: 220px;
}


}
@media screen and (max-width: 400px) {
    .section-header h2{font-size: 26px;}
    .certification-content{padding: 10px 18px;}
    .yoga-alliance-section h2{font-size: 26px;}
    .yoga-alliance-section .lead{font-size: 16px;}
    .retreat-content h3{font-size: 20px;}
    .teacher-info-new{padding: 15px;}
    .navbar-brand img{height: 40px;}
    .copyright p{font-size: 15px;}
    .footer-widget ul li{margin-bottom: 8px;}
    .hero-content h1{font-size: 26px;}
    .preloader h4{font-size: 22px;}
    .btn{        padding: 8px 14px;}
    .meta-item i{font-size: 20px;}
    .course-meta{margin-top: 10px;padding-top: 10px;}
    .course-duration span{font-size: 32px;}
    .hero-section, .hero-slide{min-height: 430px;}
    .contact-banner h1{        font-size: 28px;}
    .section-header h2{        font-size: 24px; font-weight: 800;}
    .location-section{    padding: 60px 0;}
    .aims-section{    padding: 60px 0;}
    .curriculum-section{    padding: 60px 0;}
    .schedule-with-form-section{    padding: 60px 0;}
    .aims-section h5{font-size: 16px;}
    .teacher-name{        font-size: 24px;}
    .teacher-title{font-size: 16px;margin-bottom: 8px;}
    .teacher-main-info, .teacher-details{        padding: 15px;}
    .gallery-page-section{padding: 60px 0;}
    .contact-section{padding: 60px 0;}
    .contact-icon img{width: 90%;}
    .contact-icon{    width: 40px;    height: 60px;}
    .contact-text h4{    font-size: 16px;margin-bottom: 4px;}
    .social-links{padding-bottom: 20px;}
    .enroll-section{    padding: 40px 0px;}
    .course-banner h1{font-size: 24px;}
    .accordion-button span{font-size: 15px;}
    .accordion-content p, .accordion-content ul{padding: 10px 25px 25px; text-align: justify;}
    .choose-right{padding-left: 0px;}
    .testimonial-card{padding: 15px;}
    .accordion-button{    padding: 15px 10px;}
    .teacher-info-new{height: auto;}
    .icon-top{font-size: 22px;}
    .abt-icon-box span{font-weight: 400;}
    .special-offer{padding-top: 0px;}
    .c-price-box{padding: 10px;}
    .c-price-box p{font-size: 18px;}
    .workshop-content h4{font-size: 22px;}
    .curriculum-accordion .accordion-button span{font-size: 15px;}
    .course-rating{display: none;}   
        .navbar-brand img {
        height: auto;
    } 
}
@media screen and (max-width: 390px) {
    .section-header h2{font-size: 24px;}
    .section-header span{        font-size: 14px;}
    .teacher-img-wrapper{height: 270px;}
    .teacher-card-new{        margin: 0 50px;}
    .excl-subheading{        font-size: 15px;}
    .excl-heading{font-size: 24px;}
        .navbar-brand img {
        height: auto;
    }
.order-last .home-course-img {
    margin-right: 8px;
    height: 220px;
}
    .navbar-brand {
        width: 18%;
        height: auto;
    }
}
@media screen and (max-width: 360px) {
    .hero-content h1{font-size: 24px;}
    .section-header h2{font-size: 22px;}
    .course-duration span{font-size: 28px;}
    .teacher-info-new h3{font-size: 18px;}
    .reason-choose .play-icon .arr{display: none;}
    .banner-heading{font-size: 18px;}
    .included-header h3{font-size: 16px;}
        .navbar-brand img {
        height: auto;
    }
}
@media screen and (max-width: 330px) {}


