/* 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: #f8774a;         
  --primary-light: #ff9b7a;
  --primary-dark: #c7502d;
  
  --secondary: #01958a;       
  --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;
    background-color: #e9630208;
}
body p{line-height: 1.8;}

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: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(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: 20px;
    position: relative;
}

.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;}

@keyframes bloom {
    0%, 100% { height: 15px; opacity: 0.8; }
    50% { height: 25px; opacity: 1; }
}
.section{padding: 60px 0; background: #fff;}
.bg-grey{background: #f2f1ee;}


/* Navigation */
.navbar {
    padding: 16px 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: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 50px;
        color: var(--primary);
    font-weight: bold;
}

.nav-link {
    font-weight: 400;
    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: 2px;
    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(--secondary);
    color: var(--white);
}

/* 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.png');
    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.png);
    background-position: bottom center;
    background-size: cover;
}

/* Updated About Section */
.about-img-container {
    position: relative;
    margin-bottom: 30px;
    margin-left: 40px;
}
.about-img-main {
    border-radius: 12px;
    overflow: hidden;
    /*box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);*/
    position: relative;
}
.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;}



.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(--secondary);
    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.png);
    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;}
.ttc-bg{background: linear-gradient(90deg, hsl(0deg 0% 100%) 0%, hsl(34.46deg 54.1% 88.04% / 67%) 100%);}
.ttc-banner-info{padding: 4em; text-align: center;}
.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 img{width: 20%;}
.abt-icon-box span{font-weight: 500;     font-size: 14px;}
.ttc-about-left{position: sticky; top: 100px; padding-right: 1em;}
.sp-countdown-timer {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
        width: 50%;
    margin: auto;
}

.sp-countdown-item {
    text-align: center;
    background: var(--primary);
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgb(196 191 191 / 20%);
    flex: 1;
    margin: 0 5px;
    box-shadow: 0 0 3px 0px #fff2f280;
}

.sp-countdown-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}
.popup .sp-countdown-value{ font-size: 1.1rem;}
.popup .sp-countdown-timer{ padding: 10px 0px;}
.popup .sp-countdown-item{background: #01958a;}

.sp-countdown-label {
    font-size: 0.7rem;
    color: #fff;
    text-transform: uppercase;
}

/* Premium Course Details Card */
.premium-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    /*box-shadow: 0 15px 40px rgba(1, 149, 138, 0.15);*/
       border: 1px solid var(--secondary);
    transition: transform 0.3s ease;
    margin-left: 20px;
    margin-bottom: 2em;
}
.side-boxes{padding: 1em; border:none;     box-shadow: 0 0px 12px rgb(94 94 94 / 30%);border: 1px solid #d8d4d2;}

.premium-card:hover {
    /*transform: translateY(-5px);*/
    /*box-shadow: 0 20px 50px rgba(1, 149, 138, 0.2);*/
}

.bg-texture{    background-image: linear-gradient(rgba(232, 232, 232, 0.19), rgba(232, 232, 232, 0.19)), url(../img/pattern-bg.png);
    background-size: 15%;}
.premium-card .card-header {
    background: linear-gradient(135deg, #f8f6f6 0%, #f6f4f3 100%);
    color: white;
    padding: 18px;
    text-align: center;
    position: relative;
}

.premium-card .card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
        color: var(--secondary);
    font-family: 'Poppins', serif;
}

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

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

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

.detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(1, 149, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--secondary);
    font-size: 16px;
}

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

.detail-label {
    font-weight: 500;
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 3px;
}

.detail-value {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
}
.detail-icon img{width: 70%;}

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

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

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

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

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

.premium-card .btn i {
    margin-right: 8px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(1, 149, 138, 0.1);
    color: var(--secondary);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}

.guarantee-badge i {
    margin-right: 8px;
    color: var(--secondary);
}

.sidebox-img img{border-radius: 12px;     height: 300px;width: 100%;object-fit: cover;}
.side-boxes-info h4{color: var(--primary-dark); padding-top: 10px;}
.side-boxes-info p{font-size: 15px; text-align: justify;}
.offer-box {
        position: relative;
        z-index: 5;
        border-radius: 10px;
        overflow: hidden;
        padding: 2em 2em;
        margin: 0em 4em;
            background: #009688;
   box-shadow: 0 0 11px #d2cfcf; 
    background-size: cover;
    background-position: center;
        background-image: url(../img/Group.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    }
.icon-top{color: #fff;
    text-align: center;
    font-size: 32px; 
    padding-bottom: 12px; margin-top: 0px;}

.grabOffer a{animation: heartbeatWithPause 2.5s infinite;}
 @keyframes heartbeatWithPause {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  40% {
    transform: scale(1);
  }

}
.so-content ul {
    background: #f3fffe;
    text-align: left;
    color: #000;
    padding: 16px 20px;
    border-radius: 10px;
    list-style: none;
    /*border: 2px dashed #009688;*/
}     
.icon-list.lotus li {
    line-height: 24px !important;
    font-size: 16px;
}
.green {
    color: #ff7e55;
}

.offer-cta {
    margin-top: 20px;
    text-align: center;
}

.btn-pulse {
    animation: pulse 1.5s infinite;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(248, 119, 74, 0.4);
}

.btn-pulse i {
    margin-right: 10px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(248, 119, 74, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(248, 119, 74, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(248, 119, 74, 0.4);
    }
}

.feature-card {
  background: rgb(255 255 255 / 77%);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 8px 6px;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  /*background: rgba(255,255,255,0.15);*/
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.headBtn{animation-name: pulse-glow;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    transition: all 0.3s;}
@keyframes pulse-glow {
  50% {
    box-shadow: 0 0 0 0 rgb(248 119 74);
    scale: 0.9;
    }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    scale: 1;
    }
}

.anBtn{animation: heartbeatWithPause 2.5s infinite;}
@keyframes heartbeatWithPause {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  40% {
    transform: scale(1);
  }

  /* Pause effect */
  100% {
    transform: scale(1); /* Hold still until next loop */
  }
}

.map-left iframe{    border: 0;
    border-radius: 10px;
    box-shadow: 0 0 8px #cacaca;}

.feature-icon {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 2px;
}

.feature-card h4 {
  font-size: 20px;
  margin-bottom: 6px;
  font-family: "Cormorant", serif;
}

.feature-card p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 8px;
}
.discount-tag {
  background: white;
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
}
.offer-features{text-align: center;}


/* Curriculum Accordion Styles */
.curriculum-accordion {
    border-radius: 12px;
    overflow: hidden;
}

.curriculum-accordion .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);
    background: white;
}

.curriculum-accordion .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;
}

.curriculum-accordion .accordion-button:hover {
    background: rgba(142,121,62,0.03);
}

.curriculum-accordion .accordion-button i:first-child {
    color: var(--primary);
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.curriculum-accordion .accordion-button span {
    flex-grow: 1;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    text-align: left;
}

.curriculum-accordion .accordion-button i:last-child {
    color: var(--primary);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.curriculum-accordion .accordion-button.active i:last-child {
    transform: rotate(180deg);
}

.curriculum-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.curriculum-accordion .accordion-content.show {
    max-height: 1000px; /* Adjust based on content */
}

.curriculum-accordion .accordion-content > div {
    padding: 20px 0px 10px;
}

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

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

.curriculum-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.curriculum-list li span {
    display: inline-block;
    padding-bottom: 3px;
}

/* Right Column Styles */
.certification-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.certification-card img {
    max-height: 130px;
    margin: 0 auto 15px;
    display: block;
}

.certification-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.certification-card p {
    font-size: 15px;
    color: var(--gray);
}

.curriculum-stats {
    background: white;
    border-radius: 12px;
    padding: 20px;
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
}
.curriculum-stats .stat-item{background: #f2f1ee;}
.stat-item {

    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(1, 149, 138, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.stat-content h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
    text-align: left;
}

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

.download-syllabus .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

/* JavaScript will handle the active class */
.accordion-button.active {
    background: rgba(1, 149, 138, 0.05);
    border-bottom: 1px solid rgba(1, 149, 138, 0.1);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .curriculum-accordion .accordion-button {
        padding: 15px 20px;
    }
    
    .curriculum-accordion .accordion-button span {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .curriculum-accordion .accordion-content > div {
        padding: 0 15px 15px;
    }
    
    .stat-item {
        margin-bottom: 15px;
    }
}






/* Yoga Masters Redesign */
.teachers-section {
    padding: 60px 0;
    background-color: #f2f1ee;
    position: relative;
    overflow: hidden;
        background-image: url(https://kits.rometheme.net/peaceful/wp-content/uploads/sites/60/2025/05/BG-3.png);
    background-position: bottom center;
    background-size: cover;
}

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

.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; height: 100px;
    text-align: center;
}

.teacher-info-new h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--primary);
    font-family: "Cormorant", serif;
    font-weight: 700;
}

.specialty {
    display: block;
    color: var(--dark);
    font-weight: 400;
    margin-bottom: 15px;
    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 */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-card {
    background: #f2f1ee;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 5%);
    height: 100%;
    /*border: 1px solid rgba(142, 121, 62, 0.1);*/
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    margin-bottom: 20px;
        position: absolute;
    bottom: 0;
    right: 0;
}

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

.testimonial-content p {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.author img {
    width: 70px!important;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    /*border: 3px solid var(--primary);*/
}

.author-info h4 {
    font-family: "Poppins";
    font-size: 17px;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray);
    display: block;
    margin-bottom: 5px;
}

.rating {
    color:#ffb400;
}

.owl-carousel .owl-nav .owl-prev { position: absolute;
    top: 45%; left: -20px;}
.owl-carousel .owl-nav i {height: 45px; width: 45px; line-height: 45px;
    text-align: center; color: #fff; background: none;}
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 45%;
    right: -20px;
}



.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;
}


/* Footer */
.footer {
    background: #f2f1ee;
    color: var(--dark);
    padding: 70px 0 0;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://kits.rometheme.net/peaceful/wp-content/uploads/sites/60/2025/05/BG-Footer.png');
    opacity: 1;
    z-index: 0;
    background-size: contain;
}

.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: 18px;
    position: relative;
    padding-bottom: 10px;
    font-family: "Cormorant", serif;
    color: var(--dark);
}

.footer-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 85px;
    height: 2px;
    background:var(--secondary);
}

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

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

.footer-widget ul li a {
    color: var(--dark);
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--secondary);
    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: 20px 0;
    border-top: 1px solid rgb(1 149 88 / 65%);
    margin-top: 0px;
    position: relative;
    z-index: 1;
    padding-bottom: 2px;
}
.copyright a{color: var(--dark)}
.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);
}

.quickLink ul li::before {
    content: '';
    display: inline-block;
    height: 14px;
    width: 26px;
    background-image: url(../img/list-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.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(--dark);}
.footer-widget .para i{color: var(--primary);}
.footer-logo{width: 20%; margin-bottom: 24px;}

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

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

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

.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: top;
    padding: 180px 0 130px;
    text-align: center;
    color: white;
    position: relative;
}

.enroll-form-container{    background: #f2f1ee;
    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);
}
.features-section {
    padding: 60px 0;
    background-color: #f2f1ee;
    position: relative;
    overflow: hidden;
        background-image: url(https://kits.rometheme.net/peaceful/wp-content/uploads/sites/60/2025/05/BG-3.png);
    background-position: bottom center;
    background-size: cover;
}

/* FAQ Section */


.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: 600;
  font-size: 17px;
  color: var(--dark);
  text-align: left;
}

.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%;
}

.faq-cta {
  background: rgba(142,121,62,0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px dashed var(--primary);
}

.faq-cta p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--dark);
}


/* 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.png);
    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:before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}*/

.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;
}

/* Color coding for different blocks */
.morning-block .block-header h3 { color: #000; }
.morning-block .block-header i { color: #e67e22; }
.morning-block .block-header .timeline { background: linear-gradient(to right, #e67e22, rgba(230, 126, 34, 0.2)); }
.morning-block .schedule-item:before { background: #e67e22; }
.morning-block .activity-icon { background: rgba(230, 126, 34, 0.1); color: #e67e22; }

.midday-block .block-header h3 { color: #000; }
.midday-block .block-header i { color: #3498db; }
.midday-block .block-header .timeline { background: linear-gradient(to right, #3498db, rgba(52, 152, 219, 0.2)); }
.midday-block .schedule-item:before { background: #3498db; }
.midday-block .activity-icon { background: rgba(52, 152, 219, 0.1); color: #3498db; }

.evening-block .block-header h3 { color: #000; }
.evening-block .block-header i { color: #9b59b6; }
.evening-block .block-header .timeline { background: linear-gradient(to right, #9b59b6, rgba(155, 89, 182, 0.2)); }
.evening-block .schedule-item:before { background: #9b59b6; }
.evening-block .activity-icon { background: rgba(155, 89, 182, 0.1); color: #9b59b6; }



/* Responsive Styles */
@media (max-width: 767.98px) {
    .schedule-item {
        flex-direction: column;
        padding-left: 15px;
    }
    
    .schedule-item .time {
        margin-bottom: 5px;
        width: auto;
    }
    
    .block-header h3 {
        font-size: 20px;
    }
    
    .activity-details h4 {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .schedule-items {
        padding: 15px;
    }
    
    .block-header h3 {
        font-size: 18px;
    }
}
.schedule-right{position: sticky; top: 100px;}
/*.schedule-img {margin-bottom: 30px;}*/
.schedule-img img{border-radius: 12px;}

.process-box{background: #fefefe;
    border-radius: 20px;
    padding: 2em 1.5em; margin: 0 0em;}
.p-inner-box{background: #f6f6f66e; border:1px solid var(--primary); border-radius: 12px; padding: 1em; margin-bottom: 20px; width: 100%;}
.p-inner-box h4{    font-family: 'Poppins';font-size: 16px;}
.p-number span{    background: var(--secondary);
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;}
.p-box-outer{    display: flex;
    align-items: center;
    gap: 12px;}
.p-inner-box p{margin: 0px; font-size: 15px;}
.pr-space-3{padding-right: 2em;}
.course-info-box{    background: #fff;
    margin-top: 3em;
    padding: 1.5em;
    border-radius: 20px;
    border: 1px solid #a9a9a9;  box-shadow: 0 10px 30px rgba(0,0,0,0.05);}
.course-info-header{display: flex; justify-content: space-between;}
.yl-img img{width: 70%;}
.course-info-heading{font-family: 'Poppins';     font-size: 24px; padding: 16px 0px;
    font-weight: 400;}
.course-rating{text-align: center;}
.course-rating p{    font-size: 14px;
    color: darkgrey;}
.c-prices{display: flex; gap:20px; padding: 10px 0px;}
.c-price-box{background: rgb(255 238 228);
    padding: 1em;
    border-radius: 12px;
    width: 32%}
.c-price-box h4{    color: var(--primary);
    border-bottom: 1px solid;
    padding-bottom: 10px;     font-family: 'Poppins';
    font-weight: 500;
    font-size: 18px;}
.c-price-box p{font-size: 24px; margin: 0px;} 
.c-price-box p del{color: #7a7373;    font-size: 18px;}

.course-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--dark);
}

.highlight-item i {
    color: var(--primary);
}


.rating-stars {
    color: #ffb400;
    margin-bottom: 5px;
}

.c-price-box small {
    display: block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}
.schedule-img{    background: #fff;
    padding: 0.5em;
    border-radius: 20px;
    box-shadow: 0 0 3px #01958a80;}




.inner-banner {
    background: linear-gradient(rgb(0 0 0 / 16%), rgb(0 0 0 / 16%)), url(../img/village-tour.jpg);
    background-size: cover;
    background-position: center;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}



@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: 16px;
}

.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)}

/* Thank You Page Styles */
.thank-you-hero {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.thank-you-icon {
    font-size: 60px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.thank-you-content h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: "Cormorant", serif;
}

.thank-you-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: "Cormorant", serif;
}

.thank-you-content p {
    font-size: 18px;
    color: var(--gray);
    max-width: 500px;
}

.thank-you-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /*box-shadow: 0 15px 30px rgba(0,0,0,0.1);*/
}

.thank-you-image img {
    transition: transform 0.5s ease;
    width: 80%;
}

.thank-you-image:hover img {
    transform: scale(1.02);
}

.thank-you-actions .btn {
    padding: 12px 25px;
    font-size: 16px;
}

/* Next Steps Section */
.step-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(142, 121, 62, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: "Cormorant", serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.step-card p {
    color: var(--gray);
}


/* Responsive Styles */
@media (max-width: 991.98px) {
    .thank-you-hero {
        padding: 80px 0;
    }
    
    .thank-you-content h1 {
        font-size: 50px;
    }
    
    .thank-you-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 767.98px) {
    .thank-you-hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .thank-you-content h1 {
        font-size: 40px;
    }
    
    .thank-you-content h2 {
        font-size: 26px;
    }
    
    .thank-you-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .thank-you-image {
        margin-top: 40px;
    }
    
    .thank-you-actions {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .thank-you-content h1 {
        font-size: 36px;
    }
    
    .thank-you-content h2 {
        font-size: 24px;
    }
    
    .thank-you-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .thank-you-actions .btn:last-child {
        margin-bottom: 0;
    }
    
    .step-card, .resource-card {
        padding: 20px;
    }
}


        /* Course Filter Styles */
        .course-filter-container {
            background: white;
            border-radius: 12px;
            padding: 25px;
            /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
            margin-bottom: 30px;
            /*border: 1px solid rgba(142, 121, 62, 0.1);*/
        }
        
        .course-filter {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .filter-btn {
            background: white;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            flex: 1;
            min-width: 120px;
            max-width: 200px;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Course Table Styles */
        .course-dates-table {
            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);
        }
        
        .course-dates-table table {
            margin-bottom: 0;
        }
        
        .course-dates-table th {
            background: var(--primary);
            color: white;
            font-weight: 500;
            padding: 15px;
            border-bottom: none;
        }
        
        .course-dates-table td {
            padding: 15px;
            vertical-align: middle;
            border-top: 1px solid rgba(142, 121, 62, 0.1);
        }
        
        .course-dates-table tr:last-child td {
            border-bottom: none;
        }
        
        .course-dates-table tr:hover {
            background-color: rgba(142, 121, 62, 0.03);
        }
        
        .badge {
            padding: 8px 12px;
            font-weight: 500;
            font-size: 14px;
        }
        
        .btn-sm {
            padding: 8px 20px;
            font-size: 14px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .btn-sm:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        /* Notes Section */
        .course-note .alert {
            border-radius: 12px;
            border-left: 4px solid var(--primary);
            background: #f2f1ee;
        }
        
        .course-note h4 {
            font-family: "Cormorant", serif;
            color: var(--dark);
        }
        
        .course-note ul {
            padding-left: 20px;
        }
        
        .course-note ul li {
            margin-bottom: 8px;
        }
        
        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .upcoming-dates-banner {
                padding: 80px 0;
            }
            
            .upcoming-dates-banner h1 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 767.98px) {
            .course-filter {
                flex-direction: column;
                align-items: stretch;
            }
            
            .filter-btn {
                max-width: 100%;
            }
            
            .course-dates-table th, 
            .course-dates-table td {
                padding: 12px 8px;
                font-size: 14px;
            }
            
            .badge {
                padding: 6px 10px;
                font-size: 12px;
            }
            
            .btn-sm {
                padding: 6px 12px;
                font-size: 13px;
            }
        }
        
        @media (max-width: 575.98px) {
            .upcoming-dates-banner h1 {
                font-size: 32px;
            }
            
            .course-dates-table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
            
            .course-note .alert {
                padding: 15px;
            }
        }

.exclusive-box{overflow: hidden;    background-image: url(../img/limited_offer.webp);
    background-position: center center;
    background-size: cover;
    position: relative; display: flex; border-radius: 1rem; justify-content: center; align-items: center; color: #fff; }
.exclusive-box .hero-overlay{background: linear-gradient(to right, #009688, #4db6ac); opacity: 0.7; background: linear-gradient(to right, #01958a, #013c3aba);
    /*backdrop-filter: blur(8px);*/}
.excl-inner-box{z-index:9; padding: 3.5em 0px; text-align: center;}
.excl-subheading{    color: #fff;font-family: 'Poppins';    font-weight: 300;font-size: 22px; margin-bottom: 14px;}
.excl-heading{     color: #fff;    font-size: 3em;}
.fewleft{font-size: 14px;}
.point-list{    display: flex;justify-content: center;align-items: center;gap: 10px;border: 1px solid #fff;
    border-radius: 20px;padding: 6px 14px;}
.point-list p{font-size: 15px;    margin: 0;}
.offer-points{display: flex;gap: 30px; margin: 2em 0;}
/* Included/Not Included Section */
.included-section {
    
}

.included-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(142, 121, 62, 0.1);
    transition: all 0.3s ease;
}

.included-card:hover {
    /*transform: translateY(-5px);*/
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.included-header {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(142, 121, 62, 0.1);
}

.included-header h3 {
    font-size: 20px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
}

.included-header h3 i {
    margin-right: 10px;
    font-size: 24px;
}

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

.included-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
}

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

.text-success {
    color: var(--secondary) !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-primary {
    color: var(--primary) !important;
}

/* Workshops & Excursions Section */
.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);
}

.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: 20px;
}

.workshop-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
    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);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}
/* Gallery Section */
.gallery-section {
    overflow: hidden;
    position: relative;
}

.gallery-row {
    margin: 30px 0;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 15px;
    width: max-content;
    will-change: transform;
}

/* First row animation */
.first-row .gallery-track {
    animation: scrollRightToLeft 30s linear infinite;
}


/* Second row animation */
.second-row .gallery-track {
    animation: scrollLeftToRight 30s linear infinite;
}
.third-row .gallery-track {
     animation: scrollRightToLeft 30s linear infinite;
}

/* Duplicate the content for seamless looping */
.gallery-track::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: inherit;
}

.gallery-item {
    width: 350px;
    height: 250px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Keyframes for right to left scrolling */
@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Keyframes for left to right scrolling */
@keyframes scrollLeftToRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-item {
        width: 250px;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        width: 200px;
        height: 150px;
    }
}
/* Responsive Table Styles */
@media (max-width: 767.98px) {
  .course-dates-table table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .course-dates-table thead {
    display: none;
  }
  
  .course-dates-table tr {
    display: block;
    margin-bottom: 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(142, 121, 62, 0.1);
  }
  
  .course-dates-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    text-align: right;
    border-bottom: 1px solid rgba(142, 121, 62, 0.1);
  }
  
  .course-dates-table td:last-child {
    border-bottom: none;
  }
  
  .course-dates-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--primary);
    margin-right: 15px;
    text-align: left;
  }
  
  /* Filter buttons on mobile */
  .course-filter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .filter-btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 0;
  }
}

@media (max-width: 400px) {
  .course-filter {
    grid-template-columns: 1fr;
  }
}
.fix-social {
  position: fixed;
  left: 40px;
  bottom: 20px;
  z-index: 999;
}
.fix-mail{
    left: unset;
    right: 40px;
    display: none;
}
.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;}
.fix-mail a{
    background: #00b2ff;
    animation: none;
}

    @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;
}
}


/* Highlights Section */
.highlights-section {
    /*background-color: #fff;*/
    position: relative;
    overflow: hidden;
}

.highlight-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(1, 149, 138, 0.1);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 149, 138, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    background: rgba(248, 119, 74, 0.1);
    transform: scale(1.1);
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-family: 'Cormorant', serif;
    font-weight: 600;
}

.highlight-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.highlight-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-wave {
    height: 8px;
}

#yttc-banner {
    position: relative;
    z-index: 9;
    overflow: hidden;
    height: 85vh;
        background-color: #f4b79f36;
}
#yttc-banner {
    background-image: url(../img/banner-pattern.webp);
    background-repeat: repeat;
    background-size: 16%
}

.team-info-image,.yttc-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.yttc-banner-logos-wrap {
    position: absolute;
    right: 0;
    height: auto;
    top: 2%;
    width: 17%;
    background-color: #48af9c;
    padding: 8px 10px 8px 30px;
    border-radius: 80px 0 0 80px
}

.yttc-banner-logos {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right
}

.yttc-banner-logos.mobile {
    display: none
}

.yttc-banner-image-left,.yttc-banner-image-right {
    border-radius: 20px;
    object-fit: cover;
    filter: drop-shadow(2px 4px 6px #00000023);
    position: absolute;
    z-index: -1
}

.yttc-banner-image-left {
    left: 20px;
    top: 3%;
    width: 32%;
    height: 75%
}

.yttc-banner-image-right {
    right: 20px;
    top: 18%;
    width: 22%;
    height: 70%
}

#contact-heartland .social-media-image,#contact-heartland .theme-list li:before,.counter-image {
    filter: invert(1)
}

.banner-big-text {
    font-size: 56px;
    font-weight: 500;
    text-align: left;
    color: #292929;
    text-shadow: 0 0 25px #fff;
    line-height: 1.2;
    font-family: Satisfy, cursive;
}
.headingBanner{font-family: 'Poppins';   font-size: 38px;}
.banner-small-text {
    font-size: 18px
}

.banner-left-side {
    width: 90%;
    margin-left: auto;
    margin-right: -45px
}.theme-button.alt {
    color: #48af9c;
    background-color: #fff;
    border-color: #fff
}

.theme-button.alt:hover {
    background-color: #48af9c;
    color: #fff
}

.theme-button {
    text-shadow: 0 0 1px #48af9c;
    background-color: #48af9c;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    padding: 8px 30px;
    display: inline-block;
    border: 2px solid #48af9c;
    border-radius: 28px;
    transition: .3s
}

.theme-button:hover {
    text-shadow: none;
    transition: .3s;
    color: #48af9c;
    background-color: #fff
}

.counter-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #48af9c;
    padding: 10px 10px;
    /*border-radius: 0 80px 80px 0*/
}

#footer,#footer-stripe,#yoga-ttc-page-banner,.fullwidth-left-right-section,.theme-list li {
    position: relative;
    z-index: 9
}

.counter-box {
    width: 15%;
    /*border-right: 2px dashed #fff*/
}

.counter-box:last-child,.offcanvas .accordion .accorheader::after {
    border: none!important
}

.counter-image {
    width: 45px;
    height: 30px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto 5px
}

.counter-heading {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 500;
    text-align: center
}

/*======*/
.counter-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    background-color: #48af9c;
    padding: 10px 10px;
    overflow: hidden; /* Hide the overflow */
}

.counter-container {
    display: flex;
    animation: scroll 20s linear infinite;
    width: max-content; /* Make container as wide as its content */
}

.counter-box {
    width: 100%;
    /*border-right: 2px dashed #fff;*/
    flex-shrink: 0; /* Prevent boxes from shrinking */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move by half of the total width */
    }
}
/*=====*/


.top-heading {
    font-size: 28px;
    color: #48af9c;
    text-align: center;
    margin-bottom: -2px
}

.main-heading {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px
}

/* Wellness Programs Section */
.wellness-section {
    background-color: #f9f9f7;
    position: relative;
}

.wellness-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(142, 121, 62, 0.1);
}

.wellness-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.wellness-img {
    position: relative;
    height: 290px;
    overflow: hidden;
}

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

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

.wellness-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

.wellness-content {
    padding: 20px;
    position: relative;
}

.wellness-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
    font-family: "Cormorant", serif;
}

.wellness-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.wellness-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}
.contact-form{position: relative;}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(1, 149, 138, 0.08);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
}

.feature-item i {
    color: var(--primary);
}

.retreat-card .wellness-overlay {
    background: linear-gradient(to bottom, rgba(1, 149, 138, 0.1), rgba(1, 149, 138, 0.4));
}

.sound-card .wellness-overlay {
    background: linear-gradient(to bottom, rgba(248, 119, 74, 0.1), rgba(248, 119, 74, 0.4));
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .wellness-img {
        height: 200px;
    }
    
    .wellness-content {
        padding: 20px;
    }
    
    .wellness-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .wellness-features {
        gap: 10px;
    }
    
    .feature-item {
        padding: 6px 12px;
        font-size: 13px;
    }
}


.mobileReview{display: none;}
.desktopReview{display: flex;}

.popup
        {
        display: none;
        position:fixed;
        box-shadow: 0px 0px 50px 2px #000;
        width: 25%;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        animation: 1s ease-in fade;
        background-color: white;
        right: 0;
        top:20%;    

    z-index: 9;
        text-align: center; 
        padding-bottom: 16px; 
        padding-top: 16px; 
        border-radius: 8px;
        }
        @keyframes fade
        {

  0%{transform: translateX(250px);}
  100%{transform: translateX(0px);}
    }

  .popup .anBtn{font-weight: 500; background: #fff; color: var(--secondary); text-shadow: none;}
  .popup .anBtn:hover{background: var(--secondary); color: #fff;}
        .pophigh{border-radius: 8px;     font-weight: 600;
    background: rgba(1, 149, 138, 0.08);}
        .popup img
        {
            width: 35%;
            margin: auto;
        }
        .popup h2
        {
            color:white; 
            padding-top: 16px; 
            padding-bottom:16px; 
            margin:0; 
            font-size: 22px;  
            background-color:var(--primary); 
            font-weight:bold; 
            padding-left:1%; 
            padding-right:1%;
        }
        .popup p
        {
            font-size:16px; 
            margin: 15px 12px; 
            color:#333;
        }
       .popup .close
        {
            position: absolute;
            margin-left: 6px;
            margin-top: 5px;
            border: none;
            background-color: black;
            color:white;
            padding: 5px;
            border-radius: 5px;
            padding-left: 8px;
            padding-right: 8px;
            cursor: pointer;
            top:0;
            left: 0;

        }
        .close:hover
        {
            background-color: red;
        }
        @media all and (max-width : 480px)
    {
        .popup{width: 70%;}

    }
    .desktopHide{display: none;}

.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 {
    border-radius: 10px;
    border-left: 4px solid var(--primary); background: #fff;
}

.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%;}



/*============Resoponsive Css Start ==================*/

@media screen and (max-width: 768px) {
    .mobileHide{display: none;}
    .desktopHide{display: block;}
    .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;}
    .yttc-banner-image-left,.yttc-banner-image-right {display: none}
    .banner-left-side{    width: 100%;    padding-bottom: 70px;}

}
@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;}
    .banner-big-text{font-size: 45px;}
    .headingBanner{font-size: 34px;}
    .banner-small-text{font-size: 16px;}
    .counter-image{width: 40px;}
    .counter-heading{font-weight: 400;}
    .special-offer{padding-top: 2em;}
    .contact-form{padding-top: 2em;}
    .map-left iframe{height: 250px;}
}
@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;}
    .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;}
    .yttc-banner-logos-wrap{    padding: 8px 4px 8px 18px;width: 25%;}
    .back-to-top{display: none;}
    .fix-social{left: 10px;}
    .fix-mail{left:unset; right: 10px; display: block;}
    .fix-social a{max-width: 60px;
    max-height: 60px;
    padding: 10px;}
    .counter-box{    width: 100%;}
    .counter-container{flex:none;}
    .mobileReview{display: block;}
    .desktopReview{display: none;}

}
@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 20px;}
    .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: 8px 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;}
    .banner-left-side{    margin-right: 0;}
    .banner-big-text{font-size: 38px;}
    .headingBanner{        font-size: 30px;}
    .theme-button{    font-size: 15px;padding: 8px 24px;}

}
@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;}
    .banner-big-text{font-size: 32px;}
    .headingBanner{font-size: 26px;}
    #yttc-banner{height:55vh;}
    .banner-left-side{padding-bottom: 0px;}


}
@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;}
    .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;}
    .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;}    
}
@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;}
    #yttc-banner{height:70vh;}

}
@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;}
}
@media screen and (max-width: 330px) {}

