  /* ===== GLOBAL ===== */
body {
  font-family: 'Poppins', sans-serif;
}
#main-heading-home-black{
  color:black;
}
#button-color-same{
  background-color: #ff6f61;
}


#divider-upper{
  padding:30px;
}
#divider-upper h1{
  line-height: normal;
}
/* ===== TOP BAR ===== */
.top-bar {
  background: #1b5e20;
  color: #fff;
  font-size: 13px;
}

.top-contact {
  list-style: none;
  padding: 6px 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.top-contact li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-contact a {
  color: #fff;
  text-decoration: none;
}

.top-contact i {
  color: #ffc107;
}

/* SOCIAL */
.top-social a {
  color: #fff;
  margin-left: 12px;
  font-size: 14px;
}

.top-social a:hover {
  color: #ffc107;
}

/* ===== NAVBAR ===== */
.logo-img {
  height: 52px;
}

.navbar .nav-link {
  font-weight: 500;
  padding: 8px 14px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #1b5e20;
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 6px;
  border: none;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
}
.hero-section-home-two{
   background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
  url('../assets/images/banner-home1.webp') center/cover;
  padding: 30px 0;
  color: #fff;
}
.hero-section-home-one{
   background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
  url('../assets/images/banner-home5.webp') center/cover;
  padding: 30px 0;
  color: #fff;
}
.hero-section-about-one{
   background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
  url('../assets/images/banner-home3.webp') center/cover;
  padding: 50px 0;
  color: #fff;
}
.hero-section-teacher-one{
   background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
  url('../assets/images/banner-home4.webp') center/cover;
  padding: 50px 0;
  color: #fff;
}
.hero-section {
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
  url('../assets/images/health.webp') center/cover;
  padding: 140px 0;
  color: #fff;
}




/*--------banner section-------*/
/* SECTION */
.yoga-video-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* VIDEO = PURE BACKGROUND */
.yoga-video-banner .banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* OVERLAY ABOVE VIDEO */
.yoga-video-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* EVERYTHING ELSE ABOVE VIDEO */
.yoga-video-banner .banner-content {
  position: relative;
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* TITLE */
.yoga-video-banner .banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TEXT */
.yoga-video-banner .banner-text {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  line-height: 1.9;
}

/* BUTTONS */
.btn-enroll {
  background: #d4af37;
  color: #000;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
}

/*/////Gallery///////*/
.visual-section{
  padding:100px 0;
  background:#fff7f5;
}
#gallery-section{
padding: 40px 0;
}
#gallery-heading{
font-size:24px;
}
.visual-title{
  text-align:center;
  font-family:'Playfair Display',serif;
  color:#ff6f61;
  font-size:34px;
}

.visual-sub{
  text-align:center;
  font-size:14px;
  color:#444;
}

.visual-divider{
  text-align:center;
  margin:15px 0 50px;
}

.visual-divider i{
  color:#ff6f61;
  font-size:20px;
}

.visual-divider span{
  display:block;
  width:70px;
  height:2px;
  background:#ff6f61;
  margin:8px auto;
}

.visual-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(330px,1fr));
  gap:18px;
}

.visual-item{
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
}

.visual-item img{
  width:100%;
  
  object-fit:cover;
  transition:.4s;
}

.visual-item:hover img{
  transform:scale(1.08);
}

.visual-modal img{
  max-height:80vh;
  object-fit:contain;
}



/*///////////Teacher Section//////////*/
.teacher-section {
  background: #f9f9f9;
}

.teacher-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: #222;
}

.teacher-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #666;
  margin-top: 5px;
}

.teacher-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.teacher-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.teacher-info {
  padding: 20px;
}

.teacher-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 6px;
  color: #222;
}

.teacher-role,
.teacher-exp {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.teacher-role i,
.teacher-exp i {
  color: #ff6f61;
  margin-right: 6px;
}

.teacher-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #ff6f61;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.teacher-btn:hover {
  background: #e85b50;
  color: #fff;
}



/*///////gooogle Review section //////////////*/
.review-section {
  background: #ffffff;
}

.review-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #222;
  letter-spacing: 1px;
}

.review-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #666;
  margin-top: 6px;
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
}

.google-rating img {
  width: 70px;
}

.rating-text {
  font-size: 18px;
  font-weight: 500;
}

.stars i {
  color: #fbbc04;
  font-size: 14px;
}

.review-count {
  font-size: 13px;
  color: #777;
}

.review-card {
  background: #f9f9f9;
  border-radius: 18px;
  padding: 25px;
  height: 100%;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-header img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.student-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  margin-bottom: 0;
  color: #222;
}

.student-country {
  font-size: 12px;
  color: #777;
}

.review-stars {
  margin: 8px 0;
}

.review-stars i {
  color: #fbbc04;
  font-size: 13px;
}

.review-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}









/*//////TTC course/////////*/
/* SECTION WRAPPER */
.ttc-section{padding:70px 0}
.ttc-title{font-family:'Playfair Display',serif;color:#ff6f61;text-align:center;margin-bottom:10px}
.ttc-divider{width:70px;height:3px;background:#ff6f61;margin:15px auto 25px}
.ttc-text{color:#111;font-size:16px;line-height:1.9}

/* ICON STRIP */
.ttc-icons{background:#f7f7f7;padding:25px 0}
.ttc-icon{text-align:center}
.ttc-icon i{color:#ff6f61;font-size:26px;margin-bottom:6px}

/* GALLERY */
.ttc-gallery img{width:100%;border-radius:6px;cursor:pointer}
.ttc-main-img{border:4px solid #ff6f61;border-radius:10px}
.ttc-thumb{transition:.3s}
.ttc-thumb:hover{opacity:1}

/* DAILY SCHEDULE */
.ttc-schedule{background:#fff;border-left:4px solid #ff6f61;padding:12px 18px;margin-bottom:14px;text-align: center;}
.ttc-quote{background:#fafafa;border:1px solid #eee;padding:20px;border-radius:6px}

/* RULES */
.ttc-rule{margin-bottom:12px}

/* REVIEWS */
.ttc-review{border:1px solid #eee;border-radius:8px;padding:15px;text-align:center}
.ttc-review img{width:80px;border-radius:50%;margin-bottom:10px}

/* TIMELINE */
.course-timeline-section {
  padding: 70px 0;
  background: #ffffff;
}

.timeline-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #ff6f61;
  margin-bottom: 10px;
}

.timeline-divider {
  width: 60px;
  height: 2px;
  background: #ff6f61;
  margin: 0 auto 50px;
}

.timeline-row {
  position: relative;
}

.timeline-col {
  position: relative;
  margin-bottom: 30px;
}

.timeline-card {
  border: 1px solid #e6e6e6;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  background: #fff;
  transition: all 0.3s ease;
}

.timeline-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.timeline-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #ff6f61;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-icon i {
  color: #ffffff;
  font-size: 26px;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

.timeline-text {
  font-size: 14px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 12px;
}

.ttc2025 *{box-sizing:border-box}
.ttc2025 section{padding:40px 0}
.ttc2025{font-family:'Poppins',sans-serif}

/* HEADINGS */
.ttc-title{
  font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #ff6f61;
  text-align:center;
  margin-bottom:10px
}
.ttc-subtitle{
  text-align:center;
  font-size:14px;
  color:#666;
  margin-bottom:12px
}
.yu-heading-divider{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  margin-top:10px;
  margin-bottom: 20px;
}

.yu-heading-divider i{
  color:#ff6f61;
  font-size:20px;
}

.yu-heading-divider span{
  width:70px;
  height:2px;
  background:#ff6f61;
}

/* HERO */
.hero{background:#faf7f4}
.hero p{line-height:1.9;color:#333}

/* BUTTON */
.ttc-btn{
  background:#ff6f61;
  color:#fff;
  border:none;
  padding:12px 34px;
  border-radius:30px;
  font-size:14px
}

/* FEATURES */
.feature{
  padding:40px;
  background:#fff;
  text-align:center;
  height:100%
}
.feature i{
  font-size:34px;
  color:#ff6f61;
  margin-bottom:15px
}

/* SCHEDULE */
.schedule{background:#f6f6f6}
.schedule-row{
  display:flex;
  border-bottom:1px solid #ddd
}
.schedule-time{
  width:30%;
  background:#ff6f61;
  color:#fff;
  padding:14px;
  font-weight:500;
  text-align: center;
}
.schedule-activity{
  width:70%;
  padding:14px;
  background:#fff;
  text-align: center;
}

/* INCLUDED */
.box{
  background:#fff;
  padding:35px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,.08)
}
.box li{
  list-style:none;
  margin-bottom:10px;
  font-size:14px
}

/* DATES */
.dates{background:#faf7f4}
.date-item{
  padding:12px 0;
  border-bottom:1px dashed #ccc;
  font-size:14px
}

/* RULES */
.rules li{
  font-size:14px;
  margin-bottom:10px;
  line-height:1.8
}

/* VIDEO */
.video iframe{
  width:100%;
  height:220px;
  border-radius:12px
}
/* INCLUDED / NOT INCLUDED SECTION */
.ttc2025-included{
  padding:90px 0;
  background:#f8f8f8;
  font-family:'Poppins',sans-serif
}

.included-box,
.not-included-box{
  background:#fff;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  margin-bottom:40px;
  overflow:hidden
}

/* HEADERS */
.included-header,
.not-included-header{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 24px;
  font-weight:600;
  font-size:16px;
  color:#fff
}

.included-header{
  background:linear-gradient(90deg,#ff6f61,#ff9472)
}
.not-included-header{
  background:linear-gradient(90deg,#444,#777)
}

.included-header i,
.not-included-header i{
  font-size:20px
}

/* CONTENT */
.included-content,
.not-included-content{
  padding:30px 35px
}

.included-content ul,
.not-included-content ul{
  padding:0;
  margin:0
}

.included-content li,
.not-included-content li{
  list-style:none;
  font-size:14px;
  margin-bottom:12px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#333
}

/* ICON COLORS */
.included-content i{
  color:#ff6f61;
  margin-top:3px
}
.not-included-content i{
  color:#999;
  margin-top:3px
}


.yu-global-schedule{
  padding:120px 0;
  background:#fff7f5
}

/* Heading */
.yu-schedule-head h5{
  font-family:'Playfair Display',serif;
  font-size:34px;
  color:#ff6f61
}

.yu-schedule-head span{
  font-size:14px;
  letter-spacing:1px;
  color:#333
}

.yu-icon-line{
  margin:12px auto 50px;
  font-size:18px;
  color:#ff6f61
}

/* Pricing Box */
.yu-pricing-box{
  background:#fff;
  padding:40px;
  border-radius:22px;
  box-shadow:0 18px 50px rgba(0,0,0,.12);
  margin-bottom:70px
}

.yu-pricing-box h6{
  font-size:14px;
  letter-spacing:1px;
  color:#555
}

.yu-days{
  font-size:18px;
  font-weight:600;
  color:#000;
  margin-bottom:30px
}

.yu-price-card{
  border:1px solid #ff6f61;
  border-radius:14px;
  padding:18px;
  margin-bottom:15px
}

.yu-price-card small{
  display:block;
  font-size:13px;
  color:#555
}

.yu-price-card strong{
  font-size:20px;
  color:#ff6f61
}

.yu-enroll-main{
  display:inline-block;
  margin-top:25px;
  padding:12px 36px;
  background:#ff6f61;
  color:#fff;
  border-radius:30px;
  font-size:15px;
  text-decoration:none
}

/* Month Grid */
.yu-month-grid{
  row-gap:25px
}

.yu-month-item{
  background:#fff;
  padding:18px;
  text-align:center;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08)
}

.yu-month-item h6{
  font-size:16px;
  color:#ff6f61;
  margin-bottom:6px
}

.yu-month-item p{
  font-size:14px;
  color:#000
}

.yu-month-item i{
  color:#ff6f61;
  margin-right:6px
}




.yu-course-schedule{
  padding:110px 0;
  background:#fff7f5
}

/* Heading */
.yu-heading h5{
  font-family:'Playfair Display',serif;
  font-size:34px;
  color:#ff6f61
}

.yu-sub{
  font-size:14px;
  color:#333
}

.yu-divider{
  margin:12px auto 60px;
  color:#ff6f61;
  font-size:18px
}

/* Month List */
.yu-month-list{
  background:#fff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.08)
}

.yu-month-item{
  padding:14px 0;
  border-bottom:1px solid #eee
}

.yu-month-item:last-child{
  border-bottom:none
}

.yu-month-item strong{
  display:block;
  color:#ff6f61;
  font-size:16px;
  margin-bottom:4px
}

.yu-month-item span{
  display:block;
  font-size:13px;
  color:#000;
  margin-bottom:2px
}

.yu-month-item i{
  color:#ff6f61;
  margin-right:6px
}

/* Course Info */
.yu-course-info{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 18px 50px rgba(0,0,0,.12);
  height:100%
}

.yu-duration{
  display:block;
  font-size:14px;
  letter-spacing:1px;
  color:#555;
  margin-bottom:10px
}

.yu-course-info h5{
  font-family:'Playfair Display',serif;
  font-size:30px;
  color:#ff6f61;
  margin-bottom:30px
}

.yu-fee{
  display:flex;
  justify-content:space-between;
  padding:10px 0;
  border-bottom:1px dashed #ddd
}

.yu-fee label{
  font-size:14px;
  color:#000
}

.yu-fee strong{
  font-size:16px;
  color:#ff6f61
}

.yu-no-stay strong{
  color:#000
}

/* Button */
.yu-enroll-btn{
  display:inline-block;
  margin-top:30px;
  padding:14px 38px;
  background:#ff6f61;
  color:#fff;
  border-radius:30px;
  font-size:15px;
  text-decoration:none
}






.yu-schedule-section{
  padding:120px 0;
  background:#fff7f5
}

/* Heading */
.yu-schedule-heading h5{
  font-family:'Playfair Display',serif;
  font-size:34px;
  color:#ff6f61;
  margin-bottom:6px
}

.yu-schedule-sub{
  display:block;
  font-size:14px;
  letter-spacing:1px;
  color:#333
}

.yu-schedule-divider{
  margin:15px auto 60px;
  color:#ff6f61;
  font-size:18px
}

/* Schedule Box */
.yu-schedule-box{
  background:#fff;
  border-radius:18px;
  padding:30px;
  text-align:center;
  box-shadow:0 15px 45px rgba(0,0,0,.1);
  height:100%
}

.yu-month{
  font-size:20px;
  font-weight:600;
  color:#ff6f61;
  margin-bottom:12px
}

.yu-date{
  font-size:14px;
  color:#000;
  margin-bottom:10px
}

.yu-date i{
  color:#ff6f61;
  margin-right:6px
}

.yu-days{
  font-size:14px;
  color:#555;
  margin-bottom:18px
}

.yu-days span{
  font-weight:600;
  color:#000
}

/* Pricing */
.yu-price-wrap{
  display:flex;
  justify-content:space-between;
  gap:15px;
  margin-bottom:22px
}

.yu-price{
  border:1px solid #ff6f61;
  border-radius:12px;
  padding:12px;
  width:100%
}

.yu-price small{
  display:block;
  font-size:12px;
  color:#555
}

.yu-price strong{
  display:block;
  font-size:16px;
  color:#ff6f61
}

/* Button */
.yu-enroll-btn{
  display:inline-block;
  padding:12px 32px;
  background:#ff6f61;
  color:#fff;
  border-radius:30px;
  font-size:14px;
  text-decoration:none;
  transition:.3s
}

.yu-enroll-btn:hover{
  background:#e65b50;
  color:#fff
}




/*/////////divider box////////*/
.updated-healing-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 10px 20px;
  background: #f7f7f7;
}

/* Main Box */
.updated-healing-box {
  position: relative;
  height: 200px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.updated-healing-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.28);
}

/* Overlay with perfect center alignment */
.updated-healing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.65)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 25px;
}

/* Heading */
.updated-healing-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Paragraph */
.updated-healing-overlay p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #f1f1f1;
  margin-bottom: 22px;
  line-height: 1.7;
}

/* Button */
.updated-healing-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff3b3b, #ff6f61);
  box-shadow: 0 10px 25px rgba(255, 79, 79, 0.5);
  transition: all 0.3s ease;
}

.updated-healing-btn:hover {
  background: linear-gradient(135deg, #ff6f61, #ff3b3b);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(255, 79, 79, 0.7);
}








/* SECTION */
.offline-yoga-courses {
  background: #f8f9fa;
}

/* Heading */
.offline-yoga-courses .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 600;
}

.offline-yoga-courses .section-title i {
  color: #090908;
  margin-right: 8px;
}

.section-subtitle {
  max-width: 650px;
  margin: 10px auto 0;
  font-size: 0.95rem;
  color: #555;
}

/* Card */
.course-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  position: relative;
}

.course-card:hover {
  transform: translateY(-6px);
}

/* Image */
.course-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* RYS Badge */
.rys-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 55px;
  background: #fff;
  padding: 5px;
  border-radius: 50%;
}

/* Body */
.course-body {
  padding: 20px;
}

.course-title {
  font-weight: 600;
  margin-bottom: 15px;
}

/* Info */
.course-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-info li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.course-info i {
  color:  #ff6f61;
  margin-right: 6px;
}

/* Footer */
.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.price {
  font-weight: 600;
  font-size: 1rem;
}

/* Enroll Button – Primary Color */
.btn-enroll-course {
  background-color: #ff6f61;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 7px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover Effect */
.btn-enroll-course:hover {
  background-color: #e85c50; /* slightly darker shade */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 111, 97, 0.35);
}













.section {
  padding: 80px 0;
}

.icon-list {
  list-style: none;
  padding: 0;
}

.icon-list li {
  margin-bottom: 10px;
}

.icon-list i {
  color: #f4b400;
  margin-right: 8px;
}

.bg-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
}

.bg-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.bg-overlay .container {
  position: relative;
}

.food-section {
  background-image:
  url('../assets/images/health.webp');
}

.detail-list {
  list-style: none;
  padding: 0;
}

.detail-list li {
  margin-bottom: 8px;
}



/* Toggle input */
.popup-toggle {
  display: none;
}

/* Overlay hidden by default */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;

  animation: popupShow 0.4s ease forwards;
  animation-delay: 3s;
}

/* Popup box */
.popup-box {
  background: #fff;
  width: 90%;
  max-width: 600px;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  transform: scale(0.9);
}

/* Close button */
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 18px;
  color: #333;
  cursor: pointer;
}

/* Icon */
.popup-icon {
  font-size: 42px;
  color: #f4c430;
  margin-bottom: 10px;
}

/* Text */
.popup-box span {
  color: #1b6f5a;
  font-weight: 600;
}

.popup-small {
  font-size: 13px;
  color: #777;
}

/* Show popup after delay */
@keyframes popupShow {
  to {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Close popup when checkbox checked */
.popup-toggle:checked + .popup-overlay {
  display: none;
}

/* Mobile */




.home-yoga-section {
  background-color: #ffffff;
}

.section-tag {
  font-size: 12px;
  letter-spacing: 1px;
  color: #6b6965;
  font-weight: 600;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1f3d3a;
  line-height: 1.2;
}

.title-underline {
  width: 60px;
  height: 4px;
  background-color: #ff6f61;
  border-radius: 2px;
}

.home-yoga-section p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  object-fit: cover;
}

.testimonial-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 15px 18px;
  max-width: 75%;
  border-radius: 12px;
}

.testimonial-box p {
  font-size: 14px;
  margin-bottom: 5px;
}

.testimonial-box span {
  font-size: 12px;
  opacity: 0.85;
}

.section-title {
  font-size: 2rem;   /* makes h5 look like h1 */
  font-weight: 700;
  color: #ff6f61;
  line-height: 1.2;
}




















/* ===== MODERN FOOTER ===== */
.footer-modern {
  background: linear-gradient(135deg, #1b2f2a, #0f1c19);
  color: #dcdcdc;
  padding: 60px 0 20px;
  font-size: 14px;
}

/* Cards */
.footer-card {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 22px 22px;
  height: 100%;
}

/* Titles */
.footer-title {
  color: #f4c430;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-title i {
  margin-right: 8px;
}

/* Text */
.footer-modern p {
  margin: 0;
  line-height: 1.7;
}

/* Lists */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-list i {
  color: #f4c430;
  font-size: 13px;
}

.footer-list a {
  color: #dcdcdc;
  text-decoration: none;
}

.footer-list a:hover {
  color: #f4c430;
}

/* Contact strip */
.footer-contact {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
  padding-top: 20px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: #dcdcdc;
  text-decoration: none;
}

.footer-contact i {
  color: #f4c430;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #bcbcbc;
}
/* Brand logo */
.footer-logo {
  max-width: 160px;
  height: auto;
  background-color: white;
    border-radius: 20px;
    padding: 5px;
}


/* Brand card */
.brand-card {
  text-align: left;
}

/* Tagline */
.footer-tagline {
  color: #f4c430;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Description */
.footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: #d0d0d0;
}

/* Fixed Footer CTA */

.fixed-footer-cta {
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
  z-index: 9998;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed-footer-cta.hide {
  opacity: 0;
  visibility: hidden;
}

/* Enroll Button */
.btn-enroll-fixed {
  background-color: #ff6f61;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 22px;
  transition: 0.3s ease;
}

.btn-enroll-fixed:hover {
  background-color: #e85c50;
  box-shadow: 0 8px 20px rgba(255, 111, 97, 0.4);
}


/* WhatsApp Button */
.btn-whatsapp-fixed {
  background: #25d366;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 18px;
}

/* Modal Styling */
.modal-content {
  border-radius: 12px;
}

.modal-header {
  background: #ff6f61;
  color: #fff;
}

/* Submit Buttons */
.btn-enroll-submit {
  background: #ff6f61;
  color: #000;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 30px;
}

.btn-pay-now {
  background: #000;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
}

/* Form Icons */
.form-label i {
  color: #ff6f61;
  margin-right: 6px;
}

















/* MOBILE */
@media (max-width: 991px) {
  .top-bar {
    text-align: center;
  }

  .top-contact {
    justify-content: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 575px) {
  .footer-card {
    padding: 18px;
  }

  .footer-title {
    font-size: 15px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}
/* Mobile alignment */
@media (max-width: 575px) {
  .brand-card {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .popup-box {
    padding: 24px 20px;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }

  .testimonial-box {
    max-width: 90%;
  }
}
/* MOBILE */
@media (max-width: 767px) {
  .yoga-video-banner .banner-title {
    font-size: 1.8rem;
  }
}
/* Responsive */
@media(max-width:768px){
  .yu-course-info{
    margin-top:40px
  }
}


/* Mobile */
@media(max-width:768px){
  .yu-pricing-box{
    padding:30px
  }
}

/* Mobile */
@media(max-width:768px){
  .yu-price-wrap{
    flex-direction:column
  }
}

/* MOBILE */
@media(max-width:768px){
  .included-content,
  .not-included-content{
    padding:25px
  }
}

/* RESPONSIVE */
@media(max-width:768px){
  .schedule-row{flex-direction:column}
  .schedule-time,.schedule-activity{width:100%;text-align:center}
}
/* Responsive */
@media (max-width: 768px) {
  .updated-healing-box {
    height: 340px;
  }

  .updated-healing-overlay h3 {
    font-size: 21px;
  }

  .updated-healing-overlay p {
    font-size: 14px;
  }
  .teacher-img img {
   height: auto;
}
.yoga-video-banner {
   
    min-height: 434px;
}
.min-vh-100 {
    min-height: 60vh !important;
}
}