.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;

  background-size: 150px 150px;
  background-repeat: repeat;
  z-index: -1;
}

.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;

  z-index: 10;
}

.quote-text {
  color: #965995;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.description {
  color: #5a6c7d;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  text-align: justify;
}

.cta-button {
  background: linear-gradient(45deg, #965995, #965995);
  color: white;
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
  background: linear-gradient(45deg, #965995, #965995);
}

.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.yoga-image {
  width: 450px;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 6px solid rgba(255, 255, 255, 0.8);
}

.yoga-image:hover {
  /* transform: scale(1.05) rotate(2deg); */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  color: #965995;
  font-size: 5rem;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 10%;
  left: 102%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 70%;
  right: -17%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.decorative-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.2)
  );
  top: -50px;
  right: -50px;
  z-index: -1;
}

.stats-overlay {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.stats-text {
  font-size: 0.9rem;
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
}

.highlight-text {
  color: #965995;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-heading {
    font-size: 2.5rem;
  }

  .yoga-image {
    width: 300px;
    height: 300px;
  }

  .hero-section {
    padding: 1rem 0;
  }

  .description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 2rem;
  }

  .yoga-image {
    width: 250px;
    height: 250px;
    border-radius: 20px;
  }

  .quote-text {
    font-size: 1rem;
  }

  .floating-element:nth-child(2) {
    top: 70%;
    right: 1%;
    animation-delay: 2s;
  }

  .floating-element:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
  }

  .floating-element:nth-child(1) {
    top: 10%;
    left: 88%;
    animation-delay: 0s;
  }

  .floating-element {
    font-size: 3rem;
  }
}

.courses-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 20px;
  flex-wrap: wrap;
}

.course-card {
  width: 250px;
  height: 250px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(150, 89, 149, 0.2),
    0 16px 32px rgba(150, 89, 149, 0.15), 0 24px 48px rgba(150, 89, 149, 0.1);
  border: 1px solid rgba(150, 89, 149, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(150, 89, 149, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.course-card:hover::before {
  animation: shimmer 1.5s ease-in-out infinite;
  opacity: 1;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.course-card:hover {
  transform: translateY(-15px) scale(1.05) translateZ(20px);
  box-shadow: 0 12px 24px rgba(150, 89, 149, 0.25),
    0 24px 48px rgba(150, 89, 149, 0.2), 0 36px 72px rgba(150, 89, 149, 0.15);
  background: #ffffff;
}

.yoga-icon {
  width: 100px;
  height: 100px;
  transition: all 0.3s ease;
}

.course-card:hover .yoga-icon {
  transform: scale(1.3) rotateY(360deg);
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.course-card {
  animation: floatIn 0.8s ease-out forwards;
}

.course-card:nth-child(1) {
  animation-delay: 0.1s;
}

.course-card:nth-child(2) {
  animation-delay: 0.3s;
}

.course-card:nth-child(3) {
  animation-delay: 0.5s;
}

@media (max-width: 768px) {
  .courses-container {
    gap: 40px;
  }

  .course-card {
    width: 200px;
    height: 200px;
  }

  .yoga-icon {
    width: 80px;
    height: 80px;
  }
}

.about-ashtanga {
  padding: 10px 0;
  /* background-color: #faf8f0; */
  padding-bottom: 80px;
}

.about-content {
  display: flex;
  /* align-items: stretch; */
}

.about-text {
  background: white;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;

  /* ✨ 3D Effect Enhancers */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 5px 10px rgba(0, 0, 0, 0.04);
  transform: perspective(1000px) translateZ(0);
  transition: all 0.3s ease-in-out;
}

/* Optional: subtle hover lift */

.about-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(45deg, #965995 0%, #f1ce63 50%, #ffffff 100%);
  border-radius: 0 2px 2px 0;
}

.about-text p {
  color: #5d6c7b;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.image-grid {
  position: relative;
  height: 500px;
  /* background-color: #faf8f0; */
  border-radius: 20px;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: 50px;
}

.yoga-image-2 {
  width: 350px;
  height: 400px;
  object-fit: cover;
  border-radius: 55px 0 0 55px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 6px solid rgba(255, 255, 255, 0.8);
  position: absolute;
}

.yoga-image-3 {
  width: 350px;
  height: 400px;
  object-fit: cover;
  border-radius: 0px 55px 55px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 6px solid rgba(255, 255, 255, 0.8);
  position: absolute;
}

.yoga-image-main {
  top: 0;
  left: 0;
}

.yoga-image-overlap {
  top: 100px;
  left: 200px;
}

.yoga-image:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    min-height: auto;
  }

  .about-text {
    margin-bottom: 30px;
  }

  .image-grid {
    height: 700px;
    /* Increased height to accommodate stacked images */
    margin-left: 0;
    /* Remove margin for mobile */
  }

  .image-container {
    margin-left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .yoga-image-2,
  .yoga-image-3 {
    width: 100%;
    height: 300px;
    /* Reduced height for mobile stack */
    position: static;
    /* Remove absolute positioning for stacking */
    border-radius: 55px;
    /* Uniform radius for mobile */
    margin-bottom: 20px;
    /* Space between images */
  }

  .yoga-image-main {
    top: auto;
    left: auto;
  }

  .yoga-image-overlap {
    top: auto;
    left: auto;
    transform: none;
    /* Remove rotation for mobile */
  }

  .instructor-badge {
    top: 10px;
    right: 10px;
  }

  .class-badge {
    bottom: 10px;
    left: 10px;
  }

  .yoga-image-2 {
    border-radius: 55px 55px 0 0;
    /* Top image radius */
  }

  .yoga-image-3 {
    border-radius: 0 0 55px 55px;
    /* Bottom image radius */
  }
}
.why-choose-section {
  /* background: url('https://www.transparenttextures.com/patterns/arabesque.png'); */
  padding: 80px 0;
  position: relative;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  padding: 20px;
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 340px;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: scale(1.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content h5 {
  font-weight: 700;
  color: #1e3d3b;
  margin-bottom: 5px;
}

.feature-content p {
  margin: 0;
  color: #444;
  font-size: 14px;
}

.left-curve,
.right-curve {
  position: relative;
  min-height: 500px;
}

/* LEFT curved placement */
.left-curve .feature-box:nth-child(1) {
  position: absolute;
  top: 0%;
  left: 0;
  transform: translateX(90px) translateY(0);
}

.left-curve .feature-box:nth-child(2) {
  position: absolute;
  top: 35%;
  left: 0;
  transform: translateX(2px) translateY(0);
}

.left-curve .feature-box:nth-child(3) {
  position: absolute;
  bottom: 0%;
  left: 0;
  transform: translateX(90px) translateY(0);
}

/* RIGHT curved placement */
.right-curve .feature-box:nth-child(1) {
  position: absolute;
  top: 0%;
  right: 0;
  transform: translateX(-61px) translateY(0);
}

.right-curve .feature-box:nth-child(2) {
  position: absolute;
  top: 35%;
  right: 0;
  transform: translateX(25px) translateY(0);
}

.right-curve .feature-box:nth-child(3) {
  position: absolute;
  bottom: 0%;
  right: 0;
  transform: translateX(-61px) translateY(0);
}

.center-img-wrapper {
  text-align: center;
  z-index: 1;
}

.center-img-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .left-curve .feature-box,
  .right-curve .feature-box {
    position: static !important;
    transform: none !important;
    margin-bottom: 20px;
  }

  .center-img-wrapper {
    margin: 40px 0;
  }

  .feature-box {
    margin: 0 auto;
  }
}
.course_card_custom {
  border-radius: 40px 0 16px 16px;
  /* Curved top-left only */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.course_card_custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 6px 15px rgba(0, 0, 0, 0.12);
}

/* Increased image height */
.course-card-img {
  height: 260px;
  object-fit: cover;
}

/* Color for icons/text in info line */
.info-line {
  color: #ecc760;
  font-weight: 500;
  font-size: 15px;
}

/* Heading color */
.course-title {
  color: #965995;
}

.home_cards {
  background-image: url("../../assets/images/shapes/wavy.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #f3f3f3;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem; /* for small screens spacing */
  box-sizing: border-box;
  position: relative;
}

/* Responsive tuning */
@media (max-width: 991px) {
  .home_cards {
    background-size: contain;
    background-position: top;
    min-height: auto;
    padding: 6rem 1rem 3rem;
  }
}

@media (max-width: 576px) {
  .home_cards {
    background-size: contain;
    background-position: top;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
}

/* General Card Style */
.home_cards .feature-card {
  display: flex;
  flex-direction: row-reverse;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  min-height: 260px;
  position: relative;
  border: 2px solid #965995;
}

.home_cards .feature-card:hover {
  transform: translateY(-4px);
}

/* Right Image */
.home_cards .image-part {
  width: 150px;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 3;
  padding: 1rem;
  position: relative;
}

.home_cards .image-part img {
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.4s ease;
  z-index: 4;
}

.home_cards .feature-card:hover img {
  transform: scale(1.05);
}

/* Content with hover effect */
.home_cards .card-content {
  flex: 1;
  padding: 2rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.home_cards .card-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 100%;
  background: linear-gradient(135deg, #965995, #c678a8);
  border-radius: 50px 0 0 50px;
  transition: width 0.5s ease-in-out, border-radius 0.5s ease-in-out;
  z-index: -1;
}

.home_cards .feature-card:hover .card-content::before {
  width: 100%;
  border-radius: 0;
}

/* Text Animations */
.home_cards .card-content h5,
.home_cards .card-content p {
  margin: 0;
  position: relative;
  transition: all 0.4s ease;
  z-index: 2;
}

.home_cards .feature-card:hover .card-content h5 {
  transform: translateY(-2px);
  color: #fff;
}

.home_cards .feature-card:hover .card-content p {
  color: #fff;
  opacity: 0.95;
}

/* Typography */
.home_cards .card-content h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.home_cards .card-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .home_cards .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .home_cards .image-part {
    width: 100%;
    justify-content: center;
  }

  .home_cards .card-content {
    padding: 1.5rem;
  }

  .home_cards .card-content::before {
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    border-radius: 50px 50px 0 0;
  }

  .home_cards .feature-card:hover .card-content::before {
    height: 100%;
    border-radius: 0;
  }

  .home_cards .feature-card:hover .card-content h5,
  .home_cards .feature-card:hover .card-content p {
    color: #fff;
  }
}

.section-title {
  position: relative;
  margin-bottom: 30px;
}

.section-subtitle {
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  color: #965995;
  /* coral or brand accent color */
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.yoga-curriculum {
  background-color: #f8f9fa;
  /* Lightest grey background */
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.yoga-curriculum::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(150, 89, 149, 0.1) 0%,
    transparent 70%
  );
  z-index: 0;
}

.yoga-curriculum .container {
  max-width: 1400px;
  position: relative;
  z-index: 1;
}

.yoga-curriculum__inner {
  /* background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%); */
  border-radius: 40px;
  padding: 80px;
  /* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1); */
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .yoga-curriculum__inner {
    padding: 60px 40px;
  }
}

@media (max-width: 575px) {
  .yoga-curriculum__inner {
    padding: 40px 20px;
  }
}

.yoga-curriculum__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  transition: opacity 0.6s ease;
}

@media (max-width: 767px) {
  .yoga-curriculum__title {
    font-size: 32px;
  }
}

.yoga-curriculum__card {
  background-color: #ffffff;
  border-radius: 25px;
  padding: 35px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(150, 89, 149, 0.2);
  box-shadow: 0 10px 30px rgba(150, 89, 149, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.1);
  /* 3D effect */
}

.yoga-curriculum__card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(150, 89, 149, 0.25),
    0 10px 20px rgba(0, 0, 0, 0.15);
}

.yoga-curriculum__icon {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(45deg, #965995, #b07ab0); */
  border-radius: 50%;
  margin: 0 auto 25px;
  transition: transform 0.4s ease, background 0.4s ease;
  box-shadow: 0 5px 15px rgba(150, 89, 149, 0.3);
}

.yoga-curriculum__card:hover .yoga-curriculum__icon {
  transform: rotate(10deg) scale(1.1);
  /* background: linear-gradient(45deg, #7b4b7a, #965995); */
}

.yoga-curriculum__icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.yoga-curriculum__card:hover .yoga-curriculum__icon img {
  transform: scale(1.2);
}

.yoga-curriculum__card-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.yoga-curriculum__card-title a {
  color: inherit;
  text-decoration: none;
  background: linear-gradient(to right, #965995 0%, #965995 100%) 0 100%/0 3px
    no-repeat;
  transition: background-size 0.5s ease;
}

.yoga-curriculum__card-title a:hover {
  background-size: 100% 3px;
  color: #965995;
}

.yoga-curriculum__card-text {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.8;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
.food_Section .food-img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: block;
}

.food_Section .food-img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(150, 89, 149, 0.2);
}

/* Optional: small gap between images */
.food_Section .col-6 {
  padding: 5px;
}

.accommodation_Section .accom-img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: block;
}

.accommodation_Section .accom-img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(150, 89, 149, 0.2);
}

.accommodation_Section .col-6 {
  padding: 5px;
}

#why_rishikesh_best {
  background-image: url("../../assets/rishikesh.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

#why_rishikesh_best::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(119, 104, 148, 0.91);
  z-index: 1;
}

#why_rishikesh_best .content {
  position: relative;
  z-index: 2;
  color: white;
}

#why_rishikesh_best h2 {
  color: white;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

#why_rishikesh_best p {
  color: white;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  #why_rishikesh_best h2 {
    font-size: 2rem;
  }

  #why_rishikesh_best p {
    font-size: 1.1rem;
  }

  #why_rishikesh_best {
    background-attachment: scroll;
  }
}

.testimonial-reviewSlider-section {
  background: url("https://images.unsplash.com/photo-1528715471579-d1aeaaeceb53?auto=format&fit=crop&w=1470&q=80")
    center/cover no-repeat;
  padding: 80px 0;
  position: relative;
}

.testimonial-reviewSlider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f8f9fa;
  z-index: 0;
}

.testimonial-reviewSlider-container {
  position: relative;
  z-index: 1;
}

.testimonial-reviewSlider {
  position: relative;
}

.testimonial-reviewSlider-slide {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  margin: 10px;
  min-height: 280px;
  /* Ensure uniform height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-reviewSlider-slide img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  margin-bottom: 10px;
  margin: 0px auto;
}

.testimonial-stars {
  color: gold;
  font-size: 16px;
}

.testimonial-name {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}

.testimonial-role {
  font-size: 14px;
  color: #f39c12;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  font-style: italic;
  margin-bottom: 15px;
  overflow: hidden;
  max-height: 60px;
  /* Limit height for preview */
  transition: max-height 0.3s ease;
}

.testimonial-text.expanded {
  max-height: none;
  /* Show full text when expanded */
}

.read-more-btn {
  background: white;
  color: #965995;
  border: 2px solid #965995;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  width: 100%;
  transition: all 0.3s ease;
  /* smooth transition for hover */
}

.read-more-btn:hover {
  background: #965995;
  /* Fill with your main color */
  color: white;
  /* Text becomes white */
  box-shadow: 0 4px 12px rgba(150, 89, 149, 0.4);
  /* soft shadow */
  transform: translateY(-2px);
  /* slight lift effect */
}

.read-more-reviews {
  background: #965995;
  /* Fill with your main color */
  color: white;
  /* Text becomes white */
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  width: 300px;
  transition: all 0.3s ease;
}

.read-more-reviews:hover {
  background: white;
  color: #965995;
  border: 2px solid #965995;
  box-shadow: 0 4px 12px rgba(150, 89, 149, 0.4);
  /* soft shadow */
  transform: translateY(-2px);
  /* slight lift effect */
}

.journey {
  background: url("../../assets/bg-3.webp") no-repeat center center;
  background-size: cover;
  font-family: "Segoe UI", sans-serif;
  min-height: 70vh;
}

.start_journey {
  background-color: white;
  border-radius: 40px;
  padding: 60px 40px;
  max-width: 700px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  /* Added to center the div horizontally */
}

.start_journey h2 {
  font-weight: 700;
  color: #975994;
  /* dark green */
}

.highlight-link {
  color: #975994;
  text-decoration: none;
  font-weight: 500;
}

.highlight-link:hover {
  text-decoration: underline;
}

.yoga-image {
  max-height: 320px;
  width: 100%;
}

@media (max-width: 767px) {
  .start_journey {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .yoga-image {
    margin-top: 30px;
    max-height: 200px;
  }
}

/* ABOUT SCHOOL PAGE  */

.ttc-service-section {
  position: relative;
  padding: 60px 0;
}

.ttc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.ttc-section-title {
  margin-bottom: 50px;
}

.ttc-section-subtitle {
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.ttc-hero-banner__title__purple {
  color: #8e44ad;
}

.ttc-service-item {
  /* border: 1px solid #ddd;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        padding: 30px 20px;
        text-align: center;
        background: #ffffff; */
  /* Removed gradient background */
  height: 100%;
  margin: 0 10px;
  /* Added margin for proper spacing */
}

.ttc-service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.ttc-service-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ttc-service-title {
  margin-bottom: 15px;
}

.ttc-service-title a {
  color: #333;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
}

.ttc-service-text {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.ttc-yoga-slider {
  padding-bottom: 50px;
  overflow: hidden;
  /* Prevents partial slides from showing */
}

.ttc-yoga-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.ttc-yoga-slider .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.ttc-pagination {
  bottom: 10px !important;
  text-align: center;
}

.ttc-pagination .swiper-pagination-bullet {
  background: #333;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0 6px;
}

.ttc-pagination .swiper-pagination-bullet-active {
  background: #8e44ad;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 767px) {
  .ttc-service-item {
    margin: 0 5px;
  }

  .ttc-service-title a {
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ttc-service-item {
    margin: 0 8px;
  }
}

@media (min-width: 992px) {
  .ttc-service-item {
    margin: 0 10px;
  }
}

/* Hide scrollbars */
.ttc-yoga-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ttc-yoga-slider::-webkit-scrollbar {
  display: none;
}

/* TEACHER PAGE  */
.teacher-card {
  /* background: white; */
  border-radius: 20px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  margin: 20px 0;
}

.teacher-image-section {
  /* height: 400px; */
  /* fixed height */
  overflow: hidden;
  /* no overflow */
}

.teacher-image {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  /* cover without stretching */
  display: block;
  border-radius: 30px 30px 0px 0px;
}

.teacher-info {
  background: #965995;
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 0px 0px 30px 30px;
}

.teacher-role-badge {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.teacher-name {
  font-size: 30px !important;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: white;
}

.share-btn {
  font-size: 18px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: scale(1.1);
}

.social-links {
  display: none;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
  background: rgba(40, 167, 69, 0.95);
  padding: 10px;
  border-radius: 15px;
  white-space: nowrap;
  z-index: 10;
}

.share-btn:hover .social-links {
  display: flex;
}

.social-link {
  color: white;
  font-size: 16px;
  text-decoration: none;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #fff;
  transform: scale(1.2);
}

.teacher-content {
  padding: 30px;
}

.teacher-description {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.teacher-description p {
  margin: 0 0 15px;
}

.teacher-details {
  margin-top: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
}

.detail-label {
  font-weight: 600;
  color: #333;
  width: 120px;
  flex-shrink: 0;
  font-size: 14px;
}

.detail-value {
  color: #666;
  flex-grow: 1;
  font-size: 14px;
}

.detail-divider {
  border: 0;
  border-top: 2px solid grey;
  margin: 0;
}

/* Tablet */
@media (max-width: 768px) {
  .teacher-card {
    margin: 10px;
    border-radius: 15px;
  }

  .teacher-image-section {
    height: 300px;
    /* reduced height for tablet */
  }

  .teacher-content {
    padding: 20px;
  }

  .teacher-name {
    font-size: 18px;
  }

  .teacher-description {
    font-size: 14px;
  }

  .detail-label {
    width: 100px;
    font-size: 13px;
  }

  .detail-value {
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .teacher-image-section {
    height: 250px;
    /* reduced height for mobile */
  }

  .teacher-info {
    padding: 15px;
  }

  .teacher-content {
    padding: 15px;
  }

  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .detail-label {
    width: 100%;
    margin-bottom: 5px;
  }
}

/* FOOD AND STAY  */

.page-gallery {
  padding: 50px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 40px;
}

.section-subtitle {
  display: block;
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

.page-gallery-box .owl-carousel .item {
  padding: 10px;
}

.page-gallery-box .owl-carousel img {
  width: 100%;
  aspect-ratio: 1 / 0.794;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.page-gallery-box .owl-carousel img:hover {
  transform: scale(1.05);
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-nav {
  margin-top: 20px;
}

.owl-nav button {
  font-size: 24px !important;
  margin: 0 10px;
}

.custom-card {
  padding: 30px 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.icon-box {
  font-size: 40px;
  color: #3d493a;
  margin-bottom: 15px;
}

.custom-card p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

/* 100 Hour Page  */

.what_will_learn {
  background-color: #f8f9fa;
  font-family: "Segoe UI", sans-serif;
  padding: 60px 0;
}

.what_will_learn .highlight {
  color: #965995;
  font-weight: 600;
}

.what_will_learn .benefit-box {
  background-color: white;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.what_will_learn .benefit-box i {
  color: #965995;
  font-size: 20px;
  margin-right: 15px;
}

.what_will_learn .benefit-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.what_will_learn .sidebar {
  background-color: #965995;
  color: white;
  border-radius: 10px;
  padding: 30px;
}

.what_will_learn .price-tag {
  font-size: 32px;
  font-weight: bold;
}

.what_will_learn .enroll-btn {
  background-color: white;
  color: #965995;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 20px;
}

.what_will_learn .enroll-btn:hover {
  background-color: #fff1ff;
}

.daily-schedule-100-hour {
  /* background-color: #f8f9fa; */
  padding: 40px 20px;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

.schedule-header {
  text-align: center;
  margin-bottom: 30px;
}

.yoga-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  fill: #965995;
}

.schedule-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #4a4a4a;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.schedule-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 40px;
}

.schedule-days {
  font-size: 1.4rem;
  font-weight: 600;
  color: #4a4a4a;
  text-align: center;
  margin-bottom: 30px;
}

.schedule-table {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.schedule-table::before {
  content: "";
  position: absolute;
  left: 280px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #dee2e6;
  z-index: 1;
}

.schedule-row {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
}

.schedule-row:hover {
  background-color: #f8f9fa;
}

.schedule-row.header-row {
  background-color: #965995;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
}

.time-slot-header {
  font-weight: 600;
  font-size: 1rem;
  min-width: 200px;
  margin-right: 20px;
  margin-left: 60px;
}

.activity-header {
  font-size: 1rem;
  flex-grow: 1;
}

.schedule-row.highlighted {
  background-color: #fff3e0;
}

.schedule-row.highlighted:hover {
  background-color: #ffe8cc;
}

.schedule-row:last-child {
  border-bottom: none;
}

.time-icon {
  width: 40px;
  height: 40px;
  /* border: 2px solid #965995; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  background: white;
}

.clock-icon {
  width: 20px;
  height: 20px;
  fill: #8b4513;
}

.time-slot {
  font-weight: 600;
  color: #4a4a4a;
  font-size: 1rem;
  min-width: 200px;
  margin-right: 20px;
}

.activity {
  font-size: 1rem;
  color: #4a4a4a;
  flex-grow: 1;
}

.special-class {
  text-align: center;
  font-size: 1.1rem;
  color: #4a4a4a;
  margin: 30px 0 25px;
  font-weight: 500;
}

.section-divider {
  border: none;
  height: 1px;
  background-color: #dee2e6;
  margin: 40px 0 30px 0;
  width: 100%;
}

.button-container {
  text-align: center;
  margin-top: 30px;
}

.course-btn {
  padding: 12px 30px;
  margin: 0 10px;
  border: 2px solid #965995;
  background: white;
  color: #965995;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.course-btn:hover {
  background: #965995;
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .daily-schedule-100-hour .row .col-6 {
    width: 100% !important; /* Force full width for columns */
    max-width: 100%; /* Ensure no max-width restrictions */
    flex: 0 0 100%; /* For flexbox-based frameworks like Bootstrap */
  }

  .daily-schedule-100-hour .schedule-table {
    margin-bottom: 30px; /* Space between stacked tables */
  }

  .daily-schedule-100-hour .schedule-table::before {
    display: none; /* Hide vertical divider */
  }

  .daily-schedule-100-hour .schedule-row {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .daily-schedule-100-hour .schedule-row.header-row {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px;
  }

  .daily-schedule-100-hour .time-slot-header {
    margin-left: 0;
    min-width: auto;
  }

  .daily-schedule-100-hour .schedule-row.highlighted {
    background-color: #fff3e0;
  }

  .daily-schedule-100-hour .schedule-row.highlighted:hover {
    background-color: #ffe8cc;
  }

  .daily-schedule-100-hour .time-icon {
    margin: 0 0 10px 0;
  }

  .daily-schedule-100-hour .time-slot {
    margin: 0 0 10px 0;
    min-width: auto;
  }

  .daily-schedule-100-hour .course-btn {
    display: block;
    margin: 10px auto;
    width: 200px;
  }
}

.benefits_yoga {
  background: linear-gradient(135deg, #f9e8ff 0%, #e6f0fa 100%);
  padding: 100px 15px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: visible;
}

.benefits_yoga::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  z-index: 0;
}

.benefits_yoga .container {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.benefits_yoga .section-title {
}

.benefits_yoga .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: #ffffff;
  padding: 30px 20px 30px 80px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  width: 100%;
  box-sizing: border-box;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(255, 111, 97, 0.2);
  background: linear-gradient(45deg, #fff6f5, #f0f8ff);
}

.benefit-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #965995, #b97cb8);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  line-height: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-number {
  transform: scale(1.1);
}

.benefit-content strong {
  font-size: 20px;
  color: #2a1a5e;
  display: block;
  margin-bottom: 10px;
}

.benefit-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .benefits_yoga .section-title {
    font-size: 32px;
  }

  .benefits_yoga .row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 25px 15px 25px 60px;
  }

  .benefit-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .benefits_yoga {
    padding: 60px 10px;
  }

  .benefits_yoga .section-title {
    font-size: 28px;
  }

  .benefit-card {
    padding: 20px 10px 20px 50px;
  }
}

.activity-card-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Three cards per row */
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.activity-item-new {
  background: #fff;
  border: 2px solid #965995;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.activity-item-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #965995;
  z-index: 0;
  transition: width 0.4s ease-in-out;
}

.activity-item-new:hover::before {
  width: calc(100% - 120px);
  /* Excludes image area */
}

.activity-item-new:hover {
  color: #fff;
}

.activity-item-new:hover h3,
.activity-item-new:hover p {
  color: #fff;
}

.activity-content-new {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 80px);
  /* Adjusts for image width */
}

.activity-item-new h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px;
  color: #000;
}

.activity-item-new p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.activity-item-new img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  z-index: 1;
}

@media (max-width: 768px) {
  .activity-card-new {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Responsive fallback for smaller screens */
  }
}

.services-slider-container {
  padding: 60px 0;
  background: linear-gradient(135deg, #f9e8ff 0%, #e6f0fa 100%);
}

.custom-service-swiper {
  padding: 20px 0 40px 0;
  overflow: hidden;
  /* Hide cut-off slides */
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #965995;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: #f0f0f0;
  /* simple flat background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.05);
}

.service-icon i {
  font-size: 32px;
  color: #333;
  /* dark icon */
}

.service-title {
  font-size: 26px;
  font-weight: 700;
  color: #965995;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-subtitle {
  font-size: 18px;
  color: #7f8c8d;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.custom-service-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #bdc3c7;
  opacity: 1;
  transition: all 0.3s ease;
}

.custom-service-swiper .swiper-pagination-bullet-active {
  background: #965995;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .service-card {
    padding: 30px 20px;
    height: auto;
    text-align: center;
    align-items: center;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
  }

  .service-icon i {
    font-size: 24px;
  }

  .service-title {
    font-size: 22px;
  }

  .service-subtitle {
    font-size: 16px;
  }
}

.service-card {
  transition: all 0.3s ease;
  border: 2px solid transparent; /* default no border */
}

.service-card:hover {
  border: 2px solid #965995 !important; /* or any highlight color you prefer */
  box-shadow: 0 0 10px rgba(150, 89, 149, 0.2); /* optional glow */
}

.dates-area p {
  color: inherit;
  margin: 0;
  line-height: 28px;
  font-size: 18px;
}

.dates-area .dates .dates-header {
  background-color: #965995;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.dates-area .dates .content {
  padding: 0.65rem;
  text-align: center;
  font-size: 1.15em;
  flex: 1 0 0%;
}

.dates-area .dates .dates-body .content {
  padding: 0.35rem;
}

.dates-area .dates-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #5c7c53;
  background-color: hsl(16.36deg 73.33% 97.06%);
  color: #000;
}

.dates-heading {
  color: #222;
  color: #222;
  padding-bottom: 6px;
  margin-bottom: 30px;
  font-weight: 800;
  font-size: 22px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
}

@media (max-width: 767.98px) {
  .dates-area .dates .content {
    font-size: 0.95em;
  }
}

@media (max-width: 991.98px) {
  .dates-area .dates-row {
    flex-direction: column;
    border: 2px solid #ba9d65;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}

.inclu-exclu {
  background-color: #f8f9fa;
  padding: 35px;
}

.certificate-100-hour {
  padding: 60px 0;
  /* background: linear-gradient(135deg, #f9e8ff 0%, #e6f0fa 100%); */
}

.custom-om-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-om-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.6;
}

.custom-om-list .om-icon {
  position: absolute;
  left: 0;
  top: 0;
  color: #965995;
  font-weight: bold;
  font-size: 20px;
}

.table_pricing {
  padding: 60px 0;
}

.price-table-course {
  max-width: 1300px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: price-table-course-slideUp 0.8s ease-out;
}

@keyframes price-table-course-slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-table-course-wrapper {
  overflow-x: auto;
}

.price-table-course table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.price-table-course-header {
  background: linear-gradient(135deg, #965995 0%, #b67bb6 100%);
  color: white;
  font-weight: 600;
  text-align: center;
}

.price-table-course-header th {
  padding: 25px 20px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table-course-header th:last-child {
  border-right: none;
}

.price-table-course-header th::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #f6d469;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.price-table-course-header th:hover::before {
  opacity: 1;
}

.price-table-course tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.price-table-course tbody tr:hover {
  background: linear-gradient(
    135deg,
    rgba(246, 212, 105, 0.1) 0%,
    rgba(150, 89, 149, 0.05) 100%
  );
  transform: scale(1.01);
  box-shadow: 0 5px 20px rgba(150, 89, 149, 0.1);
}

.price-table-course tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.price-table-course tbody tr:nth-child(even):hover {
  background: linear-gradient(
    135deg,
    rgba(246, 212, 105, 0.15) 0%,
    rgba(150, 89, 149, 0.08) 100%
  );
}

.price-table-course td {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  color: #333;
  font-weight: 500;
  border-right: 1px solid #f0f0f0;
}

.price-table-course td:last-child {
  border-right: none;
}

.price-table-course-date {
  font-weight: 600;
  color: #965995;
  background: linear-gradient(
    45deg,
    rgba(246, 212, 105, 0.1),
    rgba(150, 89, 149, 0.05)
  );
}

.price-table-course-price {
  font-weight: 700;
  font-size: 18px;
  color: #2c3e50;
}

.price-table-course-original {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-right: 8px;
}

.price-table-course-discounted {
  color: #965995;
  font-weight: 800;
}

.price-table-course-ac {
  color: #965995;
  font-size: 20px;
}

.price-table-course-btn {
  position: relative;
  background: transparent;
  color: #965995;
  border: 2px solid #965995;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 120px;
}

.price-table-course-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #965995;
  transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.price-table-course-btn::after {
  content: "→";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) translateX(30px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 16px;
}

.price-table-course-btn:hover {
  color: white;
  border-color: #965995;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(150, 89, 149, 0.3);
}

.price-table-course-btn:hover::before {
  left: 0;
}

.price-table-course-btn:hover::after {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.price-table-course-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .price-table-course {
    margin: 10px;
    border-radius: 15px;
  }

  .price-table-course-header th {
    padding: 15px 10px;
    font-size: 14px;
  }

  .price-table-course td {
    padding: 15px 8px;
    font-size: 14px;
  }

  .price-table-course-btn {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 100px;
  }
}

.price-table-course-glow {
  animation: price-table-course-glow 2s ease-in-out infinite alternate;
}

@keyframes price-table-course-glow {
  from {
    box-shadow: 0 0 10px rgba(246, 212, 105, 0.3);
  }

  to {
    box-shadow: 0 0 20px rgba(246, 212, 105, 0.6),
      0 0 30px rgba(150, 89, 149, 0.3);
  }
}

.course_syllabus_all {
  padding: 60px 0;

  background: linear-gradient(135deg, #f9e8ff 0%, #e6f0fa 100%);
}

.syllabus-course-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.syllabus-course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(150, 89, 149, 0.3);
}

.syllabus-course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(150, 89, 149, 0.3),
    rgba(150, 89, 149, 0.6)
  );
  z-index: 1;
}

.syllabus-card-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: white;
  width: 100%;
}

.syllabus-hours-badge {
  background-color: rgba(255, 255, 255, 0.9);
  color: #965995;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.syllabus-course-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.syllabus-course-1 {
  background-image: url("../../assets//images/faq/1.png");
}

.syllabus-course-2 {
  background-image: url("../../assets//images/faq/2.png");
}

.syllabus-course-3 {
  background-image: url("../../assets//images/faq/3.png");
}

.syllabus-course-4 {
  background-image: url("../../assets//images/faq/4.png");
}

@media (max-width: 768px) {
  .syllabus-course-card {
    height: 300px;
    margin-bottom: 20px;
  }

  .syllabus-course-title {
    font-size: 20px;
  }

  .syllabus-card-content {
    padding: 20px;
  }
}

.syllabus-section-title {
  text-align: center;
  margin-bottom: 50px;
  color: #965995;
}

.syllabus-section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.syllabus-section-title p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}
.animated-box {
  position: relative;
  background-color: #fff;
  padding: 2rem;
  height: 100%;
  border-top: 4px solid #ae72ad;
  transition: all 0.4s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.curriculum {
  background-color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.4;
  padding: 60px 0;
}

.curriculum-title {
  color: #333;
  /* text-align: center; */
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #e8d5e8 0%, #f8f9fa 100%);
  padding: 1rem 2rem;
  border-bottom: 4px solid #b57ab5;
}

.curriculum-border {
  height: 3px;
  background: #b57ab5;
  margin: 0 0 2rem 0;
}

.curriculum-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.curriculum-section-title {
  color: #333;
  margin-bottom: 0.8rem;
}

.curriculum-description {
  color: #6c757d;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.curriculum-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e8d5e8;
  transition: all 0.3s ease;
}

.curriculum-icon {
  color: #8b4a8b;
  font-size: 1rem;
  margin-right: 0.75rem;
  min-width: 20px;
}

.curriculum-text {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.3;
  text-decoration: none;
}

.curriculum-text:hover {
  color: #8b4a8b;
  text-decoration: none;
}

.curriculum-highlight {
  color: #b57ab5;
}

@media (max-width: 768px) {
  .curriculum-section {
    padding: 0.5rem;
  }

  .curriculum-title {
    font-size: 1.5rem;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .curriculum-title {
    font-size: 1.3rem;
  }

  .curriculum-section-title {
    font-size: 1.1rem;
  }
}

.excursion {
  padding: 60px 0;

  background: linear-gradient(135deg, #f9e8ff 0%, #e6f0fa 100%);
}
.teachers-ashtanga {
  padding: 60px 0;
  background: linear-gradient(135deg, #f9e8ff 0%, #e6f0fa 100%);
}
.teachers-ashtanga-card {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #f1f1f1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; /* Make cards flex containers */
  flex-direction: column; /* Stack items vertically */
  height: 100%; /* Ensure all cards fill their column height */
}

@media (max-width: 576px) {
  .teachers-ashtanga-img {
    height: 300px !important;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
}
.teachers-ashtanga-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #965995;
}

.teachers-ashtanga-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.teachers-ashtanga-name {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.teachers-ashtanga-role {
  /* font-size: 0.95rem; */
  color: #666;
  flex-grow: 1; /* Allow role to take up remaining space */
}

.teachers-ashtanga-social {
  margin-top: auto; /* Push social icons to the bottom */
}
.teachers-ashtanga-social .social-icon {
  background: #965995;
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.teachers-ashtanga-social .social-icon:hover {
  background: #965995;
  color: #fff;
}

/* Owl Carousel Customization */

.ashtanga-testimonials {
  padding: 50px 0;
  /* background-color: #f8f9fa; */
}

.swiper-slide {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2),
    -5px -5px 15px rgba(255, 255, 255, 0.8);
  /* 3D shadow effect */
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 10px;
}

.stars {
  color: #ffca08;
  margin-bottom: 15px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #007bff;
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 769px) {
  .swiper-slide {
    width: 33.33%;
    height: 350px;
  }
}

.faq-one {
  background: linear-gradient(135deg, #f9e8ff 0%, #e6f0fa 100%);
}

/* Retreat Page  */

.our-approach {
  position: relative;
  overflow: hidden;
}

.our-approach-content {
  padding: 20px;
}

.our-approach-content h2 {
  color: black;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.our-approach-content p {
  /* font-size: 1.1rem; */
  color: black;
}

.our-approach-image {
  position: relative;
  padding-right: 200px;
  margin-left: 20px;
}

.our-approach-img-1 figure,
.our-approach-img-2 figure {
  display: block;
  overflow: hidden;
}

.our-approach-img-1 img,
.our-approach-img-2 img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.our-approach-img-1 figure {
  border-radius: 999px;
}

.our-approach-img-1 img {
  aspect-ratio: 1 / 1.8;
  border-radius: 999px;
  border: 8px solid white;
}

.our-approach-img-2 {
  max-width: 300px;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 8px solid white;
  border-radius: 999px;
  overflow: hidden;
  z-index: 1;
}

.our-approach-img-2 img {
  aspect-ratio: 1 / 1.3;
  border-radius: 120px;
}

.approach-explore-more-circle {
  position: absolute;
  top: 40px;
  right: 30px;
  z-index: 2;
}

.approach-explore-more-circle a {
  display: block;
  border-radius: 50%;
}

.approach-explore-more-circle img {
  width: 100%;
  max-width: 160px;
  border-radius: 50%;
  animation: infiniterotate 15s infinite linear;
}

@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.btn-default:hover {
  background: #965995 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 1200px) {
  .our-approach-image {
    padding-right: 180px;
  }

  .our-approach-img-2 {
    max-width: 260px;
  }

  .approach-explore-more-circle img {
    max-width: 140px;
  }
}

@media only screen and (max-width: 991px) {
  .our-approach-content {
    margin-bottom: 40px;
  }

  .our-approach-image {
    max-width: 90%;
    margin: 0 auto;
    padding-right: 160px;
  }

  .our-approach-img-1 img {
    aspect-ratio: 1 / 1.5;
  }

  .our-approach-img-2 {
    max-width: 220px;
  }
}

@media only screen and (max-width: 767px) {
  .our-approach {
    padding: 30px 15px;
  }

  .our-approach-content h2 {
    font-size: 2rem;
  }

  .our-approach-content p {
    font-size: 1rem;
  }

  .our-approach-image {
    max-width: 100%;
    padding-right: 120px;
  }

  .our-approach-img-2 {
    max-width: 180px;
    border-width: 6px;
  }

  .approach-explore-more-circle {
    top: 20px;
    right: 20px;
  }

  .approach-explore-more-circle img {
    max-width: 120px;
  }
}

@media only screen and (max-width: 576px) {
  .our-approach-image {
    padding-right: 100px;
  }

  .our-approach-img-2 {
    max-width: 140px;
  }

  .approach-explore-more-circle img {
    max-width: 100px;
  }

  .approach-explore-more-circle {
    left: 250px;
  }
}
.teach {
  padding: 60px 0;

  background: linear-gradient(135deg, #f9e8ff 0%, #e6f0fa 100%);
}

.bg-purple {
  background-color: #ffe6ffff !important;
}

.text-purple {
  color: #965995 !important;
}

.section-item:hover .icon {
  background-color: #965995 !important;
  color: white !important;
}

.section-item:hover .icon img {
  filter: brightness(0) saturate(100%) invert(100%);
}

.bg-purple {
  background-color: #ffe6ffff !important;
}

.text-purple {
  color: #965995 !important;
}

.section-item:hover .icon {
  background-color: #965995 !important;
  color: white !important;
}

.section-item:hover .icon img {
  filter: brightness(0) saturate(100%) invert(100%);
}

.ttc-basic {
  padding: 60px 0;

  background: linear-gradient(135deg, #f9e8ff 0%, #e6f0fa 100%);
}

.yoga-gurus-section {
  /* background-color: #fdfbf9; */
  padding: 40px 20px;
  text-align: center;
}

.site-heading {
  margin-bottom: 3rem;
}

.site-title-tagline {
  font-size: 1rem;
  color: #888;
}

.site-title {
  font-size: 2.5rem;
  color: #333;
  margin-top: 0.5rem;
}

.guru-grid {
  display: grid;
  grid-template-columns: repeat(6, 2fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.guru-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.guru-card:hover {
  transform: translateY(-5px);
}

.guru-card img {
  width: 100%;
  height: auto;
  max-width: 180px;
  border-radius: 10px;
  object-fit: cover;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.guru-card p {
  margin: 15px 0 0;
  font-size: 1rem;
  color: #555;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .guru-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .site-title {
    font-size: 2rem;
  }

  .guru-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .guru-card img {
    max-width: 150px;
  }

  .guru-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .guru-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guru-card img {
    max-width: 120px;
  }

  .site-title {
    font-size: 1.8rem;
  }
}


 .how-to-reach {
        background-color: #fff;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .how-to-reach h2 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 2rem;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 0.5rem;
    }

    .method {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .method .icon {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background-color: #f5e4f4;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 1.5rem;
    }

    .method .icon svg {
        width: 30px;
        height: 30px;
        fill: #9d25a8;
    }

    .method-content h3 {
        font-size: 1.5rem;
        font-weight: bold;
        color: #444;
        margin-bottom: 0.5rem;
    }

    .method-content p {
        font-size: 1rem;
        color: #666;
        line-height: 1.6;
    }

    /* Responsive styles for smaller screens */
    @media (max-width: 768px) {
        .how-to-reach h2 {
            font-size: 2rem;
        }

        .method {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .method .icon {
            margin-right: 0;
            margin-bottom: 1rem;
        }
    }