@charset "UTF-8";
/* ======================================================
   GLOBAL IMPORTS
====================================================== */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");
/* ======================================================
   THEME VARIABLES
====================================================== */
:root {
  /* Primary colors */
  --primary-color: #9a563a;
  --primary-dark: #6e3b27;
  /* Secondary */
  --secondary-color: #fde5d8;
  /* Background */
  --body-bg: #ffffff;
  --bg-light: #f8f9fa;
  /* Text */
  --text-dark: #121f38;
  --text-light: #777777;
  --text-color: #af2312;
  /* Animation */
  --transition: all 0.3s ease;
}

/* ======================================================
   GLOBAL RESET
====================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: clip; /* modern & better */
}

body {
  font-family: "Quicksand", sans-serif;
}

/* ======================================================
   TYPOGRAPHY
====================================================== */
.philosopher-regular {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* =========================================
   SECTION SYSTEM (Reusable)
========================================= */
.section {
  padding: 80px 0;
  position: relative;
}

/* Light Section */
.section-light {
  background: var(--bg-light);
}

/* Dark Section */
.section-dark {
  background-color: #f1f3f5;
}

.section-bg-gradient {
  background-image: linear-gradient(to bottom, transparent 0%, rgba(252, 242, 238, 0.8) 20%, rgba(0, 0, 0, 0) 100%);
}

.mega-hover {
  position: relative;
  overflow: hidden;
}

.mega-hover img {
  transition: all 2s ease;
  transform: scale(1);
}

.mega-hover:after,
.mega-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3;
  transform: rotate(5deg);
}

.mega-hover:before {
  top: -10%;
  right: 51%;
  bottom: -10%;
  left: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.mega-hover:after {
  top: 50%;
  right: -10%;
  bottom: 50%;
  left: -10%;
  background: rgba(255, 255, 255, 0.6);
}

.mega-hover:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 900ms linear;
}

.mega-hover:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 900ms linear;
}

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

/* =========================================
   SECTION HEADINGS
========================================= */
.section-subtitle {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.inner-text {
  color: var(--body-bg);
  background-color: var(--primary-color);
  padding: 5px 8px;
  border-radius: 4px;
  display: inline-block;
  font-size: 16px;
}

.section-title {
  font-family: "Philosopher", sans-serif;
  font-size: 40px;
  color: var(--text-dark);
  line-height: 1.3;
}

/* =========================================
   THEME TEXT COLOR
========================================= */
.text-theme {
  color: var(--text-color);
  text-decoration: none;
}

.shape-flower {
  position: absolute;
  left: 2px;
  top: 12%;
  z-index: 2;
}
.shape-flower img {
  width: 100%;
  height: auto;
  opacity: 0.8;
}

/* ======================================================
   BUTTONS
====================================================== */
.primary-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  transition: var(--transition);
  display: inline-block;
}
.primary-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

.secondary-btn {
  background: transparent;
  color: var(--primary-color);
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  transition: var(--transition);
  display: inline-block;
}
.secondary-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.jump-reverse-img,
.jump-img,
.jump-reverse,
.jump {
  animation: jumpping var(--duration, 6s) infinite linear;
}

.jump-reverse-img,
.jump-img {
  --duration: 5s;
}

.jump-reverse-img,
.jump-reverse {
  --jump-y: -20px;
}

@keyframes jumpping {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
  }
}
/* ========================================
   HERO GALLERY
======================================== */
.hero-gallery {
  position: relative;
}
.hero-gallery .container-fluid {
  padding: 0;
}
.hero-gallery .hero-gallery .swiper-wrapper,
.hero-gallery .hero-gallery .swiper-slide {
  height: 100%;
}
.hero-gallery {
  /* slider */
}
.hero-gallery .hero-gallery-slider {
  position: relative;
  height: 75vh;
  overflow: hidden;
}
.hero-gallery {
  /* slide */
}
.hero-gallery .hero-gallery__item {
  position: relative;
  height: 75vh;
}
.hero-gallery {
  /* image */
}
.hero-gallery .hero-gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.hero-gallery {
  /* circle button */
}
.hero-gallery .hero-gallery__btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  z-index: 5;
}
.hero-gallery .hero-gallery__btn:hover {
  transform: translateY(-4px);
}
.hero-gallery {
  /* arrows */
  /* arrows */
}
.hero-gallery .hero-gallery__prev,
.hero-gallery .hero-gallery__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  /* subtle look */
  opacity: 0.35;
  transition: all 0.3s ease;
}
.hero-gallery {
  /* left arrow */
}
.hero-gallery .hero-gallery__prev {
  left: 25px;
}
.hero-gallery {
  /* right arrow */
}
.hero-gallery .hero-gallery__next {
  right: 25px;
}
.hero-gallery {
  /* hover effect */
}
.hero-gallery .hero-gallery__prev:hover,
.hero-gallery .hero-gallery__next:hover {
  opacity: 1;
}

/* ===================================
YOGA FEATURE CARDS
=================================== */
.yoga-feature-section {
  padding: 70px 0;
  background: var(--bg-light);
}
.yoga-feature-section .yoga-feature-slider {
  overflow: hidden;
}
.yoga-feature-section .swiper-slide {
  height: auto;
}
.yoga-feature-section .yoga-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #efe5e1;
  padding: 0 35px;
  border-radius: 12px;
  min-height: 250px;
  height: 100%;
  transition: var(--transition);
  overflow: hidden;
}
.yoga-feature-section .yoga-card:hover {
  background: var(--secondary-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.yoga-feature-section .yoga-card-content {
  max-width: 65%;
}
.yoga-feature-section .yoga-card-content h4 {
  font-family: "Philosopher", sans-serif;
  font-size: 25px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 30px;
}
.yoga-feature-section .yoga-card-content h4 span {
  color: var(--text-color);
}
.yoga-feature-section .yoga-card-content p {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}
.yoga-feature-section .yoga-card-icon img {
  width: 130px;
  transition: 0.3s;
}
.yoga-feature-section .yoga-card:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}

@media (max-width: 1199.98px) {
  .yoga-feature-section .yoga-card {
    padding: 20px 24px;
    min-height: 220px;
  }
  .yoga-feature-section .yoga-card-content h4 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .yoga-feature-section .yoga-card-content p {
    font-size: 15px;
  }
  .yoga-feature-section .yoga-card-icon img {
    width: 95px;
  }
}
@media (max-width: 767.98px) {
  .yoga-feature-section {
    padding: 40px 0;
  }
  .yoga-feature-section .yoga-card {
    padding: 18px 16px;
    min-height: 190px;
  }
  .yoga-feature-section .yoga-card-content {
    max-width: 68%;
  }
  .yoga-feature-section .yoga-card-content h4 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .yoga-feature-section .yoga-card-content p {
    font-size: 14px;
  }
  .yoga-feature-section .yoga-card-icon img {
    width: 72px;
  }
}
@media (max-width: 575.98px) {
  .yoga-feature-section .yoga-card {
    padding: 16px 14px;
  }
  .yoga-feature-section .yoga-card-content h4 {
    font-size: 15px;
  }
  .yoga-feature-section .yoga-card-content p {
    font-size: 13px;
  }
  .yoga-feature-section .yoga-card-icon img {
    width: 62px;
  }
}
.para {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.section-header,
.yoga-content {
  position: relative;
  z-index: 2;
}

/* =================================
   YOGA GALLERY SECTION
================================= */
.yoga-gallery-section {
  padding: 80px 0;
  background: #f5f5f5;
}
.yoga-gallery-section .container-fluid {
  max-width: 1600px;
  margin: auto;
  padding: 0;
}
.yoga-gallery-section .gallery-slider {
  overflow: visible !important;
}
.yoga-gallery-section .gallery-slider .slick-track {
  margin-left: 0px;
  margin-right: 0px;
}
.yoga-gallery-section .gallery-slider .gallery-item {
  position: relative;
  margin-bottom: 50px;
  width: 100%;
  max-width: 653px;
  padding: 0;
}
.yoga-gallery-section .gallery-slider .gallery-item img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}
.yoga-gallery-section .slick-slide {
  transform: scale(0.98) translateY(0);
  transition: all 0.4s ease;
  padding: 0 20px;
}
.yoga-gallery-section .slick-center {
  opacity: 1;
  transform: scale(1) translateY(-20px);
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .yoga-gallery-section .slick-slide {
    transform: scale(0.97);
  }
}
@media (max-width: 768px) {
  .yoga-gallery-section .slick-slide {
    transform: scale(0.99);
    padding: 0 10px;
  }
  .yoga-gallery-section .slick-track {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.yoga-gallery-section .circle-btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 100px;
  height: 100px;
  background: #9a563a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.yoga-gallery-section .slick-center .circle-btn {
  opacity: 1;
  visibility: visible;
}
.yoga-gallery-section .btn-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #9a563a;
  position: relative;
  z-index: 2;
}
.yoga-gallery-section .btn-text {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.yoga-gallery-section .btn-text svg {
  width: 120px;
  height: 120px;
  animation: rotateText 12s linear infinite;
  transform-origin: center;
}
.yoga-gallery-section .btn-text text {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
  fill: #fff;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 0.3;
}
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 20%;
  margin: 30px auto;
}
.gallery-nav button {
  border: none;
  padding: 0;
  line-height: 1;
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22rem;
  color: #9a563a;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.gallery-nav button:hover {
  opacity: 0.7;
}

/* ===== FIX: LEFT-RIGHT TOO FAR ISSUE ===== */
/* Tablet */
@media (max-width: 992px) {
  .gallery-nav {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 20px;
    justify-content: space-between;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .gallery-nav {
    max-width: 500px;
    margin: 20px auto;
    padding: 0 15px;
    justify-content: space-between;
  }
  .gallery-nav button {
    font-size: 15px;
  }
}
/* Small Mobile */
@media (max-width: 480px) {
  .gallery-nav {
    max-width: 250px;
    margin: 20px auto;
    padding: 0 10px;
  }
  .gallery-nav button {
    font-size: 15px;
    letter-spacing: 0.1rem;
  }
}
/* =================================
YOGA TTC SECTION
================================= */
.yoga-ttc-section .ttc-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.yoga-ttc-section .ttc-image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}
.yoga-ttc-section {
  /* play button */
}
.yoga-ttc-section .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}
.yoga-ttc-section .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.yoga-certification-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(253, 229, 216, 0.35) 24%, rgba(255, 255, 255, 0) 100%);
}
.yoga-certification-section .cert-content {
  position: relative;
  z-index: 2;
}
.yoga-certification-section .sec-subtext {
  display: inline-block;
  margin-top: 4px;
  padding: 8px 18px;
  background: #f8e2d6;
  color: var(--primary-color);
  letter-spacing: 3px;
}
.yoga-certification-section .para {
  max-width: 760px;
  margin-bottom: 28px;
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.8;
}
.yoga-certification-section .cert-image-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 42px 28px 34px;
}
.yoga-certification-section .cert-circle-text {
  position: absolute;
  top: -8px;
  left: 25%;
  width: 75%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.yoga-certification-section .cert-circle-text svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.yoga-certification-section .cert-circle-text text {
  fill: #1c2944;
  font-family: "Philosopher", sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 10px;
  text-transform: uppercase;
}
.yoga-certification-section .cert-main-img {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 999px;
}
.yoga-certification-section .cert-main-img img {
  width: 100%;
  display: block;
  border-radius: inherit;
}
.yoga-certification-section .cert-line {
  position: absolute;
  left: 22px;
  right: 20px;
  bottom: -12px;
  z-index: 2;
}
.yoga-certification-section .cert-line svg {
  width: 100%;
  height: auto;
  fill: none;
  transform: rotateX(180deg);
}
.yoga-certification-section .cert-line path {
  fill: var(--primary-color);
}
.yoga-certification-section .cert-floating-logo {
  position: absolute;
  left: -36px;
  bottom: 15px;
  z-index: 1;
  opacity: 0.45;
}
.yoga-certification-section .cert-floating-logo img {
  width: 100%;
  height: auto;
}
.yoga-certification-section .certification-features {
  position: relative;
  margin-top: 12px;
}
.yoga-certification-section .cert-bg-shape {
  position: absolute;
  inset: 50% 0 auto 50%;
  transform: translate(-50%, -38%);
  z-index: 0;
  opacity: 0.14;
  pointer-events: none;
}
.yoga-certification-section .cert-bg-shape img {
  width: 280px;
  height: auto;
}
.yoga-certification-section .mandala-bg {
  position: absolute;
  top: 30%;
  left: 72%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 1; /* light background feel */
  pointer-events: none;
}
.yoga-certification-section .mandala-bg img {
  width: 65%;
  max-width: 60%;
}
.yoga-certification-section .cert-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  min-height: 340px;
  margin-top: 28px;
  padding: 0 18px 16px;
  text-align: center;
  background: #fff;
  outline: 1px dashed rgba(154, 86, 58, 0.45);
  outline-offset: -22px;
  box-shadow: 0 10px 28px rgba(18, 31, 56, 0.08);
  transition: all 0.35s ease;
}
.yoga-certification-section .cert-card:hover {
  transform: translateY(-6px);
  background: var(--primary-color);
  outline-color: #fff;
  box-shadow: 0 18px 36px rgba(18, 31, 56, 0.14);
}
.yoga-certification-section .cert-card:hover .cert-title {
  color: #fff;
}
.yoga-certification-section .cert-card:hover .cert-icon {
  background: #fff;
  box-shadow: 0 0 0 10px var(--primary-color);
}
.yoga-certification-section .cert-card:hover .cert-icon::before {
  border-color: #fff;
}
.yoga-certification-section .cert-icon {
  width: 92px;
  height: 92px;
  margin: -40px auto 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 10px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.35s ease;
}
.yoga-certification-section .cert-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed var(--primary-color);
  border-radius: 50%;
  animation: spin 20s linear infinite;
  transition: all 0.35s ease;
}
.yoga-certification-section .cert-icon img {
  max-width: 78px;
  height: auto;
  position: relative;
  z-index: 1;
}
.yoga-certification-section .cert-title {
  margin-bottom: 16px;
  color: #1c2944;
  font-family: "Philosopher", sans-serif;
  font-size: 30px;
  line-height: 1.2;
  transition: all 0.35s ease;
}
.yoga-certification-section .cert-certificate {
  width: 100%;
  max-width: 270px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .yoga-certification-section .cert-image-wrapper {
    max-width: 450px;
  }
  .yoga-certification-section .cert-main-img {
    max-width: 325px;
  }
  .yoga-certification-section .cert-card {
    max-width: 300px;
    min-height: 320px;
  }
  .yoga-certification-section .cert-title {
    font-size: 26px;
  }
  .yoga-certification-section .cert-certificate {
    max-width: 235px;
  }
}
@media (max-width: 991px) {
  .yoga-certification-section .cert-image-wrapper {
    margin-bottom: 24px;
  }
  .yoga-certification-section .cert-content {
    text-align: center;
  }
  .yoga-certification-section .sec-subtext {
    margin-left: 0;
    margin-top: 8px;
  }
  .yoga-certification-section .cert-bg-shape {
    transform: translate(-50%, -28%);
  }
}
@media (max-width: 767px) {
  .yoga-certification-section .cert-image-wrapper {
    max-width: 350px;
    padding: 34px 16px 30px;
  }
  .yoga-certification-section .cert-main-img {
    max-width: 270px;
  }
  .yoga-certification-section .cert-floating-logo,
  .yoga-certification-section .cert-bg-shape {
    display: none;
  }
  .yoga-certification-section .para {
    font-size: 15px;
    line-height: 1.7;
  }
  .yoga-certification-section .cert-card {
    max-width: 290px;
    min-height: auto;
    padding: 0 16px 16px;
  }
  .yoga-certification-section .cert-title {
    font-size: 24px;
  }
  .yoga-certification-section .cert-certificate {
    max-width: 220px;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* =========================================
YOGA COURSES SECTION
========================================= */
.yoga-courses-section .course-image img {
  width: 100%;
  border-radius: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.yoga-courses-section .course-title {
  font-family: "Philosopher", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.yoga-courses-section .course-heading {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  color: var(--text-dark);
}
.yoga-courses-section .course-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.yoga-courses-section .course-list li {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text-dark);
  position: relative;
  padding-left: 18px;
}
.yoga-courses-section .course-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}
.yoga-courses-section .course-price {
  display: flex;
  gap: 30px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.yoga-courses-section .course-price .price-item span {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}
.yoga-courses-section .course-price .price-item small {
  display: block;
  color: var(--text-light);
}
.yoga-courses-section .course-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}
.yoga-courses-section .course-divider {
  width: 100%;
  height: 1px;
  background: #eee;
  margin: 70px 0;
}

.divider-style1 {
  position: relative;
  margin: 50px 0;
}

/* horizontal gradient line */
.divider-style1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 1.5px;
  margin-top: -1px;
  width: 100%;
  z-index: 1;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0, var(--primary-color) 50%, rgba(255, 255, 255, 0) 100%);
}

/* center circle */
.divider-icon {
  width: 60px;
  height: 60px;
  background-color: #9a563a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* icon */
.divider-icon img {
  width: 28px;
}

/* =====================================
LEARN SECTION (GLOBAL TITLE SAFE)
===================================== */
.learn-section {
  position: relative;
  padding: 100px 0;
  /* ======================
  CARD
  ====================== */
}
.learn-section .learn-card {
  height: 100%;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 32px 22px;
  background: radial-gradient(circle at top right, rgba(253, 229, 216, 0.7), transparent 32%), #fff;
  border-top: 3px solid var(--primary-color);
  transition: 0.35s ease;
}
.learn-section .learn-card:hover {
  transform: translateY(-10px);
  background: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.learn-section .learn-card:hover .learn-title,
.learn-section .learn-card:hover .para {
  color: #fff;
}
.learn-section .learn-card:hover .learn-icon img {
  transform: rotate(10deg) scale(1.1);
  filter: brightness(0) invert(1);
}
.learn-section {
  /* ======================
  ICON (NO CIRCLE)
  ====================== */
}
.learn-section .learn-icon {
  margin-bottom: 20px;
}
.learn-section .learn-icon img {
  width: 60px;
  transition: 0.4s ease;
}
.learn-section {
  /* ======================
  TEXT (CARD ONLY)
  ====================== */
}
.learn-section .learn-title {
  font-size: 22px;
  font-family: "Philosopher", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 14px;
  transition: 0.3s;
}
.learn-section {
  /* ======================
  GRID GAP FIX
  ====================== */
}
.learn-section .row {
  margin-top: 10px;
}

.yoga-retreat-section {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to bottom, transparent 0%, rgba(252, 242, 238, 0.8) 20%, rgba(0, 0, 0, 0) 100%);
}
.yoga-retreat-section .gx-60 {
  --bs-gutter-x: 60px;
}
.yoga-retreat-section .container {
  position: relative;
  z-index: 2;
}
.yoga-retreat-section .row {
  display: flex;
  align-items: stretch;
}
.yoga-retreat-section .col-lg-6 {
  display: flex;
}
.yoga-retreat-section .retreat-image-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  padding-left: 32px;
  width: 100%;
}
.yoga-retreat-section .retreat-img {
  position: relative;
}
.yoga-retreat-section .retreat-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.yoga-retreat-section .retreat-img-back {
  margin-top: 100px;
  margin-right: -109px;
  max-width: 341px;
  width: 100%;
  z-index: 1;
}
.yoga-retreat-section .retreat-img-front {
  max-width: 520px;
  width: 100%;
  z-index: 2;
  margin-left: 12px;
}
.yoga-retreat-section .retreat-img-shape {
  position: absolute;
  left: -18px;
  bottom: -122px;
  width: 80%;
  z-index: 0;
  pointer-events: none;
}
.yoga-retreat-section .retreat-img-shape img {
  width: 100%;
  height: auto;
}
.yoga-retreat-section .retreat-content-wrap {
  max-width: 90%;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.yoga-retreat-section .para {
  max-width: 92%;
  margin-bottom: 16px;
}
.yoga-retreat-section .retreat-program-label {
  margin-bottom: 10px;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Quicksand", sans-serif;
}
.yoga-retreat-section .retreat-table {
  border-top: 1px solid rgba(18, 31, 56, 0.1);
  margin-bottom: 16px;
}
.yoga-retreat-section .retreat-table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(18, 31, 56, 0.1);
}
.yoga-retreat-section .retreat-table-row.active {
  background: rgba(253, 229, 216, 0.35);
}
.yoga-retreat-section .retreat-table-title {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.yoga-retreat-section .retreat-table-title small {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 500;
}
.yoga-retreat-section .retreat-table-row.active .retreat-table-title {
  color: var(--primary-color);
}
.yoga-retreat-section .retreat-table-row.active .retreat-table-title small {
  color: var(--primary-color);
}
.yoga-retreat-section .retreat-table-price {
  white-space: nowrap;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 700;
  font-family: "Philosopher", sans-serif;
}
.yoga-retreat-section .retreat-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

@media (max-width: 1199.98px) {
  .yoga-retreat-section .retreat-image-box {
    padding-left: 10px;
  }
  .yoga-retreat-section .retreat-img-back {
    max-width: 290px;
    margin-top: 80px;
    margin-right: -70px;
  }
  .yoga-retreat-section .retreat-img-front {
    max-width: 430px;
    margin-left: 0;
  }
  .yoga-retreat-section .retreat-img-shape {
    width: 62%;
    bottom: -70px;
    left: -10px;
  }
  .yoga-retreat-section .retreat-content-wrap,
  .yoga-retreat-section .para {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .yoga-retreat-section .row {
    display: block;
  }
  .yoga-retreat-section .col-lg-6 {
    display: block;
    width: 100%;
  }
  .yoga-retreat-section .retreat-image-box {
    min-height: 520px;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 36px;
  }
  .yoga-retreat-section .retreat-img-back {
    max-width: 300px;
    margin-top: 120px;
    margin-right: -90px;
  }
  .yoga-retreat-section .retreat-img-front {
    max-width: 420px;
  }
  .yoga-retreat-section .retreat-img-shape {
    display: none;
  }
  .yoga-retreat-section .retreat-content-wrap {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 767.98px) {
  .yoga-retreat-section .section-subtitle,
  .yoga-retreat-section .section-title {
    text-align: center;
  }
  .yoga-retreat-section .retreat-table-row {
    text-align: left;
  }
  .yoga-retreat-section .container {
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .yoga-retreat-section .row {
    display: block;
  }
  .yoga-retreat-section .col-lg-6 {
    display: block;
    width: 100%;
  }
  .yoga-retreat-section .retreat-image-box {
    position: relative;
    display: block;
    width: 100%;
    min-height: 520px;
    margin-bottom: 22px;
    padding-left: 0;
  }
  .yoga-retreat-section .retreat-img {
    position: absolute;
  }
  .yoga-retreat-section .retreat-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .yoga-retreat-section .retreat-img-front {
    top: 20px;
    right: 0;
    width: 68%;
    max-width: none;
    margin: 0;
    z-index: 2;
  }
  .yoga-retreat-section .retreat-img-back {
    left: 0;
    bottom: 0;
    width: 62%;
    max-width: none;
    margin: 0;
    z-index: 1;
  }
  .yoga-retreat-section .retreat-img-shape {
    display: none;
  }
  .yoga-retreat-section .retreat-content-wrap {
    max-width: 100%;
    height: auto;
    padding-top: 0;
  }
  .yoga-retreat-section .section-subtitle {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.2;
    text-transform: uppercase;
  }
  .yoga-retreat-section .section-title {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .yoga-retreat-section .para {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .yoga-retreat-section .retreat-program-label {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .yoga-retreat-section .retreat-table-row {
    gap: 10px;
    padding: 12px 10px;
  }
  .yoga-retreat-section .retreat-table-title {
    font-size: 15px;
  }
  .yoga-retreat-section .retreat-table-title small {
    font-size: 13px;
  }
  .yoga-retreat-section .retreat-table-price {
    font-size: 16px;
  }
  .yoga-retreat-section .retreat-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .yoga-retreat-section .retreat-actions .btn {
    width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .yoga-retreat-section .retreat-image-box {
    min-height: 455px;
  }
  .yoga-retreat-section .retreat-img-front {
    width: 69%;
  }
  .yoga-retreat-section .retreat-img-back {
    width: 64%;
  }
  .yoga-retreat-section .section-subtitle {
    font-size: 16px;
  }
  .yoga-retreat-section .section-title {
    font-size: 28px;
  }
  .yoga-retreat-section .retreat-table-price {
    font-size: 18px;
  }
}
@media (max-width: 399.98px) {
  .yoga-retreat-section .retreat-image-box {
    min-height: 395px;
  }
  .yoga-retreat-section .retreat-img-front {
    width: 70%;
  }
  .yoga-retreat-section .retreat-img-back {
    width: 66%;
  }
}
/* ========================================
   INSTAGRAM GALLERY (MAIN STYLES)
======================================== */
.instagram-gallery {
  overflow: hidden;
}
.instagram-gallery .insta-slider {
  overflow: visible;
}
.instagram-gallery {
  /* Desktop → 5 images */
}
.instagram-gallery .swiper-slide {
  width: 20% !important;
}
.instagram-gallery .instagram-box {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.instagram-gallery .instagram-box img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}
.instagram-gallery .instagram-box:hover img {
  transform: scale(1.08);
}
.instagram-gallery {
  /* stagger effect */
}
.instagram-gallery .offset {
  margin-top: 40px;
}

/* =========================================
WHY RISHIKESH SECTION
========================================= */
.why-rishikesh {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.why-rishikesh .flower-bg {
  position: absolute;
  top: 40%;
  left: 30px;
  width: 40%;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}
.why-rishikesh .leaf-bg {
  position: absolute;
  top: 110px;
  right: 10px;
  width: 8%;
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}
.why-rishikesh .container {
  position: relative;
  z-index: 2;
}
.why-rishikesh .row {
  align-items: stretch;
}
.why-rishikesh__content {
  height: 100%;
}
.why-rishikesh__content .para {
  margin-bottom: 16px;
}
.why-rishikesh__gallery {
  display: flex;
  flex-direction: column; /* ✅ same layout */
  gap: 10px;
  height: 100%;
}

/* =========================================
IMAGE CARD
========================================= */
.why-card {
  width: 100%;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.why-card img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.why-card:hover img {
  transform: scale(1.05);
}

/* =========================================
WHY CHOOSE AATM SECTION
========================================= */
.why-choose-section {
  position: relative;
  overflow: hidden;
}
.why-choose-section .why-choose-heading {
  margin: 24px 0 16px; /* 🔥 thoda compact */
  color: var(--text-dark);
  font-family: "Philosopher", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
.why-choose-section .why-choose-list {
  border-top: 2px solid rgba(77, 74, 73, 0.18);
}
.why-choose-section .why-choose-item {
  padding: 14px 16px; /* 🔥 thoda kam */
  border-bottom: 2px solid rgba(77, 74, 73, 0.18);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}
.why-choose-section .why-choose-item.active {
  background: #f7ebe4;
  color: var(--primary-color);
}
.why-choose-section .why-choose-image-wrap {
  position: relative;
}
.why-choose-section .why-choose-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(18, 31, 56, 0.12);
}
.why-choose-section .why-choose-image img {
  width: 100%;
  height: 750px; /* 🔥 820 → 700 */
  -o-object-fit: cover;
     object-fit: cover;
}

.food-accommodation-section {
  position: relative;
  overflow: hidden;
}
.food-accommodation-section .food-accommodation-shape {
  position: absolute;
  top: 7%;
  right: 5%;
  width: 150px;
  z-index: 0;
  pointer-events: none;
}
.food-accommodation-section .food-accommodation-shape img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.12;
}
.food-accommodation-section .food-accommodation-content {
  position: relative;
  z-index: 2;
}
.food-accommodation-section .food-accommodation-content .section-title {
  margin-bottom: 10px;
}
.food-accommodation-section .food-accommodation-content .section-subtitle {
  margin-bottom: 18px;
}
.food-accommodation-section .food-accommodation-content .para {
  margin-bottom: 22px;
}
.food-accommodation-section .food-accommodation-highlight {
  color: var(--text-color);
  font-weight: 800;
}
.food-accommodation-section .food-accommodation-card {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1/1;
  margin: 0 auto 28px auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18, 31, 56, 0.1);
}
.food-accommodation-section .food-accommodation-card a {
  display: block;
  width: 100%;
  height: 100%;
}
.food-accommodation-section .food-accommodation-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.food-accommodation-section .food-accommodation-card:hover img {
  transform: scale(1.05);
}
.food-accommodation-section .divider-style1 {
  margin: 0 0 18px;
}
.food-accommodation-section .accommodation-section {
  padding-top: 20px;
}

.teachers-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.teachers-section-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.teachers-section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 31, 56, 0.72);
}
.teachers-section-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.teachers-section .section-title,
.teachers-section .section-subtitle {
  color: #fff;
}

.teachers-slider {
  position: relative;
  padding-bottom: 70px;
}

.teacher-card {
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: 0.35s ease;
  text-align: center;
}
.teacher-card:hover {
  transform: translateY(-8px);
}

.teacher-card-img {
  overflow: hidden;
  padding: 20px;
}
.teacher-card-img img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: transform 0.45s ease;
}

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

.teacher-card-content {
  padding: 10px 18px 22px;
}

.teacher-card-title {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1.2;
  font-family: "Philosopher", sans-serif;
}
.teacher-card-title a {
  color: var(--text-dark);
  text-decoration: none;
}

.teacher-card-role {
  margin: 0;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.student-reviews-section {
  position: relative;
  overflow: hidden;
}

.student-reviews-shape {
  position: absolute;
  left: 0;
  bottom: -8%;
  width: 220px;
  pointer-events: none;
  z-index: 0;
}
.student-reviews-shape img {
  width: 100%;
  height: auto;
  opacity: 0.12;
  display: block;
}

.student-review-box {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 38px 40px 28px;
  border-radius: 32px;
  background: #a8643f;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(18, 31, 56, 0.12);
}
.student-review-box::before, .student-review-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 196, 150, 0.08);
  pointer-events: none;
}
.student-review-box::before {
  width: 320px;
  height: 320px;
  right: -80px;
  top: -40px;
}
.student-review-box::after {
  width: 280px;
  height: 280px;
  left: 40%;
  bottom: -120px;
}

.student-review-box__title {
  position: relative;
  z-index: 2;
  margin-bottom: 6px;
  color: #fff;
  font-family: "Philosopher", sans-serif;
  font-size: 28px;
}

.student-review-box__subtitle {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.student-review-slider {
  position: relative;
  z-index: 2;
}

.student-review-item {
  min-height: 100%;
}

.student-review-rating {
  margin-bottom: 22px;
}
.student-review-rating i {
  color: #ffbf00;
  font-size: 20px;
  margin-right: 6px;
}

.student-review-text {
  margin-bottom: 34px;
  color: #fff;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.student-review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.student-review-author__img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.95);
  flex: 0 0 82px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.student-review-author__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.student-review-author__info h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.student-review-author__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.student-review-author__country {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.student-review-author__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: 0.3s ease;
}
.student-review-author__link:hover {
  background: #fff;
  color: var(--primary-color);
}

.student-review-nav {
  display: flex;
  gap: 0;
  margin-top: 70px;
}

.student-review-prev,
.student-review-next {
  width: 80px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 24px;
  background: transparent;
}
.student-review-prev:hover,
.student-review-next:hover {
  background: #fff;
  color: var(--primary-color);
}

.review-platform-card {
  height: 100%;
  padding: 20px 24px;
  border-radius: 30px;
  background: var(--body-bg);
  color: #f6c15b;
  text-align: center;
  box-shadow: 0 18px 45px rgba(18, 31, 56, 0.08);
  transition: var(--transition);
}
.review-platform-card:hover {
  transform: translateY(-6px);
}
.review-platform-card a {
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1.5;
  text-decoration: none;
  font-family: "Philosopher", sans-serif;
  display: block;
}

.review-platform-card__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-platform-card__icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.review-platform-card__stars {
  margin-bottom: 14px;
}
.review-platform-card__stars i {
  color: va;
  font-size: 18px;
  margin: 0 3px;
}

@media (max-width: 1199.98px) {
  .student-review-box {
    padding: 32px 28px 24px;
  }
  .student-review-author__info h4 {
    font-size: 20px;
  }
  .review-platform-card {
    border-radius: 28px;
    padding: 28px 18px;
  }
}
@media (max-width: 991.98px) {
  .student-review-box {
    margin-bottom: 10px;
  }
  .student-review-text {
    font-size: 16px;
  }
  .student-review-prev,
  .student-review-next {
    width: 70px;
    height: 60px;
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .student-reviews-section .section-header {
    margin-bottom: 28px !important;
  }
  .student-review-box {
    padding: 26px 18px 20px;
    border-radius: 22px;
  }
  .student-review-box__title {
    font-size: 24px;
  }
  .student-review-box__subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .student-review-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .student-review-author {
    align-items: flex-start;
  }
  .student-review-author__img {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }
  .student-review-author__info h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .student-review-author__country {
    font-size: 14px;
  }
  .student-review-author__link {
    padding: 7px 12px;
    font-size: 11px;
  }
  .student-review-prev,
  .student-review-next {
    width: 70px;
    height: 50px;
    font-size: 20px;
  }
  .review-platform-card {
    border-radius: 22px;
    padding: 24px 16px;
  }
  .review-platform-card__icon {
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
  }
  .review-platform-card a {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .review-platform-card {
    padding: 22px 14px;
  }
  .review-platform-card__stars i {
    font-size: 16px;
    margin: 0 2px;
  }
}
.video-testimonial-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: transparent; /* remove bg */
  padding: 0; /* REMOVE SPACE */
}
.video-testimonial-thumb img {
  width: 100%;
  height: 240px;
  -o-object-fit: contain;
     object-fit: contain; /* full image */
  -o-object-position: center;
     object-position: center;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}
.video-testimonial-card:hover .video-testimonial-thumb img {
  transform: scale(1.03);
}
.video-testimonial-thumb {
  /* overlay (optional light) */
}
.video-testimonial-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

/* Modal */
.video-testimonial-modal .modal-content {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.video-testimonial-modal .modal-body {
  padding: 0;
}

.video-testimonial-dialog {
  max-width: 640px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.video-testimonial-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.video-testimonial-frame-wrap iframe,
.video-testimonial-frame-wrap #videoTestimonialFrame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section-shape {
  position: absolute;
  top: -1%;
  left: 70%;
  z-index: 0;
  pointer-events: none;
}
.faq-section-shape img {
  display: block;
  opacity: 2;
}

.faq-column {
  position: relative;
  z-index: 2;
  height: 100%;
}

.faq-column-title {
  margin-bottom: 18px;
  color: var(--text-color);
  font-size: 24px;
  line-height: 1.35;
  text-align: center;
  font-family: "Philosopher", sans-serif;
  font-weight: 700;
}

.faq-accordion .accordion-item {
  border: 1px solid #d9d9d9;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0;
  overflow: hidden;
  background: #fff;
}
.faq-accordion .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 52px 18px 18px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: #111;
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
  width: 16px;
  height: 16px;
  background-size: 16px;
  background-position: center;
  filter: brightness(0);
}
.faq-accordion .accordion-body {
  padding: 0 24px 22px;
  background: #fff;
  color: #222;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
  border-top: 1px solid #ededed;
}

.blog-section .section-header {
  margin-bottom: 30px;
}
.blog-section__action {
  margin-top: 32px;
}

.blog-slider {
  overflow: hidden;
  padding: 8px 2px;
}

.blog-slider .swiper-slide {
  height: auto;
}

.blog-card {
  position: relative;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(154, 86, 58, 0.12);
  box-shadow: 0 14px 34px rgba(18, 31, 56, 0.07);
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(18, 31, 56, 0.12);
}

.blog-card__full-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.blog-card__image,
.blog-card__content {
  position: relative;
  z-index: 2;
}

.blog-card__image {
  position: relative;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

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

.blog-card__badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 20px rgba(18, 31, 56, 0.12);
}

.blog-card__content {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.blog-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8eee9;
}

.blog-card__title {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.35;
  font-family: "Philosopher", sans-serif;
  color: var(--primary-color);
}

.blog-card .para {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--text-dark);
  flex: 1;
}

.blog-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.blog-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 5px;
}

.blog-slider .swiper-pagination-bullet-active {
  background: #c59d5f;
  width: 25px;
  border-radius: 20px;
}

.modern-footer {
  background: url("../images/yoga-footer.webp") no-repeat center/cover;
  color: #fff;
  padding: 90px 0 50px;
  z-index: 1;
  font-family: "Quicksand", sans-serif;
}

.footer-block {
  margin-left: 20px;
}

.footer-block p {
  font-size: 15.5px;
  line-height: 1.8;
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

.footer-block h3 {
  font-size: 25.8px;
  margin-bottom: 22px;
  position: relative;
  font-family: "Philosopher", sans-serif;
  display: inline-block;
}

.footer-block h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--body-bg);
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: width 0.4s ease;
}

.footer-block h3:hover::after {
  width: 100%;
}

/* About */
.about-block {
  padding-bottom: 40px;
}

.about-card {
  background-color: var(--body-bg);
  text-align: center;
  margin-right: 60px;
  padding: 10px 10px 20px;
  margin-top: -90px;
  border-radius: 0px 0px 20px 20px;
}

.about-card .footer-logo {
  max-width: 100%;
  height: auto;
  margin-top: 0;
  filter: none;
}

.about-card .para {
  color: #232323;
  font-size: 16px;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 18px;
  color: var(--primary-color);
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icons a:hover {
  background: #fff;
  color: #5d2f1f;
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Menu Links */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 14px;
}

.footer-menu a {
  color: var(--body-bg);
  text-decoration: none;
  font-size: 16.5px;
  font-weight: 500;
  position: relative;
  padding-left: 22px;
  transition: all 0.3s ease;
}

.footer-menu a::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 13.5px;
  color: var(--body-bg);
}

.footer-menu a:hover {
  color: #ffe0d0;
  transform: translateX(8px);
}

/* Contact */
.contact-block {
  padding: 0 10px;
  margin-left: 60px;
}

.contact-block h3 {
  margin-bottom: 28px;
}

.contact-block p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 6px;
  padding-left: 4px;
}

.contact-block i {
  margin-right: 1px;
  font-size: 1.25rem;
  width: 22px;
  text-align: center;
  color: var(--body-bg);
}

.contact-block i:hover {
  color: var(--primary-color);
}

/* Blog Heading */
.footer-blog-heading {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hide new chip style */
.footer-blogs-menu {
  display: none;
}

/* Old blog style */
.copyright-menu {
  text-align: center;
}
.copyright-menu ul {
  padding: 0;
  list-style: none;
  text-align: center;
}
.copyright-menu li {
  display: inline-block;
  margin: 0 29px 14px;
}
.copyright-menu a {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.copyright-menu a:hover {
  color: var(--primary-color);
}

/* Bottom */
.footer-bottom {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.95);
  color: #444;
  text-align: center;
  padding: 22px 0;
  font-size: 15px;
  border-radius: 60px 60px 0 0;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.1);
}

/* Divider */
.footer-divider {
  width: 85%;
  height: 1px;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.3);
}

/* Curved Box */
.footer-bottom {
  width: 85%;
  background: #f1f1f1;
  color: #333;
  padding: 20px 30px;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.footer-bottom .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom .footer-left {
  flex: 1;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
}
.footer-bottom .footer-center {
  flex: 1;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}
.footer-bottom .footer-right {
  flex: 1;
  text-align: right;
}
.footer-bottom .footer-right a {
  color: #333;
  text-decoration: none;
  margin-left: 18px;
  font-size: 16px;
  position: relative;
  font-weight: 600;
}
.footer-bottom .footer-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #6e3b27;
  transition: 0.3s;
}
.footer-bottom .footer-right a:hover::after {
  width: 100%;
}

/* =========================================
   Breadcrumb / Hero Section (SCSS)
   ========================================= */
.breadcumb-wrapper {
  position: relative;
  background-color: var(--smoke-color);
  background-size: cover;
  background-position: center;
}
.breadcumb-wrapper .breadcumb-content {
  padding: 180px 0;
}

.about-background {
  background-image: url("../images/about-bg.webp");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.teacher-background {
  background-image: url("../images/teacher-banner-bg.webp");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.food-stay-background {
  background-image: url("../images/food-stay-banner.webp");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.faqs-background {
  background-image: url("../images/faq-banner-text.webp");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.gallery-background {
  background-image: url("../images/gallery-bg.webp");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.yoga-ttc-50-hour-background {
  background-image: url("../images/yoga-teacher-trainng-courses-in-india.webp");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.retreat-background {
  background-image: url("../images/retreat-bg.webp");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.refund-policy-background {
  background-image: url("../images/faq-banner-text.webp");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.amit-yogi-background {
  background-image: url("../images/amit-yogi-ashtanga-yoga-teacher-in-rishikesh.webp");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.ravi-yogi-background {
  background-image: url("../images/ravi-bisht-hatha-iyengar-yoga-teacher.png");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.rakesh-yogi-background {
  background-image: url("../images/dr-rakesh-anatomy-and-ayurveda-doctor.png");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.shankar-yogi-background {
  background-image: url("../images/shankar-dey-meditation-pranayama-and-kriyas.png");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.neeraj-yogi-background {
  background-image: url("../images/neeraj-rayal-ashtanga-yoga-asana-teacher.png");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.jagjeet-singh-background {
  background-image: url("../images/jagjeet-singh-meditation-and-mantra-chanting.png");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.breadcumb-title {
  width: 50%;
  margin: -0.22em 0 -0.22rem 0;
  font-size: 35px;
  text-transform: uppercase;
  font-family: "Philosopher", sans-serif;
  color: #fff;
}
.breadcumb-title .breadcrumb-inner {
  font-size: 35px;
  background: none;
  color: inherit;
}

/* --- Breadcrumb Menu --- */
.breadcumb-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}
.breadcumb-menu li {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body-bg);
  transition: color 0.3s ease;
}
.breadcumb-menu li a {
  color: inherit;
  transition: color 0.3s ease;
  text-decoration: none;
}
.breadcumb-menu li a:hover {
  color: var(--theme-color);
}
.breadcumb-menu li {
  /* Separator */
}
.breadcumb-menu li::after {
  content: "\f101";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin: 0 8px;
  font-size: 12px;
  opacity: 0.7;
}
.breadcumb-menu li:last-child::after {
  display: none;
}

/* =========================================
   ABOUT FEATURES SECTION (Clean Design with Old Style)
========================================= */
.about-features-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 80px; /* Added padding to give room for overlapping icons */
  /* Floating Image Animation */
}
.about-features-section .shape-floating {
  position: absolute;
  top: 5%;
  right: 0;
  z-index: -1;
  opacity: 1;
  animation: jumpReverse 6s linear infinite;
}
.about-features-section .shape-floating img {
  max-width: 100%;
}

/* Feature Card Styling */
.feature-card {
  background-color: var(--body-bg);
  padding: 0 30px 45px;
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  /* ── Inner Dashed Border ── */
  outline: 1px dashed rgba(154, 86, 58, 0.4);
  outline-offset: -15px;
  border: none;
  transition: var(--transition);
  position: relative;
  z-index: 2;
  margin-top: 60px;
  /* Hover Effect */
}
.feature-card:hover {
  transform: translateY(-10px);
  outline-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(154, 86, 58, 0.12);
}
.feature-card:hover .feature-card__icon {
  background-color: var(--primary-color);
}
.feature-card:hover .feature-card__icon img {
  filter: brightness(0) invert(1);
  transform: rotateY(180deg);
}
.feature-card:hover .feature-card__title {
  color: var(--primary-color);
}
.feature-card {
  /* ── Icon Container ── */
}
.feature-card__icon {
  width: 100px;
  height: 100px;
  /* Pulls the icon exactly halfway outside the top */
  margin: -50px auto 25px auto;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  /* Solid white shadow to 'cut through' the dashed outline behind it */
  box-shadow: 0 0 0 15px var(--body-bg);
  position: relative;
  z-index: 3;
}
.feature-card__icon img {
  width: 45px;
  transition: var(--transition);
  transform: rotateY(0deg);
  filter: none;
}
.feature-card {
  /* Title */
}
.feature-card__title {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  transition: var(--transition);
}
.feature-card {
  /* Paragraph */
}
.feature-card .para {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Floating Animation */
@keyframes jumpReverse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.feature-card-center .feature-card {
  margin-top: 35px;
}

/* ── Mobile Responsiveness ── */
@media (max-width: 767px) {
  .feature-card {
    padding: 0 20px 35px;
    margin-top: 50px;
    outline-offset: -10px; /* Brings dashed outline a bit closer to edge on mobile */
  }
  .feature-card__icon {
    width: 80px;
    height: 80px;
    margin: -40px auto 20px;
    box-shadow: 0 0 0 10px var(--body-bg); /* Adjusted shadow size */
  }
  .feature-card__icon img {
    width: 35px;
  }
  .feature-card__title {
    font-size: 18px;
  }
}
.gallery__wrapper {
  height: 100%;
}
.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__item--large {
  min-height: 450px;
}
@media (max-width: 991px) {
  .gallery__item--large {
    min-height: 300px;
  }
}
.gallery__item--small {
  min-height: 220px;
}
@media (max-width: 991px) {
  .gallery__item--small {
    min-height: 180px;
  }
}
.gallery__side {
  height: 100%;
}

.core-values-section {
  position: relative;
  overflow: hidden;
}

.core-values-shape {
  position: absolute;
  right: 0;
  top: 8%;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}
.core-values-shape img {
  display: block;
  max-width: 280px;
  height: auto;
}

.core-values-section .container {
  position: relative;
  z-index: 2;
}

.core-values-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.core-value-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #fff9f6 100%);
  border: 1px solid rgba(154, 86, 58, 0.22);
  box-shadow: 0 10px 24px rgba(18, 31, 56, 0.05);
  transition: 0.35s ease;
  position: relative;
  z-index: 2;
}
.core-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(154, 86, 58, 0.16), rgba(154, 86, 58, 0.03));
}
.core-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(18, 31, 56, 0.09);
}

.core-value-card__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
  background: #9a563a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(154, 86, 58, 0.18);
}
.core-value-card__icon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}

.core-value-card__content {
  flex: 1;
}

.core-value-card__title {
  margin-bottom: 6px;
  font-family: "Philosopher", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.core-value-card .para {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-dark);
}

.core-values-image {
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18, 31, 56, 0.12);
  max-width: 380px;
  margin: 0 auto;
}
.core-values-image img {
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.founder-section {
  position: relative;
  overflow: hidden;
}

.founder-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}
.founder-shape img {
  display: block;
  max-width: 100%;
  height: auto;
}

.founder-shape-left {
  top: 1%;
  left: 1%;
  width: 100%;
}

.founder-shape-right {
  top: 25%;
  right: 50px;
  width: 250px;
}

.founder-section .container {
  position: relative;
  z-index: 2;
}

/* Same-to-same old image layout */
.img-box10.founder-img-box {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
  justify-content: flex-start;
}

.img-box10.founder-img-box .img-1 {
  margin-right: -100px;
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.img-box10.founder-img-box .img-2 {
  position: relative;
  z-index: 2;
}

.img-box10.founder-img-box .img-1 img,
.img-box10.founder-img-box .img-2 img {
  border-radius: 6px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 18px 40px rgba(18, 31, 56, 0.12);
}

.img-box10.founder-img-box .img-1 img {
  width: 372px;
  height: 460px;
}

.img-box10.founder-img-box .img-2 img {
  width: 300px;
  height: 400px;
}

/* Content */
.founder-content {
  max-width: 620px;
}

.founder-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 26px;
}

.founder-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}
.founder-social i {
  font-size: 18px;
}
.founder-social span {
  line-height: 1;
}

.founder-social--instagram {
  background: #f8eee9;
  color: #9a563a;
}
.founder-social--instagram:hover {
  background: #9a563a;
  color: #fff;
}

.founder-social--facebook {
  background: #eef3ff;
  color: #2f5ea8;
}
.founder-social--facebook:hover {
  background: #2f5ea8;
  color: #fff;
}

.founder-copy .para {
  margin-bottom: 10px;
}

.vision-mission-section {
  position: relative;
  overflow: hidden;
}

.vision-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.1;
}
.vision-shape img {
  display: block;
  max-width: 100%;
  height: auto;
}
.vision-shape--right {
  top: 10%;
  right: 4%;
  width: 150px;
}
.vision-shape--left {
  left: 4%;
  bottom: 10%;
  width: 120px;
}

.vision-mission-section .container {
  position: relative;
  z-index: 2;
}

.vision-mission-section .section-header {
  margin-bottom: 36px;
}

.vision-card {
  position: relative;
  height: 100%;
  margin-top: 48px;
  padding: 0 5px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff8f4 0%, #fff 100%);
  border-top: 2px solid var(--text-color);
  box-shadow: 0 16px 36px rgba(18, 31, 56, 0.06);
  transition: 0.35s ease;
  overflow: visible;
}
.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(18, 31, 56, 0.12);
}
.vision-card--featured {
  background: linear-gradient(180deg, #fff8f4 0%, #fff 100%);
}

.vision-card__icon {
  width: 96px;
  height: 96px;
  margin: -48px auto 18px;
  border-radius: 50%;
  background: #f8eee9;
  border: 1px solid rgba(154, 86, 58, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px #fff;
  position: relative;
  z-index: 3;
}
.vision-card__icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(154, 86, 58, 0.35);
}
.vision-card__icon img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}

.vision-card__content {
  position: relative;
  z-index: 2;
  padding-top: 6px;
}

.vision-card__title {
  margin-bottom: 16px;
  padding-bottom: 14px;
  color: var(--text-color);
  font-family: "Philosopher", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  border-bottom: 1px solid rgba(154, 86, 58, 0.16);
}

.vision-card .para {
  margin-bottom: 0;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.guru-heritage-section {
  position: relative;
  overflow: hidden;
}

.guru-heritage-timeline {
  position: relative;
  padding: 32px 0;
  margin-top: 60px;
}

.guru-heritage-timeline::before,
.guru-heritage-timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-bottom: 27px;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #efe7e2;
  border: 8px solid var(--text-dark);
  z-index: 3;
}

.guru-heritage-timeline::before {
  top: 0;
}

.guru-heritage-timeline::after {
  bottom: 0;
}

.guru-heritage-card {
  position: relative;
  padding: 34px 0;
  margin-top: -27px;
}

.guru-heritage-card::before,
.guru-heritage-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  border: 14px solid #46b2bc;
  border-right: 0;
  border-radius: 110px 0 0 110px;
  z-index: 0;
}

.guru-heritage-card::after {
  top: 14px;
  left: 12px;
  width: calc(50% - 12px);
  height: calc(100% - 28px);
  border: 14px solid #65c7d0;
  border-right: 0;
  border-radius: 96px 0 0 96px;
}

.guru-heritage-card--right::before {
  left: auto;
  right: 0;
  border-right: 14px solid #ea3c14;
  border-left: 0;
  border-radius: 0 110px 110px 0;
}

.guru-heritage-card--right::after {
  left: auto;
  right: 12px;
  border-right: 14px solid #ef5720;
  border-left: 0;
  border-radius: 0 96px 96px 0;
}

.guru-heritage-card:nth-child(5n+1)::before {
  border-color: #46b2bc;
  border-right-color: transparent;
}

.guru-heritage-card:nth-child(5n+1)::after {
  border-color: #65c7d0;
  border-right-color: transparent;
}

.guru-heritage-card:nth-child(5n+1).guru-heritage-card--right::before {
  border-color: #46b2bc;
  border-left-color: transparent;
}

.guru-heritage-card:nth-child(5n+1).guru-heritage-card--right::after {
  border-color: #65c7d0;
  border-left-color: transparent;
}

.guru-heritage-card:nth-child(5n+2)::before {
  border-color: #ea3c14;
  border-right-color: transparent;
}

.guru-heritage-card:nth-child(5n+2)::after {
  border-color: #ef5720;
  border-right-color: transparent;
}

.guru-heritage-card:nth-child(5n+2).guru-heritage-card--right::before {
  border-color: #ea3c14;
  border-left-color: transparent;
}

.guru-heritage-card:nth-child(5n+2).guru-heritage-card--right::after {
  border-color: #ef5720;
  border-left-color: transparent;
}

.guru-heritage-card:nth-child(5n+3)::before {
  border-color: #8cc63e;
  border-right-color: transparent;
}

.guru-heritage-card:nth-child(5n+3)::after {
  border-color: #6caf29;
  border-right-color: transparent;
}

.guru-heritage-card:nth-child(5n+3).guru-heritage-card--right::before {
  border-color: #8cc63e;
  border-left-color: transparent;
}

.guru-heritage-card:nth-child(5n+3).guru-heritage-card--right::after {
  border-color: #6caf29;
  border-left-color: transparent;
}

.guru-heritage-card:nth-child(5n+4)::before {
  border-color: #f99324;
  border-right-color: transparent;
}

.guru-heritage-card:nth-child(5n+4)::after {
  border-color: #fbb03b;
  border-right-color: transparent;
}

.guru-heritage-card:nth-child(5n+4).guru-heritage-card--right::before {
  border-color: #f99324;
  border-left-color: transparent;
}

.guru-heritage-card:nth-child(5n+4).guru-heritage-card--right::after {
  border-color: #fbb03b;
  border-left-color: transparent;
}

.guru-heritage-card:nth-child(5n+5)::before {
  border-color: #0071bd;
  border-right-color: transparent;
}

.guru-heritage-card:nth-child(5n+5)::after {
  border-color: #0050a3;
  border-right-color: transparent;
}

.guru-heritage-card:nth-child(5n+5).guru-heritage-card--right::before {
  border-color: #0071bd;
  border-left-color: transparent;
}

.guru-heritage-card:nth-child(5n+5).guru-heritage-card--right::after {
  border-color: #0050a3;
  border-left-color: transparent;
}

.guru-heritage-card__frame {
  position: relative;
  z-index: 2;
  width: 100%;
}

.guru-heritage-card__visual {
  position: absolute;
  top: 50%;
  left: 9%;
  transform: translateY(-50%);
}

.guru-heritage-card--right .guru-heritage-card__visual {
  left: auto;
  right: 9%;
}

.guru-heritage-card__visual img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(18, 31, 56, 0.12);
}

.guru-heritage-card__content {
  width: 68%;
  padding: 28px 20px;
  margin-left: auto;
}

.guru-heritage-card--right .guru-heritage-card__content {
  margin-left: 40px;
  margin-right: auto;
}

.guru-heritage-card__title {
  margin: 0 0 10px;
  font-family: "Philosopher", sans-serif;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--primary-color);
}

.guru-heritage-card__content .para {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dark);
}

.timeline-btn-sm {
  padding: 8px 10px !important;
  font-size: 12px !important;
  line-height: 1.2;
  border-radius: 6px;
  min-height: 34px;
}

.guru-heritage-card:nth-child(5n+1) .guru-heritage-card__title {
  color: #65c7d0;
}

.guru-heritage-card:nth-child(5n+2) .guru-heritage-card__title {
  color: #ea3c14;
}

.guru-heritage-card:nth-child(5n+3) .guru-heritage-card__title {
  color: #8cc63e;
}

.guru-heritage-card:nth-child(5n+4) .guru-heritage-card__title {
  color: #f99324;
}

.guru-heritage-card:nth-child(5n+5) .guru-heritage-card__title {
  color: #0071bd;
}

.guru-heritage-card__btn {
  margin-top: 6px;
}

.teachers-showcase-section {
  position: relative;
  overflow: hidden;
}

.teachers-showcase-shape {
  position: absolute;
  left: 1%;
  top: -5%;
  width: 170px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.teachers-showcase-shape img {
  width: 100%;
  height: auto;
  display: block;
}

.teachers-showcase-section {
  position: relative;
  z-index: 2;
}

.teachers-showcase-slider-wrap {
  position: relative;
}

.teachers-showcase-slider {
  padding: 12px 6px 6px;
}

.teachers-showcase-slider .swiper-wrapper {
  align-items: stretch;
}

.teachers-showcase-slider .swiper-slide {
  height: auto !important;
}

.teacher-showcase-card {
  height: 100%;
  min-height: 540px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, #fff9f6 100%);
  border: 1px solid rgba(168, 87, 52, 0.12);
  box-shadow: 0 10px 24px rgba(18, 31, 56, 0.05);
  overflow: hidden;
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
}

.teacher-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 48px rgba(18, 31, 56, 0.12);
}

.teacher-showcase-card__hero {
  position: relative;
  overflow: hidden;
}

.teacher-showcase-card__hero img {
  width: 100%;
  height: 275px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.teacher-showcase-card:hover .teacher-showcase-card__hero img {
  transform: scale(1.04);
}

.teacher-showcase-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.teacher-showcase-card__name {
  margin: 0 0 8px;
  color: var(--text-color);
  font-family: "Philosopher", sans-serif;
  font-size: 28px;
  line-height: 1.08;
}

.teacher-showcase-card__role {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.4px;
  min-height: 62px;
}

.teacher-showcase-card__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.teacher-showcase-card__gallery img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  display: block;
}

.teacher-showcase-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.teacher-showcase-card__btn {
  padding: 8px 16px;
  font-size: 14px;
  min-height: 38px;
  border-radius: 8px;
  white-space: nowrap;
}

.teacher-showcase-card__socials {
  display: flex;
  gap: 10px;
}

.teacher-showcase-card__socials a {
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(154, 86, 58, 0.14);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.teacher-showcase-card__socials a:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.food-accommodation-section {
  position: relative;
  overflow: hidden;
}

.food-accommodation-section .container {
  position: relative;
  z-index: 2;
}

.food-accommodation-section__shape {
  position: absolute;
  top: 5%;
  right: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
}

.food-accommodation-section__shape img {
  width: 100%;
  height: auto;
  display: block;
}

.food-accommodation-section__salad-shape {
  position: absolute;
  top: 9%;
  right: 6%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.food-accommodation-section__salad-shape img {
  width: 200px;
  height: auto;
  display: block;
}

.food-accommodation-section__top {
  margin-bottom: 38px;
}

.food-feature-image {
  height: 100%;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(18, 31, 56, 0.12);
}

.food-feature-image img {
  width: 100%;
  height: 502px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.food-feature-content {
  position: relative;
}

.food-feature-heading {
  margin-bottom: 18px;
}

.food-feature-heading__subtitle {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.food-feature-heading__title {
  margin: 0;
  color: var(--text-color);
  font-family: "Philosopher", sans-serif;
  font-size: 54px;
  line-height: 1.08;
}

.food-feature-box {
  padding: 20px 30px 10px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(18, 31, 56, 0.1);
}

.food-feature-box .para {
  margin-bottom: 26px;
  font-size: 17px;
  line-height: 1.8;
}

.food-feature-list {
  border-top: 1px solid rgba(154, 86, 58, 0.14);
}

.food-feature-list__item {
  padding: 14px 18px;
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 1.4px;
  border-bottom: 1px solid rgba(154, 86, 58, 0.14);
}

.food-feature-list__item.active {
  background: rgba(191, 138, 114, 0.12);
  color: var(--primary-color);
}

.food-accommodation-section__meals-head {
  margin: 0 0 18px;
}

.food-accommodation-section__meals-title {
  margin: 0 0 8px;
  font-family: "Philosopher", sans-serif;
  font-size: 34px;
  color: var(--text-color);
  text-transform: uppercase;
}

.food-accommodation-section__meals-subtitle {
  margin: 0;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.food-accommodation-section__meals {
  margin-bottom: 30px;
}

.meal-modern-card {
  height: 100%;
  min-height: 215px;
  padding: 18px 16px 16px;
  text-align: center;
  background-color: var(--body-bg);
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.meal-modern-card:hover {
  transform: translateY(-4px);
}

.meal-modern-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 12px;
  background: linear-gradient(180deg, rgba(191, 138, 114, 0.14) 0%, rgba(191, 138, 114, 0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.meal-modern-card__icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.meal-modern-card__title {
  margin: 0 0 8px;
  font-family: "Philosopher", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
}

.meal-modern-card .para {
  max-width: 220px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.food-accommodation-section__gallery-row {
  margin-top: 10px;
}

.food-gallery-slider {
  padding: 6px 0 0;
  overflow: hidden;
}

.food-gallery-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.food-gallery-slider .swiper-slide {
  height: auto;
}

.food-gallery-card {
  position: relative;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 14px 34px rgba(18, 31, 56, 0.08);
}

.food-gallery-card img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.food-gallery-card:hover img {
  transform: scale(1.04);
}

@media (max-width: 1399.98px) {
  .food-feature-heading__title {
    font-size: 46px;
  }
  .food-feature-image img {
    height: 580px;
  }
  .food-accommodation-section__shape img {
    width: 190px;
  }
  .food-accommodation-section__salad-shape img {
    width: 170px;
  }
}
@media (max-width: 1199.98px) {
  .food-feature-heading__title {
    font-size: 40px;
  }
  .food-feature-box {
    padding: 32px 24px 24px;
  }
  .food-feature-image img {
    height: 520px;
  }
  .food-accommodation-section__meals-title {
    font-size: 30px;
  }
  .meal-modern-card {
    min-height: 205px;
    padding: 16px 14px 14px;
  }
  .meal-modern-card__icon {
    width: 62px;
    height: 62px;
  }
  .meal-modern-card__icon img {
    width: 36px;
    height: 36px;
  }
  .meal-modern-card__title {
    font-size: 19px;
  }
  .meal-modern-card .para {
    font-size: 14px;
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .food-feature-image img {
    height: 420px;
  }
  .food-feature-heading__title {
    font-size: 34px;
  }
}
@media (max-width: 767.98px) {
  .food-feature-image,
  .food-feature-box,
  .meal-modern-card {
    border-radius: 20px;
  }
  .food-feature-heading__subtitle {
    font-size: 13px;
    letter-spacing: 3px;
  }
  .food-feature-heading__title {
    font-size: 28px;
  }
  .food-feature-box {
    padding: 22px 18px 18px;
  }
  .food-feature-box .para {
    font-size: 16px;
    line-height: 1.7;
  }
  .food-feature-list__item {
    font-size: 13px;
    letter-spacing: 1px;
    padding: 12px 14px;
  }
  .food-feature-image img {
    height: 280px;
  }
  .food-accommodation-section__meals-title {
    font-size: 24px;
  }
  .food-accommodation-section__meals-subtitle {
    font-size: 13px;
    letter-spacing: 1.5px;
  }
  .meal-modern-card {
    min-height: 220px;
    padding: 18px 16px;
  }
  .meal-modern-card__title {
    font-size: 20px;
  }
  .meal-modern-card__icon {
    width: 72px;
    height: 72px;
  }
  .meal-modern-card__icon img {
    width: 52px;
    height: 52px;
  }
  .food-gallery-card,
  .food-gallery-card img {
    border-radius: 14px;
  }
}
.testimonials-swiper-section {
  position: relative;
  overflow: hidden;
}

.testimonials-swiper-section .container {
  position: relative;
  z-index: 2;
}

.testimonials-swiper-section__shape {
  position: absolute;
  top: -1%;
  left: 0%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.testimonials-swiper-section__shape img {
  width: 70%;
  height: auto;
  display: block;
}

.testimonials-swiper-section__inner {
  position: relative;
}

.testimonials-swiper-section__head {
  margin-bottom: 0;
}

.testimonials-swiper-section__slider-row {
  margin-top: 28px;
}

.testimonials-swiper-nav {
  display: flex;
  gap: 12px;
}

.testimonials-swiper-prev,
.testimonials-swiper-next {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(154, 86, 58, 0.14);
  background: var(--body-bg);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testimonials-swiper-prev:hover,
.testimonials-swiper-next:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.testimonials-swiper {
  overflow: visible;
  padding: 4px 0;
}

.testimonials-swiper .swiper-slide {
  height: auto;
}

.testimonials-swiper-card {
  height: 95%;
  padding: 24px 22px 20px;
  background: #fff;
  border: 1px solid rgba(154, 86, 58, 0.08);
  box-shadow: 0 16px 34px rgba(18, 31, 56, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: 0.35s ease;
}

.testimonials-swiper-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(18, 31, 56, 0.08);
}

.testimonials-swiper-card__stars {
  display: flex;
  gap: 6px;
  color: #d9b256;
  font-size: 14px;
}

.testimonials-swiper-card__text {
  margin: 0;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.testimonials-swiper-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(154, 86, 58, 0.08);
}

.testimonials-swiper-card__avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
}

.testimonials-swiper-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.testimonials-swiper-card__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials-swiper-card__name {
  margin: 0 0 4px;
  color: var(--text-color);
  font-family: "Philosopher", sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.testimonials-swiper-card__role {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 1199.98px) {
  .testimonials-swiper-card {
    padding: 22px 18px 18px;
  }
  .testimonials-swiper-card__text {
    font-size: 14px;
    line-height: 1.75;
  }
}
@media (max-width: 767.98px) {
  .testimonials-swiper-section__slider-row {
    margin-top: 22px;
  }
  .testimonials-swiper-card {
    padding: 20px 16px 16px;
  }
  .testimonials-swiper-card__avatar {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .testimonials-swiper-card__name {
    font-size: 18px;
  }
  .testimonials-swiper-card__text {
    font-size: 14px;
    line-height: 1.7;
  }
}
.faq-modern-section {
  position: relative;
  overflow: hidden;
}

.faq-modern-section .container {
  position: relative;
  z-index: 2;
}

.faq-modern-section__shape {
  position: absolute;
  top: 2%;
  right: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.faq-modern-section__shape img {
  width: 340px;
  height: auto;
  display: block;
}

.faq-modern-section__header {
  margin-bottom: 36px;
}

.faq-modern-column {
  height: 100%;
}

.faq-modern-column__title {
  margin-bottom: 18px;
  color: var(--text-color);
  font-family: "Philosopher", sans-serif;
  font-size: 28px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.faq-modern-accordion .accordion-item {
  border: 1px solid #d7d7d7;
  background: #fff;
  margin-bottom: 0;
  transition: 0.3s ease;
}

.faq-modern-accordion .accordion-item.active,
.faq-modern-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(154, 86, 58, 0.45);
}

.faq-modern-accordion .accordion-button {
  position: relative;
  padding: 18px 70px 18px 24px;
  background: #fff;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: none;
}

.faq-modern-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--text-color);
}

.faq-modern-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-modern-accordion .accordion-button::after {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
  width: 18px;
  height: 18px;
  background-size: 18px;
  background-position: center;
  filter: brightness(0);
}

.faq-modern-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(27%) sepia(90%) saturate(1211%) hue-rotate(355deg) brightness(87%) contrast(94%);
}

.faq-modern-accordion .accordion-body {
  padding: 0 24px 20px;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  background: #fff;
  border-top: 1px solid #e9e9e9;
}

.faq-modern-accordion .accordion-body a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.faq-modern-accordion .accordion-body a:hover {
  text-decoration: underline;
}

.custom-gallery-section {
  position: relative;
  overflow: hidden;
}

.gallery .aatm-gallery {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-auto-rows: minmax(100px, 200px);
  grid-auto-flow: dense;
}
.gallery .aatm-item {
  overflow: hidden;
  border: 2px solid #fff;
  position: relative;
}
.gallery .frame {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 100%;
  display: grid;
  justify-items: center;
  align-items: center;
  transition: all 0.1s ease;
  transition-delay: 0.1s;
}
.gallery .frame a {
  padding: 10px 20px;
  color: #fff;
  border-radius: 40px;
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Yanone Kaffeesatz", sans-serif;
  letter-spacing: 3.5px;
}
.gallery .frame a:hover {
  background: transparent;
}
.gallery .aatm-item:hover .frame {
  top: 0;
}
.gallery .aatm-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s;
  transition-delay: 0.2s;
}
.gallery .aatm-item:hover img {
  transform: scale(1.4);
  opacity: 1;
}
.gallery {
  /* GRID CONTROL */
}
.gallery .vertical {
  grid-column: span 2;
}
.gallery .horizontal {
  grid-row: span 2;
}
.gallery .big {
  grid-column: span 2;
  grid-row: span 2;
}

.video-swiper {
  padding-top: 30px;
}

/* CARD */
.video-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--body-bg);
  border: 1px solid rgba(154, 86, 58, 0.4);
  transition: 0.3s ease;
}
.video-card iframe {
  height: 500px;
}
.video-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
}

/* spacing */
.swiper-slide {
  display: flex;
}

/* optional center effect */
@media (min-width: 992px) {
  .swiper-slide {
    transform: scale(0.95);
  }
  .swiper-slide-active {
    transform: scale(1);
  }
}
.ttc-content-box {
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  box-shadow: 0 2px 8px 0 rgba(103, 151, 255, 0.09), 0 4px 32px 0 rgba(103, 151, 255, 0.09);
}

.ttc-gallery-showcase-section {
  position: relative;
  overflow: hidden;
}

.ttc-gallery-showcase-main {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 46px rgba(18, 31, 56, 0.08);
}

.ttc-gallery-showcase-main img {
  width: 100%;
  height: 100%;
  min-height: 428px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 0;
}

.card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.1);
}

.ttc-gallery-trigger.active-thumb {
  outline: 3px solid rgba(154, 86, 58, 0.35);
  outline-offset: -3px;
}

.ttc-gallery-showcase-strip {
  margin-top: 18px;
}

.ttc-gallery-showcase-mini {
  width: 104px;
  height: 69px;
}

.ttc-gallery-showcase-mini img {
  width: 104px;
  height: 69px;
  -o-object-fit: cover;
     object-fit: cover;
}

.ttc-quick-info-bar {
  margin-top: 18px;
}

.ttc-quick-info-bar__item {
  padding: 10px 0 10px;
  background: var(--primary-color);
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(18, 31, 56, 0.08);
}

.ttc-quick-info-bar__item span {
  color: #fff;
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 1.3;
  font-weight: 500;
}

.ttc-overview-section {
  position: relative;
}

.ttc-classic-card {
  position: sticky;
  top: 110px;
  padding: 12px;
  overflow: hidden;
  border-radius: 32px;
  background: radial-gradient(circle at top left, rgba(154, 86, 58, 0.08), transparent 32%), radial-gradient(circle at bottom right, rgba(154, 86, 58, 0.08), transparent 30%), linear-gradient(180deg, #fffaf6 0%, #f9efe7 100%);
  border: 2px solid var(--primary-color);
  box-shadow: 0 22px 50px rgba(18, 31, 56, 0.08);
}

.ttc-classic-card__outer {
  position: relative;
  z-index: 2;
}

.ttc-classic-card__head {
  text-align: center;
  margin-bottom: 12px;
}

.ttc-classic-card__title {
  margin: 0;
  color: #5b3324;
  font-family: "Philosopher", sans-serif;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 700;
}

.ttc-classic-card__subtitle {
  position: relative;
  margin: 8px 0 0;
  color: var(--primary-color);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
}

.ttc-classic-card__inner {
  position: relative;
  margin-top: 8px;
  padding: 16px 18px 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(154, 86, 58, 0.12);
  border-radius: 24px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5), 0 10px 24px rgba(18, 31, 56, 0.04);
}

.ttc-classic-card__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4px 0 10px;
}

.ttc-classic-card__divider span {
  height: 1px;
  flex: 1;
  background: rgba(154, 86, 58, 0.35);
}

.ttc-classic-card__divider i {
  color: #c28a4d;
  font-size: 15px;
}

.ttc-classic-card__meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ttc-classic-card__meta li {
  display: grid;
  grid-template-columns: 18px max-content minmax(0, 1fr);
  gap: 8px 10px;
  align-items: start;
  color: #4a342a;
}

.ttc-classic-card__meta li + li {
  margin-top: 10px;
}

.ttc-classic-card__meta li i {
  width: 18px;
  color: #b07a48;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  margin-top: 2px;
}

.ttc-classic-card__meta li strong {
  margin: 0;
  color: #5b3324;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
}

.ttc-classic-card__meta li span {
  color: #4a342a;
  font-size: 15.5px;
  line-height: 1.45;
  font-weight: 600;
  word-break: break-word;
}

.ttc-classic-card__line {
  height: 1px;
  margin: 16px 0;
  background: rgba(154, 86, 58, 0.22);
}

.ttc-classic-card__block-title {
  margin: 0 0 12px;
  color: #5b3324;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ttc-classic-card__pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4px;
}

.ttc-classic-card__price {
  padding: 0 10px 0 0;
}

.ttc-classic-card__price--border {
  padding: 0 0 0 16px;
  border-left: 1px solid rgba(154, 86, 58, 0.3);
}

.ttc-classic-card__price strong {
  display: block;
  color: #5b3324;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 800;
}

.ttc-classic-card__price span {
  display: block;
  margin-top: 6px;
  color: #4a342a;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
}

.ttc-classic-card__btn {
  display: block;
  width: 58%;
  margin: 12px auto 0;
  padding: 11px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #7f4c33 0%, #5f3423 100%);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 12px 26px rgba(95, 52, 35, 0.22);
  transition: var(--transition);
}

.ttc-classic-card__btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(95, 52, 35, 0.28);
}

.ttc-overview-gallery {
  position: relative;
}

.ttc-overview-gallery__slider {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.ttc-overview-gallery__slide {
  height: 600px;
  border: 1px solid rgba(154, 86, 58, 0.1);
  overflow: hidden;
  border-radius: 30px;
  background: #f5efe9;
}

.ttc-overview-gallery__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 30px;
}

.ttc-overview-gallery__prev,
.ttc-overview-gallery__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 56px;
  height: 76px;
  border: none;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.ttc-overview-gallery__prev {
  left: 0;
  border-radius: 0 18px 18px 0;
}

.ttc-overview-gallery__next {
  right: 0;
  border-radius: 18px 0 0 18px;
}

.ttc-overview-gallery__prev i,
.ttc-overview-gallery__next i {
  font-size: 28px;
}

.ttc-overview-gallery__prev:hover,
.ttc-overview-gallery__next:hover {
  background: rgba(154, 86, 58, 0.88);
}

.ttc-dates-classic-wrap {
  overflow: hidden;
  border: 1px solid rgba(154, 86, 58, 0.14);
  background: #fff;
}

.ttc-dates-classic {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.ttc-dates-classic th,
.ttc-dates-classic td {
  padding: 18px 16px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid rgba(154, 86, 58, 0.12);
}

.ttc-dates-classic thead th {
  font-weight: 700;
  border-color: rgba(255, 255, 255, 0.18);
}

.ttc-dates-classic__head-main th {
  background: var(--primary-color);
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.ttc-dates-classic__head-main th:last-child {
  border-right: none;
}

.ttc-dates-classic__head-sub th {
  background: rgba(154, 86, 58, 0.88);
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ttc-dates-classic__head-sub th:last-child {
  border-right: none;
}

.ttc-dates-classic tbody td {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  background: #fff;
}

.ttc-dates-classic tbody tr:nth-child(even) td {
  background: #fff8f4;
}

.ttc-dates-classic tbody td:first-child {
  width: 22%;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.ttc-dates-classic tbody td:nth-child(2),
.ttc-dates-classic tbody td:nth-child(3),
.ttc-dates-classic tbody td:nth-child(4) {
  width: 16%;
}

.ttc-dates-classic tbody td:last-child {
  width: 18%;
}

.ttc-dates-classic__book-btn {
  padding: 12px 12px;
  font-size: 15px;
  font-weight: 700;
  border-width: 1.5px;
  line-height: 1.2;
  min-width: 118px;
  text-align: center;
}

.ttc-inclusion-feature {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(180deg, #fff 0%, #fff8f4 100%);
  border: 1px solid rgba(154, 86, 58, 0.12);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(18, 31, 56, 0.05);
  transition: var(--transition);
}

.ttc-inclusion-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(154, 86, 58, 0.22);
  box-shadow: 0 18px 34px rgba(18, 31, 56, 0.08);
}

.ttc-inclusion-feature__icon {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fde5d8 0%, #fff3eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.ttc-inclusion-feature__icon img {
  width: 38px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.ttc-inclusion-feature__text {
  margin: 0;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.ttc-cert-image {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 18px;
  width: 100%;
  margin-bottom: 24px;
}

.ttc-cert__image {
  overflow: hidden;
  border-radius: 22px;
  border: 2px solid var(--primary-color);
  background: #fff;
  box-shadow: 0 16px 36px rgba(18, 31, 56, 0.08);
}

.ttc-cert__image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* existing class reuse */
.ttc-cert-power__image--main {
  height: 320px;
}

.ttc-cert-power__image--float {
  height: 320px;
}

.yoga-content {
  position: relative;
  z-index: 2;
}

.sub-heading {
  margin: 24px 0 12px;
  color: var(--text-color);
  font-family: "Philosopher", sans-serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.ttc-cert-power__list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.ttc-cert-power__list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 700;
  background: #fff;
  border: 1px solid rgba(154, 86, 58, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(18, 31, 56, 0.04);
}

.ttc-cert-power__list li + li {
  margin-top: 12px;
}

.ttc-cert-power__list li::before {
  content: "\f058";
  position: absolute;
  left: 18px;
  top: 17px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
  font-size: 17px;
}

/* hide old diamond if it remains in HTML text visually by replacing content spacing */
.ttc-cert-power__list li {
  text-indent: 0;
}

/* Syllabus hour cards responsive fix */
.ttc-syllabus-hours {
  margin: 0 0 24px;
}

.ttc-syllabus-hour-card {
  position: relative;
  height: 100%;
  min-height: 145px;
  padding: 24px 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: radial-gradient(circle at top right, rgba(154, 86, 58, 0.08), transparent 34%), linear-gradient(180deg, #fff 0%, #fff8f4 100%);
  border: 1px solid rgba(154, 86, 58, 0.14);
  outline: 1px solid rgba(154, 86, 58, 0.22);
  outline-offset: -9px;
  box-shadow: 1.5px 2.598px 14.88px 1.12px rgba(54, 72, 89, 0.1);
  cursor: pointer;
  transition: var(--transition);
}

.ttc-syllabus-hour-card:hover,
.ttc-syllabus-hour-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(154, 86, 58, 0.26);
  box-shadow: 0 18px 34px rgba(18, 31, 56, 0.09);
}

.ttc-syllabus-hour-card strong {
  display: block;
  color: var(--text-color);
  font-family: "Philosopher", sans-serif;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 800;
}

.ttc-syllabus-hour-card p {
  margin: 0;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

/* Accordion question UI */
.ttc-syllabus-accordion .accordion-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(154, 86, 58, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(18, 31, 56, 0.04);
}

.ttc-syllabus-accordion .accordion-button {
  position: relative;
  padding: 16px 50px 16px 18px;
  background: #fff;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: none;
}

.ttc-syllabus-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--text-dark);
}

.ttc-syllabus-accordion .accordion-button:focus {
  box-shadow: none;
}

.ttc-syllabus-accordion .accordion-button::after {
  position: absolute;
  right: 18px;
  filter: brightness(0);
}

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

.ttc-syllabus-accordion .accordion-body {
  padding: 18px;
  background: #fff;
}

/* Inner list cards */
.ttc-syllabus-list-card {
  height: 100%;
  padding: 16px 14px;
  border-radius: 14px;
  background: #fff8f4;
  border: 1px solid rgba(154, 86, 58, 0.1);
}

.ttc-syllabus-list-card h3 {
  margin: 0 0 10px;
  color: var(--text-color);
  font-family: "Philosopher", sans-serif;
  font-size: 19px;
  line-height: 1.2;
}

.ttc-syllabus-list-card ul,
.ttc-syllabus-tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ttc-syllabus-list-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.ttc-syllabus-list-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
}

.ttc-syllabus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ttc-syllabus-tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff8f4;
  color: var(--text-dark);
  border: 1px solid rgba(154, 86, 58, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.ttc-schedule-table-wrap {
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(154, 86, 58, 0.16);
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 31, 56, 0.06);
}

.ttc-schedule-table {
  width: 100%;
  margin: 0;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}

.ttc-schedule-table th {
  padding: 17px 18px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  vertical-align: middle;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 0;
}

.ttc-schedule-table th:first-child {
  width: 42%;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.ttc-schedule-table td {
  padding: 15px 18px;
  color: var(--text-dark);
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
  border: 0;
  border-bottom: 1px solid rgba(154, 86, 58, 0.12);
}

.ttc-schedule-table td:first-child {
  width: 42%;
  border-right: 1px solid rgba(154, 86, 58, 0.18);
}

.ttc-schedule-table tbody tr:nth-child(even) td {
  background: #fff8f4;
}

.ttc-schedule-table tbody tr:hover td {
  background: #fde5d8;
}

.ttc-schedule-table td:first-child {
  color: var(--text-color);
  font-weight: 600;
}

.ttc-schedule-table tbody tr:last-child td {
  border-bottom: 0;
}

.excursion-slider {
  position: relative;
  overflow: hidden;
  padding: 4px 4px 54px;
}

.excursion-slider .swiper-slide {
  height: auto;
}

.excursion-card {
  position: relative;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 30px rgba(18, 31, 56, 0.12);
  transition: var(--transition);
}

.excursion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(18, 31, 56, 0.16);
}

.excursion-card:hover .excursion-card__img img {
  transform: scale(1.07);
}

.excursion-card__img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.excursion-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.1) 35%, rgba(0, 0, 0, 0.78) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.02) 65%);
}

.excursion-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.8s ease;
}

.excursion-card__content {
  position: relative;
  z-index: 2;
  min-height: 220px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.excursion-card__content h3 {
  margin: 0 0 6px;
  color: #fff;
  font-family: "Philosopher", sans-serif;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.excursion-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13.5px;
  line-height: 1.4;
  font-weight: 600;
}

.ttc-food-notes {
  display: grid;
  gap: 12px;
}

.ttc-food-note {
  padding: 14px 18px;
  border: 1px solid rgba(154, 86, 58, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ttc-food-note--light {
  background: #fff1e8;
  color: #a55b3d;
}

.ttc-room-gallery__head {
  margin-bottom: 12px;
}

.ttc-room-gallery__head h3 {
  margin: 0;
  color: var(--text-color);
  font-family: "Philosopher", sans-serif;
  font-size: 32px;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.ttc-room-slider {
  overflow: hidden;
}

.ttc-room-card {
  height: 250px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(154, 86, 58, 0.14);
  box-shadow: 0 12px 30px rgba(18, 31, 56, 0.08);
}

.ttc-room-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.ttc-books-slider {
  overflow: hidden;
  padding: 6px 6px 18px;
}

.ttc-book-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.ttc-book-card img {
  width: 100%;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Soft glow + strong bottom gradient for text */
.ttc-book-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 100%, rgba(255, 220, 160, 0.35), transparent 50%), radial-gradient(circle at 80% 0%, rgba(255, 190, 130, 0.25), transparent 45%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(10, 20, 40, 0.55) 65%, rgba(10, 20, 40, 0.92) 100%);
  z-index: 1;
}

/* number badge */
.ttc-book-card__num {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 52px;
  height: 42px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #9a563a 0%, #c26a42 100%);
  border-bottom-left-radius: 14px;
  z-index: 3;
}

/* text overlay */
.ttc-book-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px 16px;
  color: #fff;
  z-index: 2;
}

.ttc-book-card__content h3 {
  margin: 0 0 6px;
  font-family: "Philosopher", sans-serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.ttc-book-card__content p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.95;
}

.ttc-short-card {
  display: block;
  text-decoration: none;
  padding: 2px;
  background: linear-gradient(135deg, #ffffff, #fff4ee);
  border: 2px solid rgb(26, 24, 24);
  box-shadow: 0 16px 36px rgba(18, 31, 56, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ttc-short-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(18, 31, 56, 0.16);
}

.ttc-short-card__media {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 9/16;
}

.ttc-short-card__media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ttc-short-card__caption {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #121f38;
  text-align: center;
}

/* Desktop unchanged */
/* Desktop unchanged */
.shorts-row {
  scroll-snap-type: x mandatory;
}

/* Mobile: one card full, smooth swipe, no scrollbar */
@media (max-width: 767px) {
  .shorts-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .shorts-row::-webkit-scrollbar {
    display: none;
  }
  .shorts-row {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
  }
}
/* mobile card size tweak */
@media (max-width: 767.98px) {
  .ttc-short-card__caption {
    font-size: 14px;
  }
}
.ttc-video-card {
  background: #fff;
  border: 2px solid rgba(154, 86, 58, 0.2);
  box-shadow: 0 14px 32px rgba(18, 31, 56, 0.12);
  overflow: hidden;
}

.ttc-video-card__frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.ttc-video-card__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ttc-video-card__caption {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  color: #121f38;
  text-align: center;
}

@media (max-width: 767.98px) {
  .ttc-video-card__caption {
    font-size: 14px;
    padding: 10px 12px;
  }
}
.ttc-video-card {
  background: #fff;
  border: 2px solid rgba(154, 86, 58, 0.2);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(18, 31, 56, 0.12);
  overflow: hidden;
}

.ttc-video-card__frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.ttc-video-card__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ttc-video-card__caption {
  padding: 6px 16px;
  font-size: 18px;
  font-weight: 700;
  color: #121f38;
  text-align: center;
}

@media (max-width: 767.98px) {
  .ttc-video-card__caption {
    font-size: 14px;
    padding: 10px 12px;
  }
}
/* ==========================================
   THAILAND FEATURES SECTION SCSS
   Desktop + Mobile Swipe + Theme Dots
========================================== */
.service-feature-row {
  position: relative;
}
.service-feature-row .service-card-box {
  background: #fff;
  height: 220px;
  width: 240px;
  padding: 22px 18px;
  margin: auto;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.service-feature-row .service-card-box:hover {
  transform: translateY(-6px);
}
.service-feature-row .service-card-box::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid #e7cfc3;
  pointer-events: none;
}
.service-feature-row .service-icon-wrap {
  margin-bottom: 22px;
}
.service-feature-row .service-icon-wrap img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-feature-row .service-title-box {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1f2a44;
  margin: 0;
}

/* ==========================================
   MOBILE SWIPE VIEW
========================================== */
@media (max-width: 767px) {
  .service-feature-row {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    padding: 0 10px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .service-feature-row::-webkit-scrollbar {
    display: none;
  }
  .service-feature-row > div {
    flex: 0 0 92%;
    max-width: 92%;
    scroll-snap-align: center;
  }
  .service-feature-row .service-card-box {
    width: 100%;
    height: 220px;
    border-radius: 10px;
  }
  .service-feature-row .service-icon-wrap img {
    width: 72px;
    height: 72px;
  }
  .service-feature-row .service-title-box {
    font-size: 15px;
  }
  /* THEME DOT INDICATOR */
  .about-features-section {
    position: relative;
  }
  .about-features-section::after {
    content: "● ● ●";
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    font-size: 14px;
    letter-spacing: 8px;
    color: var(--primary-color);
    opacity: 0.95;
    line-height: 1;
    z-index: 5;
  }
}
/* SMALL MOBILE */
@media (max-width: 480px) {
  .service-feature-row > div {
    flex: 0 0 96%;
    max-width: 96%;
  }
  .service-feature-row .service-card-box {
    height: 210px;
  }
  .service-feature-row .service-title-box {
    font-size: 14px;
  }
}
/* ===============================
   PROGRAM CARD SECTION CSS
================================= */
.program-card-wrapper {
  height: 100%;
}

.program-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: 0.35s ease;
}

/* ===============================
   IMAGE
================================= */
.program-card-img {
  overflow: hidden;
}

.program-card-img img {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
  transition: 0.5s ease;
}

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

/* ===============================
   TITLE BAR
================================= */
.program-title-bar {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 12px 18px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

/* ===============================
   CONTENT
================================= */
.prog-card-content {
  padding: 18px;
}

/* ===============================
   INFO ROW
================================= */
.yoga-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

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

/* ===============================
   ICON
================================= */
.yoga-info-icon {
  width: 37px;
  height: 37px;
  min-width: 36px;
  background: rgba(2, 104, 102, 0.08);
  color: var(--primary-color);
  border-radius: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   TEXT
================================= */
.info-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1px;
  letter-spacing: 0.5px;
}

.info-value {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.4;
}

/* ===============================
   PRICE ROW
================================= */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 6px;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.price-note {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 4px;
}

/* ==========================================
   WHY THAILAND SECTION FIXED LAYOUT
   Image upar + Right side same height
========================================== */
.why-thailand-section {
  /* top paragraph ke baad gap kam */
}
.why-thailand-section .why-top-text {
  margin-bottom: 28px !important;
}
.why-thailand-section {
  /* row top se start ho */
  /* left image wrapper */
}
.why-thailand-section .why-thailand-image {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.why-thailand-section .why-thailand-image img {
  width: 100%;
  height: 520px; /* desktop */
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.why-thailand-section {
  /* right side center nahi top se start */
}
.why-thailand-section .why-thailand-list-wrap {
  height: 520px; /* image ke equal */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 18px;
}
.why-thailand-section .why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.why-thailand-section .why-point i {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 5px;
  min-width: 20px;
}
.why-thailand-section .why-point p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
}
.why-thailand-section .why-point strong {
  color: var(--primary-dark);
}

/* ==========================
   TABLET
========================== */
@media (max-width: 991px) {
  .why-thailand-section .why-thailand-image img {
    height: 430px;
  }
  .why-thailand-section .why-thailand-list-wrap {
    height: auto;
    padding-left: 0;
    margin-top: 20px;
  }
  .why-thailand-section .why-point p {
    font-size: 17px;
  }
}
/* ==========================
   MOBILE
========================== */
@media (max-width: 767px) {
  .why-thailand-section .why-top-text {
    margin-bottom: 18px !important;
  }
  .why-thailand-section .why-thailand-image img {
    height: 290px;
  }
  .why-thailand-section .why-thailand-list-wrap {
    height: auto;
    margin-top: 18px;
    padding-left: 0;
  }
  .why-thailand-section .why-point {
    gap: 12px;
    margin-bottom: 16px;
  }
  .why-thailand-section .why-point i {
    font-size: 17px;
  }
  .why-thailand-section .why-point p {
    font-size: 15px;
    line-height: 1.6;
  }
}
/* ==========================================
   BALI CERTIFIED CLEAN SECTION
========================================== */
.bali-certified-clean-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.bali-certified-clean-section .container {
  position: relative;
  z-index: 2;
}

.bali-certified-clean-img {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #f8f9fa;
  box-shadow: 0 18px 42px rgba(18, 31, 56, 0.1);
}
.bali-certified-clean-img::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  z-index: 2;
  pointer-events: none;
}
.bali-certified-clean-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.bali-certified-clean-content {
  padding-left: 12px;
}
.bali-certified-clean-content .section-subtitle {
  margin-bottom: 10px;
}
.bali-certified-clean-content .section-title {
  margin-bottom: 18px;
}
.bali-certified-clean-content .para {
  text-align: left;
  font-size: 17px;
  line-height: 1.72;
  margin-bottom: 14px;
}

.bali-certified-clean-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 26px;
  border: 1px solid rgba(154, 86, 58, 0.16);
  background: #fff8f4;
}

.bali-certified-clean-item {
  min-height: 118px;
  padding: 20px 14px;
  text-align: center;
  border-right: 1px solid rgba(154, 86, 58, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transition: var(--transition);
}
.bali-certified-clean-item:last-child {
  border-right: 0;
}
.bali-certified-clean-item:hover {
  background: var(--primary-color);
}
.bali-certified-clean-item:hover i {
  background: #fff;
  color: var(--primary-color);
}
.bali-certified-clean-item:hover span {
  color: #fff;
}
.bali-certified-clean-item i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}
.bali-certified-clean-item span {
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
  transition: var(--transition);
}

/* ==========================================
   BALI COURSE PURPOSE SECTION
========================================== */
.bali-course-purpose-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(253, 229, 216, 0.42) 0%, rgba(255, 255, 255, 0.96) 48%, rgb(248, 249, 250) 100%);
}
.bali-course-purpose-section .container {
  position: relative;
  z-index: 2;
}

.bali-purpose-shape {
  position: absolute;
  left: -70px;
  top: 110px;
  width: 290px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.bali-purpose-shape img {
  width: 100%;
  height: auto;
  display: block;
}

.bali-purpose-card {
  position: relative;
  height: 100%;
  padding: 34px 32px;
  background: #fff;
  border: 1px solid rgba(154, 86, 58, 0.14);
  box-shadow: 0 18px 42px rgba(18, 31, 56, 0.08);
  transition: var(--transition);
  overflow: hidden;
}
.bali-purpose-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(154, 86, 58, 0.26);
  pointer-events: none;
}
.bali-purpose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(18, 31, 56, 0.12);
  border-color: rgba(154, 86, 58, 0.28);
}
.bali-purpose-card .inner-text,
.bali-purpose-card .bali-purpose-title,
.bali-purpose-card .para,
.bali-purpose-card .bali-purpose-list {
  position: relative;
  z-index: 2;
}
.bali-purpose-card .para {
  text-align: left;
  font-size: 17px;
  line-height: 1.75;
}

.bali-purpose-card--main {
  background: radial-gradient(circle at top right, rgba(253, 229, 216, 0.7), transparent 32%), #fff;
}

.bali-purpose-card--side {
  background: linear-gradient(180deg, #fff 0%, #fff8f4 100%);
}
.bali-purpose-card--side::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(154, 86, 58, 0.08);
}

.bali-purpose-title {
  margin: 20px 0 18px;
  color: var(--text-dark);
  font-family: "Philosopher", sans-serif;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
}

.bali-purpose-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.bali-purpose-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 14px;
  background: #fff;
  border: 1px solid rgba(154, 86, 58, 0.13);
  box-shadow: 0 8px 20px rgba(18, 31, 56, 0.04);
}
.bali-purpose-list__item i {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}
.bali-purpose-list__item span {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

/* ==========================================
   BALI ACTIVITY ZIGZAG SECTION - COMPACT
========================================== */
.bali-activity-zigzag-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 8% 10%, rgba(253, 229, 216, 0.42), transparent 26%), linear-gradient(180deg, #ffffff 0%, #fff8f4 48%, #f8f9fa 100%);
}
.bali-activity-zigzag-section .container {
  position: relative;
  z-index: 2;
}

.bali-activity-intro {
  max-width: 930px;
  margin: 0 auto 38px;
  padding: 20px 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(154, 86, 58, 0.12);
  box-shadow: 0 10px 28px rgba(18, 31, 56, 0.045);
}
.bali-activity-intro .para {
  font-size: 17px;
  line-height: 1.68;
  margin-bottom: 0;
  color: var(--text-dark);
}

.bali-activity-list {
  position: relative;
}

.bali-activity-block {
  position: relative;
  padding: 34px 0;
}
.bali-activity-block::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(154, 86, 58, 0.18), transparent);
}

.bali-activity-image {
  height: 365px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 16px 38px rgba(18, 31, 56, 0.11);
}
.bali-activity-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 6px;
}

.bali-activity-content {
  display: grid;
  gap: 14px;
}

.bali-activity-item {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(154, 86, 58, 0.11);
  border-left: 4px solid rgba(154, 86, 58, 0.68);
  box-shadow: 0 10px 24px rgba(18, 31, 56, 0.05);
  transition: var(--transition);
  overflow: hidden;
}
.bali-activity-item::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(253, 229, 216, 0.7);
  pointer-events: none;
  transition: var(--transition);
}
.bali-activity-item:hover {
  transform: translateY(-4px);
  border-left-color: var(--primary-color);
  box-shadow: 0 16px 34px rgba(18, 31, 56, 0.09);
}
.bali-activity-item:hover::after {
  transform: scale(1.18);
  background: rgba(154, 86, 58, 0.1);
}
.bali-activity-item:hover span {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.bali-activity-item:hover h3 {
  color: var(--primary-color);
}
.bali-activity-item span,
.bali-activity-item h3,
.bali-activity-item p {
  position: relative;
  z-index: 2;
}
.bali-activity-item span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff3eb;
  color: var(--primary-color);
  border: 1px solid rgba(154, 86, 58, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  transition: var(--transition);
}
.bali-activity-item h3 {
  margin: 0 0 6px;
  color: var(--text-color);
  font-family: "Philosopher", sans-serif;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 700;
  transition: var(--transition);
}
.bali-activity-item p {
  margin: 0;
  color: var(--text-dark);
  font-size: 15.5px;
  line-height: 1.58;
  font-weight: 600;
}

.bali-activity-note {
  position: relative;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 14px 30px rgba(18, 31, 56, 0.1);
  overflow: hidden;
}
.bali-activity-note p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 700;
}

/* View More */
.bali-activity-more {
  display: none;
}

.bali-activity-more.is-open {
  display: block;
  animation: baliActivityFade 0.4s ease both;
}

.bali-activity-toggle {
  min-width: 148px;
  padding-left: 24px;
  padding-right: 24px;
}

@keyframes baliActivityFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1199.98px) {
  .bali-activity-image {
    height: 340px;
  }
  .bali-activity-item {
    padding: 17px 18px;
  }
  .bali-activity-item h3 {
    font-size: 22px;
  }
  .bali-activity-item p {
    font-size: 15px;
    line-height: 1.55;
  }
}
@media (max-width: 991.98px) {
  .bali-activity-intro {
    margin-bottom: 28px;
    padding: 18px 20px;
  }
  .bali-activity-intro .para {
    font-size: 16px;
    line-height: 1.65;
  }
  .bali-activity-block {
    padding: 30px 0;
  }
  .bali-activity-image {
    height: 320px;
  }
}
@media (max-width: 767.98px) {
  .bali-activity-zigzag-section {
    padding: 55px 0;
  }
  .bali-activity-block {
    padding: 26px 0;
  }
  .bali-activity-image {
    height: 260px;
    padding: 7px;
  }
  .bali-activity-content {
    gap: 12px;
  }
  .bali-activity-item {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 15px 14px;
    border-left-width: 3px;
  }
  .bali-activity-item span {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }
  .bali-activity-item h3 {
    font-size: 20px;
  }
  .bali-activity-item p {
    font-size: 14px;
    line-height: 1.55;
  }
  .bali-activity-note {
    padding: 16px;
  }
  .bali-activity-note p {
    font-size: 14px;
    line-height: 1.55;
  }
  .bali-activity-toggle {
    width: 100%;
    max-width: 220px;
  }
}
@media (max-width: 575.98px) {
  .bali-activity-image {
    height: 230px;
  }
  .bali-activity-item {
    grid-template-columns: 1fr;
  }
  .bali-activity-item span {
    margin-bottom: 0;
  }
}
/* =========================================
   PAYMENT POLICY COMPACT UI
========================================= */
.payflow-section {
  background: linear-gradient(180deg, #f1f3f5 0%, #faf7f4 35%, #fff 100%);
  overflow: hidden;
}
.payflow-section .payflow-shell {
  padding: 40px;
  border: 1px solid rgba(18, 31, 56, 0.08);
  border-radius: 28px;
  background: radial-gradient(circle at top right, rgba(154, 86, 58, 0.06), transparent 26%), #fffdfb;
  box-shadow: 0 24px 60px rgba(18, 31, 56, 0.07);
}
.payflow-section .payflow-eyebrow,
.payflow-section .payflow-chip,
.payflow-section .payflow-help__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.payflow-section .payflow-eyebrow {
  background: #fff1e8;
  color: var(--primary-color);
}
.payflow-section .payflow-title {
  margin: 16px 0 12px;
  color: var(--text-dark);
  font-family: "Philosopher", sans-serif;
  font-size: 44px;
  line-height: 1.12;
}
.payflow-section .payflow-title span {
  color: var(--text-color);
}
.payflow-section .payflow-lead {
  margin: 0;
  max-width: 90%;
  color: #48566d;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
}
.payflow-section .payflow-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.payflow-section .payflow-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(154, 86, 58, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}
.payflow-section .payflow-item i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: #f7eee8;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-top: 2px;
}
.payflow-section .payflow-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.4;
}
.payflow-section .payflow-item p {
  margin: 0;
  color: #5d6778;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}
.payflow-section .payflow-help {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(154, 86, 58, 0.12);
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.payflow-section .payflow-help__text small {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.payflow-section .payflow-help__text a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  text-decoration: none;
}
.payflow-section .payflow-help__text i {
  color: #25d366;
  font-size: 28px;
  line-height: 1;
}
.payflow-section .payflow-help__badge {
  background: #f8eee9;
  color: var(--primary-color);
  white-space: nowrap;
}
.payflow-section .payflow-card {
  padding: 28px;
  border: 1px solid rgba(18, 31, 56, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 31, 56, 0.06);
}
.payflow-section .payflow-chip {
  background: #eef5ff;
  color: #0f5bd6;
}
.payflow-section .payflow-card__title {
  margin: 16px 0 8px;
  color: var(--text-dark);
  font-family: "Philosopher", sans-serif;
  font-size: 32px;
  line-height: 1.15;
}
.payflow-section .payflow-card__text,
.payflow-section .payflow-note {
  margin: 0;
  color: #5d6778;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
}
.payflow-section .payflow-prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0;
}
.payflow-section .payflow-prices div {
  padding: 16px;
  border: 1px solid rgba(154, 86, 58, 0.1);
  border-radius: 16px;
  background: #faf6f2;
}
.payflow-section .payflow-prices small {
  display: block;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.payflow-section .payflow-prices strong {
  display: block;
  margin-top: 8px;
  color: var(--text-dark);
  font-family: "Philosopher", sans-serif;
  font-size: 28px;
  line-height: 1;
}
.payflow-section .payflow-form {
  display: grid;
  gap: 14px;
}
.payflow-section .payflow-field span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.payflow-section .payflow-control {
  height: 52px;
  border: 1px solid rgba(18, 31, 56, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 600;
  box-shadow: none;
}
.payflow-section .payflow-control:focus {
  border-color: rgba(154, 86, 58, 0.45);
  box-shadow: 0 0 0 4px rgba(253, 229, 216, 0.7);
}
.payflow-section .payflow-btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: 0.3s ease;
}
.payflow-section .payflow-btn:hover {
  transform: translateY(-2px);
}
.payflow-section .payflow-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 31, 56, 0.08);
}

/* =========================================
   TEACHER PROFILE SECTION
========================================= */
.teachers-profile-section {
  position: relative;
  overflow: hidden;
}
.teachers-profile-section .teacher-profile-img {
  border-radius: 24px;
  overflow: hidden;
}
.teachers-profile-section .teacher-profile-img img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.45s ease;
}
.teachers-profile-section .teacher-profile-img:hover img {
  transform: scale(1.05);
}
.teachers-profile-section .teacher-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--secondary-color);
  color: var(--text-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.teachers-profile-section .teacher-info-card {
  background: var(--secondary-color);
  padding: 12px 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(18, 31, 56, 0.06);
  height: 100%;
  transition: 0.3s ease;
}
.teachers-profile-section .teacher-info-card span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.teachers-profile-section .teacher-info-card h5 {
  margin: 0;
  font-size: 24px;
  color: var(--text-color);
  font-weight: 600;
}
.teachers-profile-section .teacher-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(18, 31, 56, 0.1);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px) {
  .teachers-profile-section .teacher-profile-img img {
    min-height: auto;
    max-height: 550px;
  }
  .teachers-profile-section .section-title,
  .teachers-profile-section .section-subtitle,
  .teachers-profile-section .teacher-badge {
    text-align: center;
    display: block;
  }
  .teachers-profile-section .teacher-badge {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767.98px) {
  .teachers-profile-section .teacher-profile-img img {
    max-height: 420px;
  }
  .teachers-profile-section .teacher-badge {
    font-size: 13px;
    padding: 8px 14px;
  }
  .teachers-profile-section .teacher-info-card {
    padding: 18px;
  }
  .teachers-profile-section .teacher-info-card h5 {
    font-size: 20px;
  }
}
@media (max-width: 575.98px) {
  .teachers-profile-section .teacher-profile-img img {
    max-height: 340px;
  }
  .teachers-profile-section .teacher-info-card {
    text-align: center;
  }
}
/* Floating WhatsApp Left */
.btn-whatsapp-pulse {
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  animation: pulseWhatsapp 1.8s infinite;
}

/* Scroll To Top UI Same Style */
.scroll-btn {
  position: fixed;
  right: 45px; /* WhatsApp ke left side */
  bottom: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #a8623e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.35s ease;
  box-shadow: 0 0 0 12px rgba(240, 240, 240, 0.55);
}

/* Show Class */
.scroll-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Hover */
.scroll-btn:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.03);
}

/* Icon */
.scroll-btn i {
  line-height: 0.1;
}

/* Mobile */
@media (max-width: 767px) {
  .scroll-btn {
    right: 68px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    font-size: 26px;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.55);
  }
}
@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
/* Mobile */
@media (max-width: 767px) {
  .btn-whatsapp-pulse {
    left: 25px;
    bottom: 50px;
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .scroll-btn {
    right: 40px;
    bottom: 50px;
    width: 50px;
    height: 50px;
  }
}
/* =========================================
ABOUT TEAM SECTION
(Only New Custom Styles - Reuse Existing Header CSS)
========================================= */
.about-aatm-team {
  position: relative;
  overflow: hidden;
  /* card */
}
.about-aatm-team__card {
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #cea08e;
  transition: 0.35s ease;
}
.about-aatm-team {
  /* image */
}
.about-aatm-team__image {
  overflow: hidden;
}
.about-aatm-team__image img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.45s ease;
}
.about-aatm-team {
  /* content */
}
.about-aatm-team__content {
  padding: 18px 18px 22px;
}
.about-aatm-team__content h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-family: "Philosopher", sans-serif;
}
.about-aatm-team__content p {
  margin: 0;
  color: var(--primary-color);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
}

/* =========================================
   RETREAT SECTION - FINAL CLEAN SCSS
========================================= */
.yoga-courses-section {
  position: relative;
  overflow: hidden;
}
.yoga-courses-section .retreat-box {
  border: 1px solid var(--primary-dark);
  background: radial-gradient(circle at top right, rgba(253, 229, 216, 0.7), transparent 32%), #fff;
}
.yoga-courses-section {
  /* ===============================
     LEFT GALLERY
  =============================== */
}
.yoga-courses-section .retreat-gallery-wrap {
  height: 100%;
}
.yoga-courses-section .retreat-gallery-main,
.yoga-courses-section .retreat-gallery-sm {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}
.yoga-courses-section .retreat-gallery-main img,
.yoga-courses-section .retreat-gallery-sm img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.yoga-courses-section .retreat-gallery-main:hover img,
.yoga-courses-section .retreat-gallery-sm:hover img {
  transform: scale(1.05);
}
.yoga-courses-section .retreat-gallery-main {
  height: 330px;
}
.yoga-courses-section .retreat-gallery-sm {
  height: 160px;
}
.yoga-courses-section .retreat-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.yoga-courses-section {
  /* ===============================
     RIGHT CONTENT
  =============================== */
}
.yoga-courses-section .retreat-content {
  padding-left: 24px;
}
.yoga-courses-section .retreat-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  font-family: "Philosopher", sans-serif;
  color: var(--primary-color);
}
.yoga-courses-section .retreat-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 24px;
}
.yoga-courses-section {
  /* ===============================
     BADGES
  =============================== */
}
.yoga-courses-section .retreat-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.yoga-courses-section .retreat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  background: #fff8f4;
  border: 1px solid rgba(154, 86, 58, 0.14);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
}
.yoga-courses-section {
  /* ===============================
     FEATURE BOX
  =============================== */
}
.yoga-courses-section .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  height: 100%;
  background: #fff8f4;
  border: 1px solid rgba(154, 86, 58, 0.12);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  transition: 0.3s ease;
}
.yoga-courses-section .feature-item i {
  color: var(--primary-color);
  font-size: 18px;
  min-width: 18px;
}
.yoga-courses-section .feature-item:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}
.yoga-courses-section {
  /* ===============================
     BOTTOM SECTION
  =============================== */
}
.yoga-courses-section .retreat-bottom {
  border-top: 1px solid rgba(18, 31, 56, 0.08);
  padding-top: 24px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.yoga-courses-section {
  /* ===============================
     COURSE PRICE BOX
  =============================== */
}
.yoga-courses-section .course-price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}
.yoga-courses-section .course-price-label {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.7;
}
.yoga-courses-section .course-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.yoga-courses-section .course-price-amount {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
  font-family: "Philosopher", sans-serif;
  transition: 0.3s ease;
}
.yoga-courses-section .course-price-currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}
.yoga-courses-section .course-old-price {
  font-size: 15px;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
}
.yoga-courses-section .course-price-offer {
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
}
.yoga-courses-section {
  /* ===============================
     BUTTON GROUP
  =============================== */
}
.yoga-courses-section .retreat-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991px) {
  .yoga-courses-section .retreat-content {
    padding-left: 0;
    padding-top: 25px;
  }
  .yoga-courses-section .retreat-title {
    font-size: 26px;
  }
  .yoga-courses-section .course-price-amount {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .yoga-courses-section .retreat-title {
    font-size: 24px;
  }
  .yoga-courses-section .retreat-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .yoga-courses-section .feature-item {
    font-size: 15px;
    padding: 12px;
  }
  .yoga-courses-section .retreat-badge-list {
    gap: 6px;
    margin-bottom: 16px;
  }
  .yoga-courses-section .retreat-badge {
    font-size: 14px;
    padding: 8px 12px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 30px;
    gap: 6px;
  }
  .yoga-courses-section .retreat-badge i {
    font-size: 11px;
  }
  .yoga-courses-section .course-price-label {
    font-size: 12px;
  }
  .yoga-courses-section .course-price-amount {
    font-size: 28px;
  }
  .yoga-courses-section .course-price-currency {
    font-size: 14px;
  }
  .yoga-courses-section .retreat-btn-group {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .yoga-courses-section .course-price-amount {
    font-size: 24px;
  }
  .yoga-courses-section .retreat-gallery-main {
    height: 250px;
  }
  .yoga-courses-section .retreat-gallery-sm {
    height: 130px;
  }
}/*# sourceMappingURL=style.css.map */