@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lavishly+Yours&family=Marcellus&family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
::before,
::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 600;
}

body {
  font-family: "Martel Sans", sans-serif;
  color: #000;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

section {
  background: transparent;
}

.list {
  margin: 0;
  padding-left: 20px;
  list-style: none;
  font-family: "Martel Sans", sans-serif;
}
.list li {
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 8px;
  padding-left: 20px;
}
.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0px;
  color: #053d0e;
  font-weight: 700;
}
.list li:last-child {
  margin-bottom: 0;
}

.bg {
  position: relative;
  background: rgba(251, 230, 207, 0.2901960784);
  z-index: -2;
}

.spacing {
  padding: 70px 0;
}
@media (max-width: 767px) {
  .spacing {
    padding: 40px 0;
  }
}

.img-wrap {
  height: 100%;
  position: relative;
}
.img-wrap img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-wrap img.contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.hr-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
  width: 100%;
  perspective: 1000px;
}
.hr-divider::before, .hr-divider::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #844809, transparent);
  background-size: 200% 100%;
  animation: barShimmer 4s ease-in-out infinite;
}
.hr-divider img {
  width: 70px;
  height: auto;
  margin: 0 25px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  animation: lotusFlip 6s linear infinite;
  /* Deeper, more subtle Forest Green filter */
  filter: invert(24%) sepia(18%) saturate(1200%) hue-rotate(85deg) brightness(95%) contrast(90%);
}

@keyframes barShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes lotusFlip {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 5px;
  white-space: nowrap;
}
.btn-wrapper a,
.btn-wrapper button {
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.btn-wrapper a.theme-btn,
.btn-wrapper button.theme-btn {
  background: #053d0e;
  color: #fff;
  border: 1px solid #053d0e;
  box-shadow: 0 4px 15px rgba(5, 61, 14, 0.03);
}
.btn-wrapper a.theme-btn:hover,
.btn-wrapper button.theme-btn:hover {
  color: #fff;
  box-shadow: 0 6px 20px rgba(5, 61, 14, 0.03);
}
.btn-wrapper a.theme-btn.alt,
.btn-wrapper button.theme-btn.alt {
  background: transparent;
  color: #844809;
  border: 1px solid rgba(132, 72, 9, 0.3);
}
.btn-wrapper a.theme-btn.alt:hover,
.btn-wrapper button.theme-btn.alt:hover {
  background: #844809;
  color: #fff;
  border-color: #844809;
  box-shadow: 0 6px 20px rgba(132, 72, 9, 0.2);
}

.common-content-wrap {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-left: clamp(18px, 1.4vw, 25px);
}

.para {
  font-family: "Martel Sans", sans-serif;
  line-height: 1.75;
  color: #000;
  margin-bottom: 15px;
}

.heading-wrap {
  margin-bottom: clamp(20px, 5vw, 40px);
}
.heading-wrap .sub-title {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  margin-bottom: 10px;
}
.heading-wrap.center {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.heading-wrap.center h1,
.heading-wrap.center h2,
.heading-wrap.center h3,
.heading-wrap.center h4,
.heading-wrap.center h5,
.heading-wrap.center h6,
.heading-wrap.center span,
.heading-wrap.center p,
.heading-wrap.center strong {
  text-align: center !important;
}
.heading-wrap.right {
  text-align: right;
}
.heading-wrap.right h1,
.heading-wrap.right h2,
.heading-wrap.right h3,
.heading-wrap.right h4,
.heading-wrap.right h5,
.heading-wrap.right h6,
.heading-wrap.right span,
.heading-wrap.right p,
.heading-wrap.right strong {
  text-align: right !important;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.main-heading {
  font-size: clamp(24px, 5vw, 42px);
  font-family: "Marcellus", serif;
  color: #000;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
}

.sub-heading {
  font-size: clamp(20px, 3vw, 28px);
  font-family: "Marcellus", serif;
  color: #000;
  display: block;
  margin-bottom: 15px;
}

.mid-heading {
  font-size: clamp(18px, 2vw, 25px);
  font-family: "Marcellus", serif;
  color: #000;
  margin-bottom: 15px;
}

p,
li,
span,
a {
  font-size: clamp(14px, 1.3vw, 15px);
  line-height: 1.6;
  color: #000;
  list-style: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

header {
  top: 0;
  width: 100%;
  z-index: 999;
}
header navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header {
  /* LEFT */
}
header .left-aside {
  display: flex;
  align-items: center;
  gap: 28px;
}
header .menu-toggle {
  cursor: pointer;
}
header .menu-toggle img {
  width: 22px;
  opacity: 0.8;
}
header .nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
header .nav-links li {
  position: relative;
  padding: 10px 0;
}
header .nav-links a, header .nav-links span {
  font-family: "Martel Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: capitalize;
  cursor: pointer !important;
  color: #000;
  transition: 0.3s;
}
header .nav-links a:hover, header .nav-links span:hover {
  opacity: 0.6;
}
header .nav-links {
  /* Desktop Dropdown Styles */
}
header .nav-links .has-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scaleY(1);
  pointer-events: auto;
}
header .nav-links .submenu {
  position: absolute;
  top: 100%;
  left: -10px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  min-width: 300px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(15px) scaleY(0.95);
  transform-origin: top;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  border-bottom: 3px solid #053d0e;
  overflow: hidden;
}
header .nav-links .submenu li {
  padding: 0;
  margin: 0 8px;
  border-radius: 6px;
  overflow: hidden;
}
header .nav-links .submenu li a {
  display: block;
  padding: 10px 15px;
  font-size: 12px;
  letter-spacing: 0.8px;
  color: #323334;
  font-weight: 400;
  text-transform: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border-left: 3px solid transparent;
}
header .nav-links .submenu li a:hover {
  color: #053d0e;
  background: rgba(5, 61, 14, 0.04);
  border-left: 3px solid #053d0e;
  padding-left: 24px;
  opacity: 1;
}
header {
  /* CENTER LOGO */
}
header .header-logo {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
header .header-logo img {
  height: 76px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  header .header-logo img {
    height: 50px;
  }
}
header {
  /* RIGHT TEXT */
}
header .text {
  text-align: right;
  font-family: "Martel Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  line-height: 1.4;
  color: #4d3b3b;
  max-width: 260px;
}
@media (max-width: 991px) {
  header navbar {
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  header .nav-links,
  header .text {
    display: none;
  }
}
header.scrolled {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  animation: scroll 0.3s forwards linear;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
header.scrolled .header-logo img {
  height: 60px;
}
@media (max-width: 575px) {
  header.scrolled .header-logo img {
    height: 40px;
  }
}
@keyframes scroll {
  from {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(0px);
  }
}

.mobile-logo {
  position: absolute;
  top: 10px;
  left: 24px;
  max-width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  border: none !important;
}

.dropdown-menu-list {
  position: fixed;
  top: 0;
  left: -100%;
  width: 380px;
  height: 100vh;
  background: #fff;
  padding: 30px 26px;
  transition: 0.45s ease;
  z-index: 1000;
  overflow-y: auto;
  padding-top: 80px;
}
@media (max-width: 575px) {
  .dropdown-menu-list {
    width: 100%;
  }
}
.dropdown-menu-list.active {
  left: 0;
}
.dropdown-menu-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.dropdown-menu-list li a {
  display: block;
  padding: 14px 0;
  font-family: "Martel Sans", sans-serif;
  font-size: 14px;
  color: #000;
}
.dropdown-menu-list li a:hover {
  opacity: 0.7;
}
.dropdown-menu-list li {
  /* Mobile Dropdown */
}
.dropdown-menu-list li.has-mobile-dropdown .arr {
  font-size: 14px;
  margin-left: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  font-weight: 500;
}
.dropdown-menu-list li.has-mobile-dropdown .drop-link {
  display: flex !important;
  align-items: center;
  width: 100%;
}
.dropdown-menu-list li.has-mobile-dropdown .mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(5, 61, 14, 0.02);
  margin: 0 -26px;
  padding: 0 26px;
  border-left: 3px solid #cea674;
}
.dropdown-menu-list li.has-mobile-dropdown .mobile-submenu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.dropdown-menu-list li.has-mobile-dropdown .mobile-submenu li:last-child {
  border-bottom: none;
}
.dropdown-menu-list li.has-mobile-dropdown .mobile-submenu li a {
  padding: 12px 15px 12px 20px;
  font-size: 13.5px;
  color: #323334;
  position: relative;
  font-weight: 400;
}
.dropdown-menu-list li.has-mobile-dropdown.active .arr {
  transform: rotate(90deg);
  color: #053d0e;
}
.dropdown-menu-list li.has-mobile-dropdown.active .mobile-submenu {
  max-height: 1000px;
  padding-bottom: 10px;
}
.dropdown-menu-list li.has-mobile-dropdown.active .mobile-submenu li {
  opacity: 1;
  transform: translateX(0);
}
.dropdown-menu-list li.has-mobile-dropdown.active .mobile-submenu li:nth-child(1) {
  transition-delay: 0.05s;
}
.dropdown-menu-list li.has-mobile-dropdown.active .mobile-submenu li:nth-child(2) {
  transition-delay: 0.1s;
}
.dropdown-menu-list li.has-mobile-dropdown.active .mobile-submenu li:nth-child(3) {
  transition-delay: 0.15s;
}
.dropdown-menu-list li.has-mobile-dropdown.active .mobile-submenu li:nth-child(4) {
  transition-delay: 0.2s;
}
.dropdown-menu-list li.has-mobile-dropdown.active .mobile-submenu li:nth-child(5) {
  transition-delay: 0.25s;
}
.dropdown-menu-list li.has-mobile-dropdown.active .mobile-submenu li:nth-child(6) {
  transition-delay: 0.3s;
}
.dropdown-menu-list {
  /* CLOSE ICON */
}
.dropdown-menu-list::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 18px;
  width: 18px;
  height: 18px;
  background: url("../img/icons/close.png") no-repeat center;
  background-size: contain;
  cursor: pointer;
}
.dropdown-menu-list .mobile-text {
  position: relative;
  top: 20px;
  left: 26px;
  z-index: 1;
  border: none;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.768627451);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  border-radius: 12px;
}
.hero-wrapper .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .hero-wrapper {
    height: 50vh;
  }
}
@media (max-width: 575px) {
  .hero-wrapper {
    height: 300px;
  }
}

.yoga-alliance-wrap .mantra-wrap em {
  font-size: clamp(18px, 2vw, 30px);
}
.yoga-alliance-wrap .mantra-wrap {
  text-align: center;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: italic;
  color: #000;
  margin-bottom: 15px;
}
.yoga-alliance-wrap .welcome-text strong {
  display: inline-block;
  font-family: "Lavishly Yours", cursive;
  font-size: clamp(50px, 6vw, 70px);
  font-weight: 400;
  color: #000;
}
.yoga-alliance-wrap .welcome-text span {
  display: inline-block;
  font-family: "Martel Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.yoga-alliance-wrap .alliance-logo-grid {
  display: flex;
  align-items: center;
  gap: 10px;
}
.yoga-alliance-wrap .alliance-logo-grid img {
  max-width: 120px;
  width: 100%;
  opacity: 0.9;
  transition: 0.3s ease;
}
.yoga-alliance-wrap .alliance-logo-grid img:hover {
  opacity: 1;
  transform: translateY(-4px);
}
@media (max-width: 1200px) {
  .yoga-alliance-wrap .alliance-logo-grid img {
    max-width: 90px;
  }
}
@media (max-width: 767px) {
  .yoga-alliance-wrap .alliance-logo-grid img {
    max-width: 70px;
  }
}

.mv-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  cursor: pointer;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.mv-card img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 1.2s ease;
}
.mv-card {
  /* Soft overlay */
}
.mv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
  transition: opacity 0.6s ease;
}
.mv-card strong {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 26px;
  z-index: 2;
  font-family: "Marcellus", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
}
.mv-card {
  /* Hover – very subtle */
}
.mv-card:hover {
  transform: translateY(-8px);
}
.mv-card:hover img {
  transform: scale(1.12);
}
.mv-card:hover::after {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 767px) {
  .mv-card img {
    height: 280px;
  }
  .mv-card strong {
    font-size: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
}
.special-text {
  font-size: clamp(16px, 1.6vw, 24px);
  text-align: center;
  color: #000;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.review-wrapper .content .heading {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}
.review-wrapper .review-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.review-wrapper .review-card .head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.review-wrapper .review-card .platform-logo {
  display: block;
  height: 50px;
  margin-bottom: 8px;
}
.review-wrapper .review-card .value span {
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 500;
}
.review-wrapper .review-card .rating {
  display: flex;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  align-items: center;
  gap: 10px;
}
.review-wrapper .review-card .rating img {
  height: 20px;
  max-width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.review-wrapper .review-card .text {
  display: block;
  font-size: 12px;
  color: #777;
}
.review-wrapper .review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.review-wrapper .sub-heading {
  margin-bottom: 20px;
}

.quote {
  background-color: #053d0e;
  padding: 15px 45px;
  display: block;
  margin-top: 25px;
  position: relative;
  text-align: center;
  color: #fff;
  overflow: visible;
  clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 50%, 100% 100%, 0 100%, 25px 50%);
  border-top: 2px solid #e9c916;
  border-bottom: 2px solid #e9c916;
}

.note {
  background-color: rgba(5, 61, 14, 0.1);
  border-left: 4px solid #053d0e;
  padding: 15px 20px;
  margin-top: 20px;
  font-size: 14px;
  color: #333;
  font-style: italic;
}

.insta-section {
  font-family: "Martel Sans", sans-serif;
  margin-top: 30px;
}
.insta-section .insta-heading img {
  max-height: 90px;
  max-width: 150px;
  margin-bottom: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.insta-section .insta-card {
  display: block;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: #000;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.insta-section .insta-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.insta-section .insta-card:hover img {
  transform: scale(1.08);
}
.insta-section .insta-image {
  aspect-ratio: 1;
  position: relative;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 10;
}
.insta-section .insta-image::after, .insta-section .insta-image::before {
  content: "";
  position: absolute;
  z-index: 3;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
}
.insta-section .insta-image::before {
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 2;
}
.insta-section .insta-image::after {
  height: 30px;
  width: 30px;
  background: url(../img/icons/instagram-dark.svg) no-repeat center;
  filter: invert(1) brightness(100);
  background-size: contain;
  border-radius: 0;
}
.insta-section .insta-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  position: relative;
  z-index: 1;
}
.insta-section .insta-cta-compact {
  height: 100%;
  background: #fff;
  border-radius: 30px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  text-align: center;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
}
@media (max-width: 576px) {
  .insta-section .insta-cta-compact {
    padding: 36px 24px;
    margin: 20px 0;
  }
}
.insta-section .insta-cta-compact .cta-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.insta-section .insta-cta-compact .cta-header .cta-icon {
  width: 22px;
}
.insta-section .insta-cta-compact .cta-header .cta-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}
.insta-section .insta-cta-compact .cta-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}
.insta-section .insta-cta-compact .cta-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.insta-section .insta-cta-compact .cta-stats .stat-item {
  text-align: center;
}
.insta-section .insta-cta-compact .cta-stats .stat-item .stat-number {
  font-size: 24px;
  font-weight: 800;
  color: #111;
}
.insta-section .insta-cta-compact .cta-stats .stat-item .stat-label {
  font-size: 13px;
  color: #777;
}
.insta-section .insta-cta-compact .cta-stats .divider {
  width: 1px;
  height: 38px;
  background: rgba(0, 0, 0, 0.15);
}
.insta-section .insta-cta-compact .theme-btn {
  margin-top: 20px;
  font-size: 12px;
}
.insta-section {
  /* ================= MOBILE POLISH ================= */
}
@media (max-width: 576px) {
  .insta-section .insta-card {
    border-radius: 18px;
  }
}

.vertical-divider {
  width: 3px;
  height: 90px;
  display: block;
  margin: 0px auto 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #053d0e, #053d0e, rgba(255, 255, 255, 0));
  opacity: 1;
  border-radius: 10px;
  border: none;
}
.vertical-divider.alt {
  margin: 0 auto !important;
}

.contact-wrap {
  font-family: "Martel Sans", sans-serif;
}
.contact-wrap .contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-wrap .contact-info .info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-wrap .contact-info .info-item .info-icon {
  width: 46px;
  height: 46px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.contact-wrap .contact-info .info-item .info-icon img {
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-wrap .contact-info .info-item .info-text {
  flex-grow: 1;
}
.contact-wrap .contact-info .info-item .info-text strong {
  font-family: "Marcellus", serif;
  font-size: 16px;
  margin-bottom: 6px;
  color: #000;
  display: block;
}
.contact-wrap .contact-info .info-item .info-text p,
.contact-wrap .contact-info .info-item .info-text a {
  font-size: 14px;
  color: #4d3b3b;
  line-height: 1.6;
  text-decoration: none;
}
.contact-wrap .contact-info .info-item .info-text a:hover {
  color: #000;
}
.contact-wrap .contact-form .form-grid {
  row-gap: 24px;
}
.contact-wrap .contact-form .form-control {
  border-radius: 12px;
  border: 1px solid rgba(5, 61, 14, 0.15);
  padding: 14px 16px;
  font-size: 14px;
  color: #000;
}
.contact-wrap .contact-form .form-control::-moz-placeholder {
  color: rgba(77, 59, 59, 0.7);
}
.contact-wrap .contact-form .form-control::placeholder {
  color: rgba(77, 59, 59, 0.7);
}
.contact-wrap .contact-form .form-control:focus {
  border-color: #053d0e;
  box-shadow: 0 0 0 0.15rem rgba(5, 61, 14, 0.15);
}
.contact-wrap .contact-form textarea.form-control {
  resize: none;
}
.contact-wrap .contact-form {
  /* Phone with Flag */
}
.contact-wrap .contact-form .iti {
  width: 100%;
}
.contact-wrap .contact-form .iti input {
  padding-left: 92px !important;
}
.contact-wrap .contact-form .iti .iti__selected-flag {
  border-radius: 12px 0 0 12px;
}
.contact-wrap .contact-form .btn-submit {
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  background: #053d0e;
  color: #fff;
  border: 1px solid #053d0e;
  box-shadow: 0 4px 15px rgba(5, 61, 14, 0.2);
}
.contact-wrap .contact-form .btn-submit:hover {
  background: #fff;
  color: #053d0e;
  box-shadow: 0 6px 20px rgba(5, 61, 14, 0.3);
}

/* ================= Accomodation Section ================= */
.accomodation-wrapper .common-content-wrap .heading {
  font-size: 32px;
  margin-bottom: 15px;
}
.accomodation-wrapper .accomodation-body {
  position: relative;
  padding: 20px 0;
  width: 100%;
  height: 28rem;
  padding-bottom: 20px;
}
.accomodation-wrapper .img-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  position: relative;
}
.accomodation-wrapper .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.accomodation-wrapper .img-wrap img {
  transition: transform 0.8s ease;
  position: relative;
  z-index: 0;
}
.accomodation-wrapper .img-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .accomodation-wrapper .img-wrap {
    height: 300px;
  }
}
.accomodation-wrapper .swiper-pagination {
  position: relative;
  margin-top: 30px;
  bottom: 0 !important;
}
.accomodation-wrapper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1.5px solid #844809;
  opacity: 0.6;
  border-radius: 0;
  transform: rotate(45deg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 0 8px !important;
}
.accomodation-wrapper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #844809;
  transform: rotate(45deg) scale(1.3);
}

/* ================= About Program Wrap ================= */
.about-program-wrap {
  padding-bottom: 80px;
}
.about-program-wrap .img-wrap {
  position: relative;
  height: 450px;
}
@media (max-width: 991px) {
  .about-program-wrap .img-wrap {
    height: 350px;
  }
}
.about-program-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-program-wrap .img-wrap .achieved-banner {
  bottom: -20px;
  left: 40px;
  width: 80%;
  background-color: #053d0e;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  font-family: "Marcellus", serif;
  position: relative;
}
.about-program-wrap .img-wrap .achieved-banner .counter {
  display: inline-block;
  font-weight: 700;
  margin-right: 2px;
  min-width: 55px;
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  text-align: center;
  vertical-align: middle;
  color: white;
}
.about-program-wrap .img-wrap .achieved-banner::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 20px;
  width: 3px;
  height: 100%;
  background: #844809;
  z-index: -1;
}
.about-program-wrap .img-wrap .achieved-banner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 20px;
  width: 3px;
  height: 100%;
  background: #844809;
  z-index: -1;
}
@media (max-width: 991px) {
  .about-program-wrap .content-wrap {
    margin-top: 50px;
  }
}

.history-wrap .img-wrap {
  position: relative;
  height: 450px;
}
@media (max-width: 991px) {
  .history-wrap .img-wrap {
    height: 350px;
  }
}
.history-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.history-wrap .img-wrap .achieved-banner {
  bottom: -20px;
  left: 40px;
  width: 80%;
  background-color: #053d0e;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  font-family: "Marcellus", serif;
  position: relative;
}
.history-wrap .img-wrap .achieved-banner .counter {
  display: inline-block;
  font-weight: 700;
  margin-right: 2px;
  min-width: 55px;
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  text-align: center;
  vertical-align: middle;
  color: white;
}
.history-wrap .img-wrap .achieved-banner::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 20px;
  width: 3px;
  height: 100%;
  background: #844809;
  z-index: -1;
}
.history-wrap .img-wrap .achieved-banner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 20px;
  width: 3px;
  height: 100%;
  background: #844809;
  z-index: -1;
}

/* ================= Ayurveda Journey Section ================= */
.ayurveda-journey-section {
  position: relative;
  overflow: hidden;
}
.ayurveda-journey-section .heading-wrap {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.ayurveda-journey-section .journey-flow-wrapper {
  position: relative;
  padding: 20px 0;
}
.ayurveda-journey-section {
  /* Animated Line Background (Desktop) */
}
.ayurveda-journey-section .animated-line {
  position: absolute;
  left: -10vw;
  width: 120vw;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(5, 61, 14, 0.1) 20%, #053d0e 50%, rgba(132, 72, 9, 0.5) 80%, transparent 100%);
  background-size: 200% 100%;
  animation: pulseFlow 6s infinite linear;
  z-index: 1;
  opacity: 0.6;
  border-radius: 50%;
}
.ayurveda-journey-section .animated-line.top-line {
  top: 25%;
}
.ayurveda-journey-section .animated-line.bottom-line {
  top: 75%;
}
.ayurveda-journey-section .journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}
.ayurveda-journey-section {
  /* Single Sage Item */
}
.ayurveda-journey-section .sage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.4s ease;
}
.ayurveda-journey-section .sage-item:hover {
  transform: translateY(-8px);
}
.ayurveda-journey-section .sage-item:hover .image-box {
  border-color: #844809;
  box-shadow: 0 10px 25px rgba(5, 61, 14, 0.15);
}
.ayurveda-journey-section .sage-item:hover .image-box img {
  transform: scale(1.05);
}
.ayurveda-journey-section .sage-item .image-box {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(5, 61, 14, 0.2);
  background: #fff;
  padding: 5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.ayurveda-journey-section .sage-item .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: transform 0.6s ease;
}
.ayurveda-journey-section .sage-item .sage-info {
  background: rgba(255, 255, 255, 0.85);
  padding: 5px 15px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.ayurveda-journey-section .sage-item .sage-info .sage-name {
  font-family: "Marcellus", serif;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}
.ayurveda-journey-section {
  /* Flow Animation */
}
@keyframes pulseFlow {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.ayurveda-journey-section {
  /* Responsive Adjustments */
}
@media (max-width: 991px) {
  .ayurveda-journey-section .journey-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .ayurveda-journey-section .animated-line.top-line {
    top: 12.5%;
  }
  .ayurveda-journey-section .animated-line.bottom-line {
    top: 37.5%;
  }
}
@media (max-width: 767px) {
  .ayurveda-journey-section .journey-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px 20px;
    position: relative;
  }
  .ayurveda-journey-section .sage-1 {
    order: 1;
  }
  .ayurveda-journey-section .sage-2 {
    order: 3;
  }
  .ayurveda-journey-section .sage-3 {
    order: 5;
  }
  .ayurveda-journey-section .sage-4 {
    order: 7;
  }
  .ayurveda-journey-section .sage-5 {
    order: 8;
  }
  .ayurveda-journey-section .sage-6 {
    order: 6;
  }
  .ayurveda-journey-section .sage-7 {
    order: 4;
  }
  .ayurveda-journey-section .sage-8 {
    order: 2;
  }
  .ayurveda-journey-section .sage-item {
    margin-bottom: 0px;
  }
  .ayurveda-journey-section .sage-item .image-box {
    width: 110px;
    height: 110px;
  }
  .ayurveda-journey-section .sage-item .sage-info .sage-name {
    font-size: 15px;
  }
  .ayurveda-journey-section .sage-item::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-bottom: 3px solid #053d0e;
    border-right: 3px solid #053d0e;
    transform: rotate(45deg);
    z-index: 1;
    opacity: 0.8;
  }
  .ayurveda-journey-section .sage-1::after,
  .ayurveda-journey-section .sage-2::after,
  .ayurveda-journey-section .sage-3::after {
    bottom: -35px;
    left: 50%;
    margin-left: -7.5px;
  }
  .ayurveda-journey-section .sage-5::after,
  .ayurveda-journey-section .sage-6::after,
  .ayurveda-journey-section .sage-7::after {
    border-bottom: none;
    border-right: none;
    border-top: 3px solid #053d0e;
    border-left: 3px solid #053d0e;
    top: -35px;
    left: 50%;
    margin-left: -7.5px;
  }
  .ayurveda-journey-section .sage-8::after {
    display: none;
  }
  .ayurveda-journey-section .sage-4::before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    width: calc(100% + 20px);
    height: 30px;
    border-left: 2px solid #053d0e;
    border-bottom: 2px solid #053d0e;
    border-right: 2px solid #053d0e;
    border-radius: 0 0 10px 10px;
    z-index: 0;
    opacity: 0.5;
  }
  .ayurveda-journey-section .sage-4::after {
    display: none;
  }
}

footer {
  font-family: "Martel Sans", sans-serif;
  background: #f5f0e4;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
footer .container {
  padding: clamp(30px, 5vw, 60px);
  padding-bottom: 0px;
}
footer .footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
footer .footer-brand img {
  display: block;
  height: 90px;
}
@media (max-width: 767px) {
  footer .footer-brand {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  footer .footer-brand img {
    margin: 0;
    height: 50px;
  }
}
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 35px;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  footer .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  footer .footer-links {
    flex-direction: column;
    gap: 15px;
    text-align: left;
    align-items: flex-start;
  }
}
footer .footer-links li a {
  font-size: 14px;
  color: #4d3b3b;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
footer .footer-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #844809;
  transition: width 0.3s ease;
}
footer .footer-links li a:hover {
  color: #844809;
}
footer .footer-links li a:hover::after {
  width: 100%;
}
footer .row {
  align-items: center;
}
footer .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  footer .social-links {
    justify-content: flex-start;
  }
}
footer .social-links .social-heading {
  font-size: 14px;
  color: #000;
  margin-right: 10px;
}
footer .social-links li a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
footer .social-links li a img {
  width: 16px;
  height: 16px;
}
footer .social-links li a:hover {
  border-color: #053d0e;
  transform: translateY(-2px);
}
footer .copy-right {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 0;
  text-align: center;
}
footer .copy-right p {
  margin: 0;
  font-size: 13px;
  color: #4d3b3b;
}
footer .copy-right p span {
  color: #000;
}

.testi-slide {
  overflow: hidden;
  border-radius: 20px;
}
.testi-slide .swiper-pagination {
  position: relative;
  margin-top: 20px;
  bottom: 0 !important;
}
.testi-slide .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  gap: 20px;
  height: 8px;
  transform: rotate(45deg);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.2);
}
.testi-slide .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #844809;
}
.testi-slide .item {
  background: #fff;
  border-radius: 20px;
  padding: 35px 40px;
  position: relative;
  height: 100%;
  min-height: 320px;
  border: 1px solid #053d0e;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .testi-slide .item {
    padding: 25px 15px;
  }
}
.testi-slide .item::before {
  content: "“";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  color: rgba(5, 61, 14, 0.5);
  font-family: serif;
  line-height: 1;
}
@media (max-width: 767px) {
  .testi-slide .item::before {
    font-size: 60px;
    top: 10px;
    right: 20px;
  }
}
.testi-slide .item .info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.testi-slide .item .info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.testi-slide .item .info .about {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* ==============================
   Enrollment Form – Booking UI
   ============================== */
.na-form-wrap {
  background: #ffffff;
  padding: clamp(30px, 5vw, 40px);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
}
.na-form-wrap .card-heading {
  position: relative;
  padding: 6px 14px;
  margin-bottom: 25px;
  font-weight: 600;
  background: linear-gradient(to right, rgba(5, 61, 14, 0.1), transparent);
  color: #053d0e;
  font-size: 18px;
  margin-top: 20px;
  display: inline-block;
  border-left: 3px solid #053d0e;
  border-radius: 0 4px 4px 0;
}
.na-form-wrap {
  /* Label styling */
}
.na-form-wrap .na-form-label {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}
.na-form-wrap .iti {
  display: block;
}
.na-form-wrap {
  /* Input & Select base style */
}
.na-form-wrap .form-control,
.na-form-wrap .form-select {
  width: 100%;
  height: 50px;
  padding: 10px 16px;
  font-size: 15px;
  color: #333;
  border-radius: 6px;
  border: 1px solid #e1e5eb;
  background-color: #fafbfc;
  box-shadow: none;
  transition: all 0.3s ease;
}
.na-form-wrap .form-control:focus,
.na-form-wrap .form-select:focus {
  border-color: rgba(5, 61, 14, 0.5);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(5, 61, 14, 0.1);
}
.na-form-wrap {
  /* Textarea */
}
.na-form-wrap textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}
.na-form-wrap .row.g-3 {
  margin-bottom: 18px;
}
.na-form-wrap .row.g-3 .col {
  margin-bottom: 0;
}
.na-form-wrap {
  /* Remove card feel from dependent sections */
}
.na-form-wrap #enroll-in-location,
.na-form-wrap #enroll-courses,
.na-form-wrap #enroll-particular-accommodation-type,
.na-form-wrap #course-therapy-toggle-wrap,
.na-form-wrap #enroll-therapies-wrap {
  padding: 0;
  border: none;
  background: transparent;
}
.na-form-wrap {
  /* Smooth appearance */
}
.na-form-wrap .enroll-section {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.na-form-wrap .enroll-section.active {
  opacity: 1;
  transform: translateY(0);
}
.na-form-wrap {
  /* Custom Toggle Radios */
}
.na-form-wrap .custom-radio-btn {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e1e5eb;
  padding: 14px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
  justify-content: center;
}
.na-form-wrap .custom-radio-btn:has(input:checked) {
  border-color: #053d0e;
  background: rgba(5, 61, 14, 0.04);
  box-shadow: 0 4px 15px rgba(5, 61, 14, 0.1);
}
.na-form-wrap .custom-radio-btn .form-check-input {
  margin-top: 0;
  margin-right: 12px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.na-form-wrap .custom-radio-btn .form-check-input:checked {
  background-color: #053d0e;
  border-color: #053d0e;
}
.na-form-wrap .custom-radio-btn label {
  cursor: pointer;
  font-weight: 600;
  margin: 0;
  color: #844809;
  font-size: 15px;
}
.na-form-wrap .success-message {
  border: 1px solid rgba(5, 61, 14, 0.3);
  padding: 15px;
  background: rgba(5, 61, 14, 0.05);
  color: #844809;
  font-weight: 500;
  border-radius: 6px;
  margin-top: 15px;
}

.enroll-success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.enroll-success-overlay.active {
  display: flex;
  opacity: 1;
}
.enroll-success-overlay .success-modal-card {
  background: #fff;
  max-width: 480px;
  width: 90%;
  padding: 45px 35px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.enroll-success-overlay.active .success-modal-card {
  transform: translateY(0) scale(1);
}
.enroll-success-overlay .success-icon {
  width: 80px;
  height: 80px;
  background: rgba(5, 61, 14, 0.1);
  color: #053d0e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 25px;
  animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.2s;
  opacity: 0;
  transform: scale(0);
  position: relative;
}
.enroll-success-overlay .success-icon::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  color: #053d0e;
}
@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.enroll-success-overlay .success-title {
  color: #844809;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
.enroll-success-overlay .success-text {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}
.enroll-success-overlay .close-modal-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s ease;
}
.enroll-success-overlay .close-modal-btn:hover {
  color: #844809;
}

/* Panchakarma Ultra-Premium Card Redesign */
.panchakarma-wrap .pancha-glass-card {
  position: relative;
  padding: clamp(30px, 4vw, 50px);
  border-radius: 12px;
  border: 1px solid rgba(55, 103, 23, 0.2196078431);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}
.panchakarma-wrap .pancha-glass-card .card-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at center, rgba(5, 61, 14, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.panchakarma-wrap .pancha-glass-card .card-inner {
  position: relative;
  z-index: 2;
}
.panchakarma-wrap .pancha-glass-card .card-icon-wrap {
  font-size: 30px;
  color: #053d0e;
  margin-bottom: 25px;
  display: inline-block;
  transition: all 0.5s ease;
  filter: drop-shadow(0 5px 15px rgba(5, 61, 14, 0.2));
}
.panchakarma-wrap .pancha-glass-card .para {
  font-size: 15.5px;
  line-height: 1.9;
  color: #4d3b3b;
  margin: 0;
}
.panchakarma-wrap .premium-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.panchakarma-wrap .premium-check-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #000;
  font-weight: 500;
  line-height: 1.6;
  transition: all 0.3s ease;
}
.panchakarma-wrap .premium-check-list li:last-child {
  margin-bottom: 0;
}
.panchakarma-wrap .premium-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #053d0e;
  font-size: 20px;
  font-weight: 500;
  transition: transform 0.3s ease;
}
.panchakarma-wrap .pancha-image-bottom .image-container-premium {
  margin: 0 auto;
  padding: 10px;
  border-radius: 10px;
  border: 3px solid #844809;
}
.panchakarma-wrap .pancha-image-bottom .image-container-premium .image-window {
  position: relative;
  overflow: hidden;
  background-color: #000;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.panchakarma-wrap .pancha-image-bottom .image-container-premium .image-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.4s ease;
}
.panchakarma-wrap .pancha-image-bottom .image-container-premium .image-window .image-curtain {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.panchakarma-wrap .pancha-image-bottom .image-container-premium .image-window .image-curtain .view-text {
  color: #fff;
  font-size: clamp(30px, 6vw, 50px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: capitalize;
  font-family: "Lavishly Yours", cursive;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 0 20px;
}

/* Home Courses Slider Section */
.home-courses-slider {
  position: relative;
}
.home-courses-slider .home-course-slider {
  padding: 20px 0 80px;
  overflow: hidden;
}
.home-courses-slider .home-course-slider .swiper-slide {
  height: auto;
}
.home-courses-slider .course-branded-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.home-courses-slider .course-branded-card .card-img-top {
  position: relative;
  height: 250px;
  overflow: hidden;
  z-index: 1;
}
.home-courses-slider .course-branded-card .card-img-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s ease;
}
.home-courses-slider .course-branded-card .card-img-top .level-badge-box {
  border: 1.5px solid #053d0e;
  padding: 6px 30px;
  position: absolute;
  bottom: 0;
  left: 0px;
  display: inline-block;
  background: #fff;
}
.home-courses-slider .course-branded-card .card-img-top .level-badge-box .level-text {
  color: #053d0e;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.home-courses-slider .course-branded-card .card-body {
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.home-courses-slider .course-branded-card .card-body .course-name {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 10px 25px 15px;
  font-family: "Martel Sans", sans-serif;
}
.home-courses-slider .course-branded-card .card-body .para {
  font-size: 15px;
  color: #4d3b3b;
  line-height: 1.8;
  margin: 0 30px 30px;
  font-family: "Martel Sans", sans-serif;
}
.home-courses-slider .course-branded-card .card-body .btn-wrapper {
  flex-grow: 1;
  align-items: flex-end;
}
.home-courses-slider {
  /* Swiper pagination dots */
}
.home-courses-slider .swiper-pagination {
  bottom: 30px !important;
}
.home-courses-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid #844809;
  opacity: 0.5;
  border-radius: 0;
  transform: rotate(45deg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 0 10px !important;
}
.home-courses-slider .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #844809;
  transform: rotate(45deg) scale(1.2);
}

.career-card-wrapper .career-card {
  position: relative;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}
.career-card-wrapper .career-card .career-card-img {
  position: relative;
  height: 450px;
  overflow: hidden;
  z-index: 1;
}
.career-card-wrapper .career-card .career-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.career-card-wrapper .career-card .career-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  transition: opacity 0.6s ease;
}
.career-card-wrapper .career-card .overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 25px;
}
.career-card-wrapper .career-card .overlay .text {
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.4;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 575px) {
  .career-card-wrapper .career-card .career-card-img {
    height: 250px;
  }
  iframe {
    height: 225px;
    width: 100%;
  }
}
iframe {
  height: 225px;
  width: 100%;
}

.we-follow {
  position: relative;
}
.we-follow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/ayurveda/we-follow/background.webp) no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.19;
  z-index: -1;
}
.we-follow .timeline {
  position: relative;
}
.we-follow .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  border-left: 2px dashed #053d0e;
  transform: translateX(-50%);
}
.we-follow .timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
}
.we-follow .timeline-item:last-child {
  margin-bottom: 0;
}
.we-follow .timeline-card {
  background: #fff;
  border: 1.5px solid rgba(5, 61, 14, 0.2);
  border-radius: 20px;
  padding: 36px 30px;
  width: 42%;
  position: relative;
  z-index: 2;
  transition: 0.3s ease;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
}
.we-follow .timeline-card h4 {
  color: #844809;
  font-weight: 700;
  font-size: 22px;
}
.we-follow .timeline-card p {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}
.we-follow .timeline-card:hover {
  border-color: #053d0e;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}
.we-follow .timeline-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #053d0e;
  background: #fff;
  padding: 5px;
  z-index: 3;
  transition: 0.3s ease;
}
.we-follow .timeline-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.we-follow .timeline-item:first-child,
.we-follow .timeline-item:last-child {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.we-follow .timeline-item:first-child .timeline-card,
.we-follow .timeline-item:last-child .timeline-card {
  width: 55%;
  text-align: center;
  margin-top: 25px;
}
.we-follow .timeline-item:first-child .timeline-card::before, .we-follow .timeline-item:first-child .timeline-card::after,
.we-follow .timeline-item:last-child .timeline-card::before,
.we-follow .timeline-item:last-child .timeline-card::after {
  display: none;
}
.we-follow .timeline-item:first-child .timeline-img,
.we-follow .timeline-item:last-child .timeline-img {
  position: relative;
  transform: none;
  left: auto;
  top: auto;
  margin-bottom: 10px;
}
.we-follow .timeline-item:last-child {
  flex-direction: column-reverse;
}
.we-follow .timeline-item:nth-child(even):not(:last-child) {
  justify-content: flex-start;
}
.we-follow .timeline-item:nth-child(even):not(:last-child) .timeline-card {
  margin-left: 0;
}
.we-follow .timeline-item:nth-child(odd):not(:first-child):not(:last-child) {
  justify-content: flex-end;
}
.we-follow .timeline-item:nth-child(even):not(:last-child) .timeline-card::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: #053d0e;
  z-index: 5;
}
.we-follow .timeline-item:nth-child(even):not(:last-child) .timeline-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -55px;
  width: 55px;
  border-top: 2px dashed #053d0e;
  transform: translateY(-50%);
  z-index: 4;
}
.we-follow .timeline-item:nth-child(odd):not(:first-child):not(:last-child) .timeline-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right-color: #053d0e;
  z-index: 5;
}
.we-follow .timeline-item:nth-child(odd):not(:first-child):not(:last-child) .timeline-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -55px;
  width: 55px;
  border-top: 2px dashed #053d0e;
  transform: translateY(-50%);
  z-index: 4;
}
@media (max-width: 991px) {
  .we-follow .timeline::before {
    left: 30px;
    transform: none;
    top: 0;
    bottom: 0;
  }
  .we-follow .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 80px;
    margin-bottom: 60px;
  }
  .we-follow .timeline-card {
    width: 100% !important;
    padding: 24px 20px;
    text-align: left;
    position: relative;
  }
  .we-follow .timeline-card::before, .we-follow .timeline-card::after {
    display: none;
  }
  .we-follow .timeline-img {
    position: absolute;
    left: 30px;
    top: 30px;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
  }
  .we-follow .timeline-item:first-child,
  .we-follow .timeline-item:last-child {
    align-items: flex-start;
    padding-left: 80px;
  }
  .we-follow .timeline-item:first-child .timeline-card,
  .we-follow .timeline-item:last-child .timeline-card {
    text-align: left;
    margin-top: 0;
  }
  .we-follow .timeline-item:first-child .timeline-img,
  .we-follow .timeline-item:last-child .timeline-img {
    position: absolute;
    left: 30px;
    top: 30px;
    transform: translate(-50%, -50%);
    margin: 0;
  }
}

.join-ayurveda-programs {
  position: relative;
  overflow: hidden;
}
.join-ayurveda-programs .programs-grid {
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .join-ayurveda-programs .programs-grid {
    flex-direction: column;
  }
}
.join-ayurveda-programs .program-cta-card {
  background: white;
  padding: 60px 40px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
  text-align: left;
}
.join-ayurveda-programs .program-cta-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(5, 61, 14, 0.04);
  border-radius: 50%;
  z-index: 0;
  transition: all 0.6s ease;
}
.join-ayurveda-programs .program-cta-card .card-content {
  position: relative;
  z-index: 1;
}
.join-ayurveda-programs .program-cta-card .card-content .main-heading {
  font-size: 32px;
  margin-bottom: 20px;
  color: #844809;
  font-family: "Marcellus", serif;
  font-weight: 400;
}
.join-ayurveda-programs .program-cta-card .card-content .para {
  font-size: 17px;
  color: #666;
  margin-bottom: 35px;
  line-height: 1.7;
}
.join-ayurveda-programs .program-cta-card .card-content .theme-btn.alt {
  color: white;
}
.join-ayurveda-programs .program-cta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  border-color: rgba(5, 61, 14, 0.15);
}
.join-ayurveda-programs .program-cta-card:hover::before {
  transform: scale(1.6);
  background: rgba(5, 61, 14, 0.08);
}
.join-ayurveda-programs .program-cta-card.alt {
  background: #053d0e;
}
.join-ayurveda-programs .program-cta-card.alt .main-heading {
  color: white;
}
.join-ayurveda-programs .program-cta-card.alt .sub-title {
  color: white;
}
.join-ayurveda-programs .program-cta-card.alt .para {
  color: rgba(255, 255, 255, 0.7);
}
.join-ayurveda-programs .program-cta-card.alt::before {
  background: rgba(255, 255, 255, 0.06);
}
.join-ayurveda-programs .program-cta-card.alt:hover ::before {
  background: rgba(255, 255, 255, 0.12);
}
.join-ayurveda-programs .program-cta-card.alt .theme-btn.alt {
  border: 1px solid white;
}

/* ================= Common Banner ================= */
.common-banner {
  padding: 100px 0;
  position: relative;
  background-size: cover !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.common-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.common-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.common-banner .banner-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}
.common-banner .banner-icon img {
  width: 65px;
  height: 65px;
  opacity: 0.9;
  filter: invert(1) brightness(100);
}
.common-banner .banner-title {
  color: #fff;
  font-size: clamp(32px, 5vw, 55px);
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
}
.common-banner .bread-content {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  z-index: 3;
  display: flex;
}
.common-banner .bread-content .bread-list {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  padding: 0 15px;
  list-style: none;
  width: 100%;
  justify-content: center;
}
.common-banner .bread-content .bread-list li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.common-banner .bread-content .bread-list li a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  display: inline-block;
}
.common-banner .bread-content .bread-list li a:hover {
  color: #053d0e;
}
.common-banner .bread-content .bread-list li:not(:last-child)::after {
  content: ">>";
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
.common-banner .bread-content .bread-list li:last-child a {
  color: #fff8f8;
  pointer-events: none;
}

/* ================= Therapy Programs Tabs and Cards ================= */
.therapy-tabs-wrapper {
  position: relative;
}
.therapy-tabs-wrapper .therapy-nav-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 2vw, 30px);
  margin: 0 auto clamp(25px, 4vw, 40px);
  background: linear-gradient(to right, #fcfbfa, #fcfbfa, #fcfbfa);
  padding: 10px 0;
  list-style: none;
  border: 1px solid rgba(138, 163, 116, 0.3);
}
.therapy-tabs-wrapper .therapy-nav-tab button {
  font-family: "Martel Sans", sans-serif;
  font-size: clamp(16px, 1.3vw, 18px);
  color: #666;
  background: transparent;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}
.therapy-tabs-wrapper .therapy-nav-tab button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #053d0e;
  transition: width 0.35s ease;
}
.therapy-tabs-wrapper .therapy-nav-tab button:hover, .therapy-tabs-wrapper .therapy-nav-tab button.active {
  color: #053d0e;
}
.therapy-tabs-wrapper .therapy-nav-tab button.active::after {
  width: 100%;
}
.therapy-tabs-wrapper {
  /* Tab Content Handling */
}
.therapy-tabs-wrapper .tab-content {
  display: none;
  animation: fadeInTab 0.5s ease;
}
.therapy-tabs-wrapper .tab-content.active {
  display: block;
}
.therapy-tabs-wrapper {
  /* Therapy Cards Premium Design */
}
.therapy-tabs-wrapper .therapy-card {
  background: #fff;
  border-radius: 30px;
  border: 1px solid rgba(138, 163, 116, 0.3);
  /* Soft green border matching reference */
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  /* Subtle initial shadow */
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
  position: relative;
  z-index: 1;
}
.therapy-tabs-wrapper .therapy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  /* Stronger shadow on hover */
  border-color: rgba(138, 163, 116, 0.6);
}
.therapy-tabs-wrapper .therapy-card .img-wrap {
  height: 230px;
  overflow: hidden;
  margin: 15px;
  /* Fully inset image on all 4 sides */
  border-radius: 20px;
  /* Rounded corners on all sides */
  position: relative;
}
.therapy-tabs-wrapper .therapy-card .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.therapy-tabs-wrapper .therapy-card .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.therapy-tabs-wrapper .therapy-card:hover .img-wrap::after {
  opacity: 1;
}
.therapy-tabs-wrapper .therapy-card:hover .img-wrap img {
  transform: scale(1.08);
}
.therapy-tabs-wrapper .therapy-card .card-body {
  padding: clamp(20px, 3vw, 30px);
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 3;
}
.therapy-tabs-wrapper .therapy-card .card-body h3 {
  color: #053d0e;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
  padding: 0 10px;
  /* Slight squeeze for centered text */
}
.therapy-tabs-wrapper .therapy-card .card-body:hover h3 {
  color: rgb(1.1363636364, 13.8636363636, 3.1818181818);
}
.therapy-tabs-wrapper .therapy-card .card-body .para {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 0 10px;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= 200-Hour TTC Animated Banner ================= */
.ttc-hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 80vh;
}
.ttc-hero-banner .bg-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ttc-hero-banner .bg-slider .slide {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: kenBurnsFade 18s infinite linear;
}
.ttc-hero-banner .bg-slider .bg-img-1 {
  animation-delay: 0s;
}
.ttc-hero-banner .bg-slider .bg-img-2 {
  animation-delay: 6s;
}
.ttc-hero-banner .bg-slider .bg-img-3 {
  animation-delay: 12s;
}
.ttc-hero-banner .bg-slider::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.ttc-hero-banner .hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
}
.ttc-hero-banner .banner-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
  animation: fadeInUp 1s ease 0.2s both;
}
.ttc-hero-banner .banner-icon img {
  width: 75px;
  /* Slightly larger lotus */
  height: 75px;
  opacity: 0.95;
  filter: invert(1) brightness(100);
}
.ttc-hero-banner .banner-title {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
  font-family: "Marcellus", serif;
  font-size: clamp(28px, 5.5vw, 70px);
  font-weight: 500;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s ease 0.4s both;
}
.ttc-hero-banner .hero-slogan {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Marcellus", serif;
  font-size: clamp(18px, 2.5vw, 25px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.6s both;
}
.ttc-hero-banner .bread-content {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  z-index: 3;
  display: flex;
}
.ttc-hero-banner .bread-content .bread-list {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  padding: 0 15px;
  list-style: none;
  width: 100%;
  justify-content: center;
}
.ttc-hero-banner .bread-content .bread-list li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.ttc-hero-banner .bread-content .bread-list li a {
  color: rgba(255, 255, 255, 0.842);
  display: inline-block;
}
.ttc-hero-banner .bread-content .bread-list li:not(:last-child)::after {
  content: ">>";
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
.ttc-hero-banner .bread-content .bread-list li:last-child a {
  color: #fff;
  /* Highlight the active page */
  pointer-events: none;
}

@media (max-width: 768px) {
  .ttc-hero-banner {
    height: 50vh;
  }
}
.therapy-hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.therapy-hero-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.therapy-hero-banner .hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
}
.therapy-hero-banner .banner-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
  animation: fadeInUp 1s ease 0.2s both;
}
.therapy-hero-banner .banner-icon img {
  width: 75px;
  height: 75px;
  opacity: 0.95;
  filter: invert(1) brightness(100);
}
.therapy-hero-banner .banner-title {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
  font-family: "Marcellus", serif;
  font-size: clamp(28px, 5.5vw, 70px);
  font-weight: 500;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s ease 0.4s both;
}
.therapy-hero-banner .hero-slogan {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Marcellus", serif;
  font-size: clamp(18px, 2.5vw, 25px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.6s both;
}
.therapy-hero-banner .bread-content {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  z-index: 3;
  display: flex;
}
.therapy-hero-banner .bread-content .bread-list {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  padding: 0 15px;
  list-style: none;
  width: 100%;
  justify-content: center;
}
.therapy-hero-banner .bread-content .bread-list li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.therapy-hero-banner .bread-content .bread-list li a {
  color: rgba(255, 255, 255, 0.842);
  display: inline-block;
}
.therapy-hero-banner .bread-content .bread-list li:not(:last-child)::after {
  content: ">>";
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
.therapy-hero-banner .bread-content .bread-list li:last-child a {
  color: #fff;
  pointer-events: none;
}
@media (max-width: 768px) {
  .therapy-hero-banner {
    height: 50vh;
  }
}

@keyframes kenBurnsFade {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  6.6% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.overview .img-wrap {
  padding: 10px;
  border: 2px solid #844809;
  height: 400px;
}
.overview iframe {
  border-radius: 10px;
  width: 100%;
  height: 500px;
}

.quick-overview-wrap .img-wrap {
  height: 500px;
}
.quick-overview-wrap .common-content-wrap {
  padding: 0 20px;
}

/* ================= TTC Course Overview (Accordion - Ref 3 Style) ================= */
.course-overview-wrap {
  position: relative;
  z-index: 1;
}
.course-overview-wrap .img-wrap {
  height: 500px;
  padding: 10px;
  border: 2px solid #844809;
  position: sticky;
  top: 80px;
}
.course-overview-wrap .heading-wrap {
  margin-bottom: 50px;
}
.course-overview-wrap {
  /* Accordion Global Overrides */
}
.course-overview-wrap .overview-accordion .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px dashed #ccc;
  border-radius: 0;
  margin-bottom: 0px;
}
.course-overview-wrap .overview-accordion .accordion-item:last-child {
  border-bottom: 1px dashed #ccc;
}
.course-overview-wrap .overview-accordion .accordion-header img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.course-overview-wrap .overview-accordion .accordion-header {
  margin: 0;
}
.course-overview-wrap .overview-accordion {
  /* Accordion Trigger Button */
}
.course-overview-wrap .overview-accordion .accordion-button {
  background-color: transparent;
  color: #333;
  font-family: "Marcellus", serif;
  font-size: 19px;
  font-weight: 500;
  padding: 20px 10px;
  box-shadow: none;
  border-radius: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  display: flex;
  justify-content: left;
  gap: 10px;
  /* Remove default Bootstrap caret */
}
.course-overview-wrap .overview-accordion .accordion-button::after {
  display: none;
}
.course-overview-wrap .overview-accordion .accordion-button {
  /* Custom SVG Chevron (Right aligned) */
}
.course-overview-wrap .overview-accordion .accordion-button::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #053d0e;
  border-bottom: 2px solid #053d0e;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}
.course-overview-wrap .overview-accordion .accordion-button {
  /* Active (Open) State Styling */
}
.course-overview-wrap .overview-accordion .accordion-button:not(.collapsed) {
  color: #053d0e;
  background-color: rgba(255, 255, 255, 0.856);
  box-shadow: none;
  border: 1px solid;
}
.course-overview-wrap .overview-accordion .accordion-button:not(.collapsed)::before {
  transform: translateY(-20%) rotate(-135deg);
}
.course-overview-wrap .overview-accordion .accordion-button:not(.collapsed) .accordion-icon {
  color: #053d0e;
}
.course-overview-wrap .overview-accordion .accordion-button {
  /* Icon next to the title */
}
.course-overview-wrap .overview-accordion .accordion-button .accordion-icon {
  margin-right: 15px;
  font-size: 18px;
  color: #555;
  transition: color 0.3s ease;
}
.course-overview-wrap .overview-accordion .accordion-button:hover {
  color: #844809;
}
.course-overview-wrap .overview-accordion .accordion-button:hover .accordion-icon {
  color: #844809;
}
.course-overview-wrap .overview-accordion {
  /* Accordion Open Content Body */
}
.course-overview-wrap .overview-accordion .accordion-body {
  padding: 10px 0 30px 40px;
  /* Indent content slightly past the icon */
}
.course-overview-wrap .overview-accordion .accordion-body .tab-subtitle {
  color: #844809;
  font-family: "Marcellus", serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 25px;
}
.course-overview-wrap .overview-accordion .accordion-body .tab-subtitle:first-of-type {
  margin-top: 0;
}
.course-overview-wrap .overview-accordion .accordion-body .tab-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ================= TTC Dates and Prices Table (Ref 1 Style) ================= */
.date-price-wrap {
  position: relative;
  z-index: 1;
}
.date-price-wrap .custom-table-wrapper {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
.date-price-wrap .custom-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.date-price-wrap .custom-pricing-table thead {
  background-color: #426b18;
  color: #fff;
}
.date-price-wrap .custom-pricing-table thead th {
  border: none;
  padding: 24px 15px;
  vertical-align: top;
  font-family: "Marcellus", serif;
  font-weight: 500;
}
.date-price-wrap .custom-pricing-table thead {
  /* Column Dotted Separators in Header */
}
.date-price-wrap .custom-pricing-table thead .border-right-dashed {
  border-right: 1px dashed rgba(255, 255, 255, 0.4);
}
.date-price-wrap .custom-pricing-table thead .th-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.date-price-wrap .custom-pricing-table thead {
  /* Native tags inside Header */
}
.date-price-wrap .custom-pricing-table thead .badge-tag {
  background-color: #fff;
  color: #053d0e;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  padding: 5px 28px;
  border-radius: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.date-price-wrap .custom-pricing-table thead {
  /* Flex layout for the 4-column Price header */
}
.date-price-wrap .custom-pricing-table thead .price-cols-head {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-top: 15px;
}
.date-price-wrap .custom-pricing-table thead .price-cols-head .badge-tag {
  font-size: 12px;
  padding: 4px 12px;
  background-color: #fff;
  color: #053d0e;
}
.date-price-wrap .custom-pricing-table {
  /* Table Body */
}
.date-price-wrap .custom-pricing-table tbody tr {
  border-bottom: 1px dashed #ddd;
  /* exactly like ref */
  transition: background-color 0.3s ease;
}
.date-price-wrap .custom-pricing-table tbody tr:last-child {
  border-bottom: none;
}
.date-price-wrap .custom-pricing-table tbody tr:hover {
  background-color: rgba(5, 61, 14, 0.02);
}
.date-price-wrap .custom-pricing-table tbody td {
  border: none;
  padding: 30px 15px;
  vertical-align: middle;
}
.date-price-wrap .custom-pricing-table tbody {
  /* Main Separators in Body */
}
.date-price-wrap .custom-pricing-table tbody .border-right-dashed {
  border-right: 1px dashed #ddd;
}
.date-price-wrap .custom-pricing-table tbody {
  /* Date Col Area */
}
.date-price-wrap .custom-pricing-table tbody .td-date strong {
  font-family: "Marcellus", serif;
  font-size: 18px;
  color: #333;
  font-weight: 600;
  display: block;
}
.date-price-wrap .custom-pricing-table tbody .td-date sup {
  font-size: 11px;
}
.date-price-wrap .custom-pricing-table tbody .td-date .seats-left {
  display: inline-block;
  font-size: 13px;
  color: #053d0e;
  /* Not teal, but theme green */
  border: 1px dashed #053d0e;
  padding: 3px 14px;
  border-radius: 4px;
  margin-top: 10px;
  background: rgba(5, 61, 14, 0.05);
}
.date-price-wrap .custom-pricing-table tbody .td-price-group {
  padding: 0;
}
.date-price-wrap .custom-pricing-table tbody .price-cols-body {
  display: flex;
  justify-content: space-around;
  height: 100%;
  padding: 15px 10px;
}
.date-price-wrap .custom-pricing-table tbody .price-cols-body .price-cell {
  flex: 1;
  text-align: center;
  padding: 0 5px;
}
.date-price-wrap .custom-pricing-table tbody .price-cols-body .price-cell .price-val {
  font-family: "Marcellus", serif;
}
.date-price-wrap .custom-pricing-table tbody .price-cols-body .price-cell .price-val strong {
  font-size: 16px;
  color: #222;
  font-weight: 600;
}
.date-price-wrap .custom-pricing-table tbody .price-cols-body .price-cell .price-val del {
  font-size: 14px;
  color: #a0a0a0;
  margin-left: 5px;
}
.date-price-wrap .custom-pricing-table tbody .price-cols-body .price-cell .price-sub {
  display: block;
  font-size: 13px;
  color: #053d0e;
  margin-top: 5px;
}
@media (min-width: 992px) {
  .date-price-wrap .custom-pricing-table tbody .price-cols-body .price-cell .d-none-lg {
    display: none !important;
  }
}
.date-price-wrap .custom-pricing-table tbody {
  /* Booking Button */
}
.date-price-wrap .custom-pricing-table tbody .td-book .btn-outline-round {
  border: 2px solid #053d0e;
  color: #053d0e;
  background: transparent;
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}
.date-price-wrap .custom-pricing-table tbody .td-book .btn-outline-round:hover {
  background: #053d0e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(5, 61, 14, 0.2);
}
@media (max-width: 991px) {
  .date-price-wrap .custom-table-wrapper {
    display: none !important;
  }
}
.date-price-wrap .mobile-pricing-cards .m-price-card {
  background: #fff;
  margin-bottom: 60px;
  /* Room for overlapping button */
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-head {
  background-color: #053d0e;
  padding: 25px 15px;
  text-align: center;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-head h3 {
  font-family: "Marcellus", serif;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-head h3 sup {
  font-size: 12px;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-head .badge-tag {
  background-color: #fff;
  color: #053d0e;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  font-family: "Martel Sans", sans-serif;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-body {
  border: 1px solid #053d0e;
  border-top: none;
  padding: 0 0 25px 0;
  /* padding bottom so grid doesn't hit the border */
  position: relative;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-body .price-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-body .price-grid .grid-item {
  width: 50%;
  padding: 15px 5px;
  text-align: center;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-body .price-grid .grid-item.border-top-dashed {
  border-top: 1px dashed #ccc;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-body .price-grid .grid-item .price-val {
  font-family: "Marcellus", serif;
  margin-bottom: 2px;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-body .price-grid .grid-item .price-val strong {
  font-size: 18px;
  color: #222;
  font-weight: 600;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-body .price-grid .grid-item .price-val del {
  font-size: 13px;
  color: #a0a0a0;
  margin-left: 4px;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-body .price-grid .grid-item .price-sub {
  display: block;
  font-size: 12px;
  color: #053d0e;
  margin-bottom: 10px;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-body .price-grid .grid-item .invisible {
  visibility: hidden;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-body .price-grid .grid-item .room-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #053d0e;
  border: 1px dashed #053d0e;
  padding: 5px 10px;
  border-radius: 2px;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-body .card-action {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 100%;
  margin-bottom: 10px;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-body .card-action .btn-outline-round {
  border: 1.5px solid #053d0e;
  color: #053d0e;
  background: #fff;
  border-radius: 30px;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}
.date-price-wrap .mobile-pricing-cards .m-price-card .card-body .card-action .btn-outline-round:hover {
  background: #053d0e;
  color: #fff;
}

/* ================= Daily Schedule Component ================= */
.daily-schedule-wrap .schedule-item {
  margin-bottom: 30px;
  position: relative;
  margin-top: 15px;
  /* Nth-child logic for odd/even styling */
}
.daily-schedule-wrap .schedule-item:nth-child(even) .schedule-time {
  background-color: #844809;
}
.daily-schedule-wrap .schedule-item:nth-child(even) .schedule-activity {
  border-color: #844809;
}
.daily-schedule-wrap .schedule-item:nth-child(even)::after {
  left: auto;
  right: 15px;
}
.daily-schedule-wrap .schedule-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  background: url(../img/ayurveda/shedule-bg.webp) no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
  z-index: 1;
  width: 100px;
  height: 80px;
}
.daily-schedule-wrap .schedule-time {
  background-color: #053d0e;
  color: #ffffff;
  font-family: "Marcellus", serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 40px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  z-index: 2;
}
.daily-schedule-wrap .schedule-activity {
  border: 1.5px dashed #053d0e;
  padding: 25px 20px 15px 20px;
  font-size: 15px;
  color: #222;
  background-color: #fff;
  font-weight: 500;
  font-family: "Martel Sans", sans-serif;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ================= Benefits Section Component ================= */
.benefits-wrap {
  position: relative;
  z-index: 1;
}
.benefits-wrap .benefit-card {
  background: #ffffff;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
  text-align: center;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
}
.benefits-wrap .benefit-card .card-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(227, 227, 227, 0.6784313725);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #053d0e;
}
.benefits-wrap .benefit-card .card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.benefits-wrap .benefit-card::before, .benefits-wrap .benefit-card::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.benefits-wrap .benefit-card {
  /* Top Left */
}
.benefits-wrap .benefit-card::before {
  top: 0;
  left: 0;
  border-top: 2px solid #053d0e;
  border-left: 2px solid #053d0e;
}
.benefits-wrap .benefit-card {
  /* Bottom Right */
}
.benefits-wrap .benefit-card::after {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #053d0e;
  border-right: 2px solid #053d0e;
}
.benefits-wrap .benefit-card {
  /* Hover Animation */
}
.benefits-wrap .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.benefits-wrap .benefit-card:hover::before, .benefits-wrap .benefit-card:hover::after {
  width: 50px;
  height: 50px;
  opacity: 1;
}
.benefits-wrap .benefit-card.card-brown {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5019607843), rgba(255, 255, 255, 0.4509803922)), url(../img/ayurveda/card-bg.webp) repeat-x;
  background-position: center;
  background-size: cover;
}
.benefits-wrap .benefit-card.card-brown::before, .benefits-wrap .benefit-card.card-brown::after {
  border-color: #844809;
}
.benefits-wrap .benefit-card.card-brown p,
.benefits-wrap .benefit-card.card-brown strong {
  color: black;
}

/* ================= Who Can Join Section ================= */
.who-can-join {
  position: relative;
  z-index: 1;
}
.who-can-join .img-wrap {
  height: 500px;
  overflow: hidden;
}
.who-can-join .content-wrap {
  border: 3px solid #053d0e;
  border-left: none;
  padding: 20px;
  height: 100%;
  position: relative;
  flex-direction: column;
}
.who-can-join .content-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/ayurveda/join-bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
}

.why-choose {
  position: relative;
  z-index: 1;
}
.why-choose .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 48%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .why-choose .img-wrap {
    position: static;
    width: 100%;
    margin-bottom: 30px;
    height: 350px;
    border-radius: 8px;
  }
}
.why-choose .content-wrap {
  padding: 20px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
  overflow: hidden;
}
.why-choose .content-wrap::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: url("../img/ayurveda/shedule-bg.webp") no-repeat center;
  background-size: contain;
  opacity: 0.7;
  z-index: -1;
  animation: rotateBg 10s linear infinite;
}
@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ================= Daily Routine Table Section ================= */
.daily-routine-wrap .routine-table {
  width: 100%;
  font-family: "Martel Sans", sans-serif;
  border: 1px solid;
}
.daily-routine-wrap .routine-table th,
.daily-routine-wrap .routine-table td {
  padding: 16px 20px;
  border-bottom: 1px solid;
  text-align: center;
  vertical-align: middle;
}
.daily-routine-wrap .routine-table {
  /* Header styling */
}
.daily-routine-wrap .routine-table thead th {
  background-color: #053d0e;
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
}
.daily-routine-wrap .routine-table thead .day-col {
  width: 30%;
}
.daily-routine-wrap .routine-table thead .activity-col {
  width: 70%;
}
.daily-routine-wrap .routine-table tbody tr td {
  font-size: 16px;
  border: none;
  border: 1px solid;
}
.daily-routine-wrap .routine-table tbody tr {
  /* Day column with a slightly darker tint */
}
.daily-routine-wrap .routine-table tbody tr .day-col {
  font-weight: 700;
  border-bottom: 1px solid;
  color: #222;
}
.daily-routine-wrap .routine-table tbody tr {
  /* Activity column with a very light tint */
}
.daily-routine-wrap .routine-table tbody tr .activity-col {
  color: #053d0e;
  font-weight: 500;
}
.daily-routine-wrap {
  /* Responsive adjustments for mobile */
}
@media (max-width: 767px) {
  .daily-routine-wrap .routine-table th,
  .daily-routine-wrap .routine-table td {
    padding: 12px 10px;
    font-size: 14px;
  }
  .daily-routine-wrap .routine-table thead th {
    font-size: 16px;
  }
}

/* ================= Inclusions Section (Horizontal 2-Box Centered UI) ================= */
.inclusions-wrap .heading-wrap {
  text-align: center;
  margin-bottom: 50px;
}
.inclusions-wrap .inclusion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.inclusions-wrap .inclusion-grid .inclusion-box {
  width: calc(50% - 15px);
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: row;
  height: auto;
}
.inclusions-wrap .inclusion-grid .inclusion-box:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 1199px) {
  .inclusions-wrap .inclusion-grid .inclusion-box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .inclusions-wrap .inclusion-grid .inclusion-box {
    flex-direction: column !important;
    width: 100%;
    height: auto;
  }
}
.inclusions-wrap .inclusion-grid .inclusion-box .icon-box {
  width: 40%;
  min-height: 250px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .inclusions-wrap .inclusion-grid .inclusion-box .icon-box {
    width: 100%;
    min-height: 220px;
    height: 220px;
  }
}
.inclusions-wrap .inclusion-grid .inclusion-box .icon-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inclusions-wrap .inclusion-grid .inclusion-box .content-box {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
@media (max-width: 767px) {
  .inclusions-wrap .inclusion-grid .inclusion-box .content-box {
    padding: 25px 20px;
  }
}
.inclusions-wrap .inclusion-grid .inclusion-box .content-box .group-name {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 18px;
  font-weight: 700;
  color: #053d0e;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.inclusions-wrap .inclusion-grid .inclusion-box .content-box .item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inclusions-wrap .inclusion-grid .inclusion-box .content-box .item-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}
.inclusions-wrap .inclusion-grid .inclusion-box .content-box .item-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #053d0e;
  font-weight: 900;
}

.bottom-features-bar {
  background-color: transparent;
  padding: 30px 0 0 0;
  border: none;
  box-shadow: none;
}
.bottom-features-bar .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  height: 100%;
}
.bottom-features-bar .feature-item .icon-box {
  width: 28px;
  height: 28px;
  background: rgba(5, 61, 14, 0.04);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bottom-features-bar .feature-item .icon-box img {
  width: 25px;
  height: 25px;
}
.bottom-features-bar .feature-item span {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .bottom-features-bar {
    padding: 10px;
  }
}

/* ================= Pricing Section ================= */
.pricing-wrap {
  position: relative;
  z-index: 1;
}
.pricing-wrap .price-card {
  background: #fff;
  border-radius: 20px;
  padding: 45px 35px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(5, 61, 14, 0.08);
  text-align: center;
}
.pricing-wrap .price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(5, 61, 14, 0.2);
}
.pricing-wrap .price-card .price-header {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(132, 72, 9, 0.1);
}
.pricing-wrap .price-card .price-header .package-name {
  font-family: "Marcellus", serif;
  font-size: 20px;
  color: #844809;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.pricing-wrap .price-card .price-header .price-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}
.pricing-wrap .price-card .price-header .price-row .price-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-wrap .price-card .price-header .price-row .price-item .room-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #844809;
  margin-bottom: 8px;
  background: rgba(132, 72, 9, 0.05);
  padding: 2px 10px;
  border-radius: 10px;
}
.pricing-wrap .price-card .price-header .price-row .price-item:not(:last-child) {
  position: relative;
}
.pricing-wrap .price-card .price-header .price-row .price-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(132, 72, 9, 0.3);
}
.pricing-wrap .price-card .price-header .price-row .price {
  color: #222;
  display: flex;
  align-items: baseline;
  line-height: 1;
  margin-bottom: 5px;
}
.pricing-wrap .price-card .price-header .price-row .price .currency {
  font-size: 20px;
  font-weight: 700;
  margin-right: 2px;
}
.pricing-wrap .price-card .price-header .price-row .price .amount {
  font-size: 36px;
  font-weight: 800;
  font-family: "Marcellus", serif;
}
.pricing-wrap .price-card .price-header .price-row .duration {
  font-size: 13px;
  color: #4d3b3b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-wrap .price-card .price-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pricing-wrap .price-card .price-body .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  text-align: left;
}
.pricing-wrap .price-card .price-body .feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  font-size: 15px;
  color: #444;
  line-height: 1.4;
  font-weight: 500;
}
.pricing-wrap .price-card .price-body .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  color: #053d0e;
  font-weight: 900;
  font-size: 18px;
}
.pricing-wrap .price-card .price-body .feature-list li strong {
  color: #111;
  font-weight: 600;
}
.pricing-wrap .price-card .price-body .btn-wrapper {
  margin-top: auto;
}
.pricing-wrap .price-card .price-body .btn-wrapper .theme-btn {
  width: 100%;
  display: block;
}
.pricing-wrap {
  /* Highlighted Premium Card */
}
.pricing-wrap .premium-card {
  overflow: hidden;
  background: #fff;
  border: 2px solid #053d0e;
  z-index: 2;
}
.pricing-wrap .premium-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 8px;
  background: #053d0e;
  border-radius: 20px 20px 0 0;
}
.pricing-wrap .premium-card .popular-badge {
  position: absolute;
  top: 30px;
  right: -45px;
  background: #844809;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 40px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 5;
}
.pricing-wrap .premium-card:hover {
  box-shadow: 0 35px 70px rgba(5, 61, 14, 0.15);
}
.pricing-wrap .premium-card .btn-wrapper .theme-btn:not(.alt) {
  background: #053d0e;
  box-shadow: 0 10px 20px rgba(5, 61, 14, 0.2);
}
.pricing-wrap .premium-card .btn-wrapper .theme-btn:not(.alt):hover {
  background: rgb(3.0681818182, 37.4318181818, 8.5909090909);
  transform: translateY(-2px);
}

/* ================= Ayurveda Journey Section ================= */
#tradition {
  overflow: hidden;
}

.tradition-info-box {
  width: 23%;
  position: relative;
  z-index: 9;
}
.tradition-info-box:nth-child(2n) {
  margin-top: 10%;
}
.tradition-info-box:nth-child(odd) {
  margin-top: 1%;
}
.tradition-info-box .guru-arrow {
  position: absolute;
  z-index: -1;
}
.tradition-info-box:first-child .guru-arrow {
  right: -80px;
  top: 29px;
  transform: rotate(-4deg);
}
.tradition-info-box:nth-child(3) .guru-arrow {
  right: -80px;
  top: 45px;
  transform: rotate(-4deg);
}
.tradition-info-box:nth-child(2) .guru-arrow {
  right: -57px;
  top: -15px;
  transform: rotateX(180deg);
}
.tradition-info-box:nth-child(4) .guru-arrow {
  right: -78px;
  top: 98px;
  transform: rotate(-18deg);
}
.tradition-info-box:nth-child(4).meet {
  top: 191px;
  right: -71px;
  transform: rotate(58deg);
}
.tradition-info-box:nth-child(5) .guru-arrow {
  right: -450px;
  top: 32px;
  transform: rotateY(180deg) rotate(15deg);
}
.tradition-info-box:nth-child(7) .guru-arrow {
  right: -450px;
  top: 32px;
  transform: rotate(165deg);
}
.tradition-info-box:nth-child(6) .guru-arrow {
  right: -420px;
  top: 5px;
  transform: rotateY(180deg) rotate(-11deg);
}
.tradition-info-box:nth-child(8) .guru-arrow {
  top: -125px;
  right: -93px;
  transform: rotate(165deg) rotateX(180deg);
}
.tradition-info-box .tradition-info-box:first-child .guru-arrow,
.tradition-info-box .tradition-info-box:nth-child(3) .guru-arrow {
  right: -80px;
  top: 70px;
  transform: rotate(-4deg);
}
.tradition-info-box .tradition-info-box:nth-child(2) .guru-arrow {
  right: -80px;
  top: -60px;
  transform: rotateX(180deg);
}
.tradition-info-box .tradition-info-box:nth-child(4) .guru-arrow {
  right: -90px;
  top: 85px;
  transform: rotate(-18deg);
}
.tradition-info-box .tradition-info-box:nth-child(4) .guru-arrow.meet {
  top: 178px;
  right: -80px;
  transform: rotate(58deg);
}
.tradition-info-box .tradition-info-box:nth-child(5) .guru-arrow,
.tradition-info-box .tradition-info-box:nth-child(7) .guru-arrow {
  right: -90px;
  top: 32px;
  transform: rotate(165deg);
}
.tradition-info-box .tradition-info-box:nth-child(6) .guru-arrow {
  right: -90px;
  top: -58px;
  transform: rotateY(180deg) rotate(-11deg);
}
.tradition-info-box .tradition-info-box:nth-child(8) .guru-arrow {
  top: -125px;
  right: -93px;
  transform: rotate(165deg) rotateX(180deg);
}

.guru-arrow svg {
  width: 100%;
  height: 148px;
}

.dashed {
  stroke-dasharray: 9;
  stroke-width: 10;
}

.line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: 5s linear infinite forwards dash;
}

.tradition-info-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tradition-info-box:nth-child(odd) {
  margin-top: 1%;
}

.tradition-info-box {
  width: 23%;
  position: relative;
  z-index: 9;
}

.tradition-info-box:nth-child(2n) {
  margin-top: 10%;
}

#tradition {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#tradition::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/we-follow/background.webp) no-repeat center;
  background-size: cover;
  opacity: 0.17;
  background-attachment: fixed;
  z-index: -1;
}
#tradition .tradition-info-box {
  width: 23%;
  position: relative;
  z-index: 9;
}
#tradition .tradition-info-box .fab-checkbox:checked ~ .fab-wheel .fab-action,
#tradition .tradition-info-box .fab-dots {
  opacity: 1;
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
#tradition .tradition-info-box .tradition-info-box .guru-arrow {
  position: absolute;
  z-index: -1;
}
#tradition .tradition-info-box .tradition-info-box:first-child .guru-arrow,
#tradition .tradition-info-box .tradition-info-box:nth-child(3) .guru-arrow {
  right: -80px;
  top: 70px;
  transform: rotate(-4deg);
}
#tradition .tradition-info-box .tradition-info-box:nth-child(2) .guru-arrow {
  right: -80px;
  top: -60px;
  transform: rotateX(180deg);
}
#tradition .tradition-info-box .tradition-info-box:nth-child(4) .guru-arrow {
  right: -90px;
  top: 85px;
  transform: rotate(-18deg);
}
#tradition .tradition-info-box .tradition-info-box:nth-child(4) .guru-arrow.meet {
  top: 178px;
  right: -80px;
  transform: rotate(58deg);
}
#tradition .tradition-info-box .tradition-info-box:nth-child(5) .guru-arrow,
#tradition .tradition-info-box .tradition-info-box:nth-child(7) .guru-arrow {
  right: -90px;
  top: 32px;
  transform: rotate(165deg);
}
#tradition .tradition-info-box .tradition-info-box:nth-child(6) .guru-arrow {
  right: -90px;
  top: -58px;
  transform: rotateY(180deg) rotate(-11deg);
}
#tradition .tradition-info-box .tradition-info-box:nth-child(8) .guru-arrow {
  top: -137px;
  right: -39px;
  transform: rotate(165deg) rotateX(180deg);
}
#tradition .guru-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #053d0e;
  padding: 3px;
  margin: auto auto 8px;
  display: block;
}
#tradition .guru-name {
  text-align: center;
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
#tradition .guru-description {
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .about-image-wrap {
    width: 100%;
    margin: 0 auto;
  }
  .guru-arrow svg {
    width: 70%;
  }
  .yttc-box {
    width: 70%;
  }
  .tradition-info-box {
    width: 48%;
    margin-bottom: 30px;
  }
  .tradition-info-box:nth-child(2n) {
    margin-top: 0;
  }
  .tradition-info-box:nth-child(odd) {
    margin-top: 0;
  }
  .tradition-info-box {
    /* 2->3 (Right block back to left block) */
  }
  .tradition-info-box:nth-child(2) .guru-arrow, .tradition-info-box:nth-child(4) .guru-arrow, .tradition-info-box:nth-child(6) .guru-arrow {
    left: -55px;
    top: 85px;
    right: auto;
    transform: rotateY(180deg) rotate(15deg);
  }
  .tradition-info-box:nth-child(2) .guru-arrow svg, .tradition-info-box:nth-child(4) .guru-arrow svg, .tradition-info-box:nth-child(6) .guru-arrow svg {
    width: 80%;
  }
  .guru-image {
    width: 120px;
    height: 120px;
  }
}
.tradition-info-box {
  width: 23%;
  position: relative;
  z-index: 9;
}

.tradition-info-box:nth-child(2n) {
  margin-top: 10%;
}

.tradition-info-box:nth-child(odd) {
  margin-top: 1%;
}

.guru-arrow svg {
  width: 100%;
  height: 148px;
}

.dashed {
  stroke-dasharray: 9;
  stroke-width: 10;
}

.line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: 5s linear infinite forwards dash;
}

.arrow {
  opacity: 0;
  animation: 0.2s 1.55s forwards show;
}

.fab-checkbox:checked ~ .fab-wheel .fab-action,
.fab-dots {
  opacity: 1;
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.tradition-info-box .guru-arrow {
  position: absolute;
  z-index: -1;
}

.tradition-info-box:first-child .guru-arrow,
.tradition-info-box:nth-child(3) .guru-arrow {
  right: -80px;
  top: 70px;
  transform: rotate(-4deg);
}

.tradition-info-box:nth-child(2) .guru-arrow {
  right: -80px;
  top: -10px;
  transform: rotateX(180deg);
}

.tradition-info-box:nth-child(4) .guru-arrow {
  right: -90px;
  top: 85px;
  transform: rotate(-18deg);
}

.tradition-info-box:nth-child(4) .guru-arrow.meet {
  top: 178px;
  right: -80px;
  transform: rotate(58deg);
}

.tradition-info-box:nth-child(5) .guru-arrow,
.tradition-info-box:nth-child(7) .guru-arrow {
  right: -90px;
  top: 32px;
  transform: rotate(165deg);
}

.tradition-info-box:nth-child(6) .guru-arrow {
  right: -90px;
  top: -58px;
  transform: rotateY(180deg) rotate(-11deg);
}

.tradition-info-box:nth-child(2n) {
  margin-top: 10%;
}

.tradition-info-box:nth-child(8) .guru-arrow {
  top: -119px;
  right: -34px;
  transform: rotate(165deg) rotateX(180deg);
}

@media (max-width: 480px) {
  .tradition-info-box {
    width: 46%;
  }
  .tradition-info-box:nth-child(2) .guru-arrow {
    bottom: -32%;
    left: -80%;
  }
  .tradition-info-box:first-child .guru-arrow {
    top: 4px;
  }
  .tradition-info-box:nth-child(3) .guru-arrow {
    top: 4px;
  }
  .tradition-info-box:nth-child(8) .guru-arrow {
    top: -53px;
    right: -52px;
  }
  .tradition-info-box:nth-child(7) .guru-arrow {
    top: 22px;
    transform: rotate(365deg);
    left: -52px;
  }
  .tradition-info-box:nth-child(5) .guru-arrow {
    top: -15px;
    left: -47px;
    transform: rotate(339deg);
  }
  .tradition-info-box .guru-image {
    width: 90px;
    height: 90px;
  }
  .tradition-info-box .tradition-info-box {
    width: 46%;
  }
  .tradition-info-box .guru-name {
    font-size: 15px;
  }
  .tradition-info-box .guru-arrow svg {
    width: 55%;
  }
  .tradition-info-box .tradition-info-box:nth-child(2) .guru-arrow {
    bottom: -32%;
    left: -80%;
  }
  .tradition-info-box .tradition-info-box:first-child .guru-arrow,
  .tradition-info-box .tradition-info-box:nth-child(3) .guru-arrow {
    top: 4px;
  }
  .tradition-info-box .tradition-info-box:nth-child(8) .guru-arrow {
    top: -53px;
    right: -52px;
  }
  .tradition-info-box .tradition-info-box:nth-child(7) .guru-arrow {
    top: 22px;
    transform: rotate(365deg);
    left: -52px;
  }
  .tradition-info-box .tradition-info-box:nth-child(5) .guru-arrow {
    top: -15px;
    left: -47px;
    transform: rotate(339deg);
  }
  .guru-name {
    font-size: 15px;
  }
  .lesson-heading {
    font-size: 15px;
  }
  .online-class-video-heading {
    font-size: 15px;
  }
  .online-testimonial-name {
    font-size: 15px;
  }
  .online-testimonial-rating-info-heading {
    font-size: 15px;
  }
  .para-sub-heading {
    font-size: 15px;
  }
  .guru-arrow svg {
    width: 55%;
  }
  .guru-image {
    width: 90px;
    height: 90px;
  }
  .tradition-info-box {
    width: 46%;
  }
  .guru-name {
    font-size: 15px;
  }
  .guru-arrow svg {
    width: 55% !important;
  }
  .tradition-info-box:nth-child(2) .guru-arrow {
    bottom: -32%;
    left: -80%;
  }
  .tradition-info-box:first-child .guru-arrow,
  .tradition-info-box:nth-child(3) .guru-arrow {
    top: 4px;
  }
  .tradition-info-box:nth-child(8) .guru-arrow {
    top: -53px;
    right: -52px;
  }
  .tradition-info-box:nth-child(7) .guru-arrow {
    top: 22px;
    transform: rotate(365deg);
    left: -52px;
  }
  .tradition-info-box:nth-child(5) .guru-arrow {
    top: -15px;
    left: -47px;
    transform: rotate(339deg);
  }
}
@media (max-width: 991px) {
  .tradition-info-box {
    width: 45% !important;
  }
  .tradition-info-box:nth-child(2) .guru-arrow {
    right: auto;
    top: auto;
    left: -40%;
    bottom: -55%;
    transform: rotate(101deg);
  }
  .tradition-info-box:first-child {
    order: 1 !important;
  }
  .tradition-info-box:nth-child(2) {
    order: 2 !important;
  }
  .tradition-info-box:nth-child(3) {
    order: 3 !important;
  }
  .tradition-info-box:nth-child(4) {
    order: 4 !important;
  }
  .tradition-info-box:nth-child(5) {
    order: 8 !important;
  }
  .tradition-info-box:nth-child(6) {
    order: 7 !important;
  }
  .tradition-info-box:nth-child(7) {
    order: 6 !important;
  }
  .tradition-info-box:last-child {
    order: 5 !important;
  }
  #tradition .tradition-info-box {
    margin-top: 10%;
  }
  #tradition .tradition-info-box:first-child {
    margin-top: 0;
  }
  #tradition .tradition-info-box:nth-child(4),
  #tradition .tradition-info-box:nth-child(5),
  #tradition .tradition-info-box:nth-child(7) {
    margin-top: 20%;
  }
  .tradition-info-box:nth-child(8) .guru-arrow {
    top: -75px;
    right: -75px;
    transform: rotate(178deg) rotateX(184deg);
  }
  .tradition-info-box:nth-child(4) .guru-arrow {
    display: none;
  }
  .tradition-info-box:nth-child(7) .guru-arrow {
    right: auto;
    top: 32px;
    transform: rotate(352deg);
    left: -108px;
  }
  .tradition-info-box:nth-child(6) .guru-arrow {
    right: -103px;
    top: -134px;
    transform: rotateY(180deg) rotate(-2deg);
  }
  .tradition-info-box:nth-child(5) .guru-arrow {
    right: auto;
    top: 11px;
    left: -105px;
    transform: rotate(345deg);
  }
}
@media (max-width: 480px) {
  .guru-image {
    width: 90px;
    height: 90px;
  }
  .tradition-info-box {
    width: 46% !important;
  }
  .guru-name {
    font-size: 15px;
  }
  .guru-arrow svg {
    width: 55% !important;
  }
  .tradition-info-box:nth-child(2) .guru-arrow {
    bottom: -32%;
    left: -80%;
  }
  .tradition-info-box:first-child .guru-arrow,
  .tradition-info-box:nth-child(3) .guru-arrow {
    top: 4px;
  }
  .tradition-info-box:nth-child(8) .guru-arrow {
    top: -122px;
    right: -52px;
  }
  .tradition-info-box:nth-child(7) .guru-arrow {
    top: 22px;
    transform: rotate(365deg);
    left: -52px;
  }
  .tradition-info-box:nth-child(5) .guru-arrow {
    top: -15px;
    left: -47px;
    transform: rotate(339deg);
  }
}
/* ================= Blog Section (Home & List) ================= */
.blog-list-page .home-blog-card,
.home-blog-section .home-blog-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  height: 350px;
}
.blog-list-page .home-blog-card .blog-img-wrap,
.home-blog-section .home-blog-card .blog-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.blog-list-page .home-blog-card .blog-img-wrap img,
.home-blog-section .home-blog-card .blog-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-list-page .home-blog-card .blog-img-wrap::after,
.home-blog-section .home-blog-card .blog-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}
.blog-list-page .home-blog-card .blog-content-wrap,
.home-blog-section .home-blog-card .blog-content-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 2;
}
.blog-list-page .home-blog-card .blog-content-wrap .blog-title,
.home-blog-section .home-blog-card .blog-content-wrap .blog-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.blog-list-page .home-blog-card .blog-content-wrap .blog-meta,
.home-blog-section .home-blog-card .blog-content-wrap .blog-meta {
  margin-bottom: 20px;
}
.blog-list-page .home-blog-card .blog-content-wrap .blog-meta .blog-date,
.home-blog-section .home-blog-card .blog-content-wrap .blog-meta .blog-date {
  color: #eee;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-list-page .home-blog-card .blog-content-wrap .blog-meta .blog-date img,
.home-blog-section .home-blog-card .blog-content-wrap .blog-meta .blog-date img {
  width: 14px;
  filter: brightness(0) invert(1);
}

/* ================= Blog Detail Page ================= */
.blog-detail-section .blog-post-card {
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 40px;
}
.blog-detail-section .blog-post-card .post-featured-image {
  margin-bottom: 25px;
}
.blog-detail-section .blog-post-card .post-featured-image img {
  width: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 450px;
}
.blog-detail-section .blog-post-card .post-meta-data {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.blog-detail-section .blog-post-card .post-meta-data span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-detail-section .blog-post-card .post-meta-data span .meta-icon {
  width: 14px;
  color: #E2692C;
  opacity: 0.8;
}
.blog-detail-section .blog-post-card .post-meta-data span i {
  color: #E2692C;
}
.blog-detail-section .blog-post-card .post-body .post-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}
.blog-detail-section .blog-post-card .post-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.blog-detail-section .blog-sidebar {
  position: sticky;
  top: 100px;
  height: 100%;
}
.blog-detail-section .blog-sidebar .sidebar-widget {
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
}
.blog-detail-section .blog-sidebar .sidebar-widget .widget-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.blog-detail-section .blog-sidebar .sidebar-widget .widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #053d0e;
  border-radius: 2px;
}
.blog-detail-section .blog-sidebar {
  /* Search Box */
}
.blog-detail-section .blog-sidebar .search-widget .search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9f9f9;
  border-radius: 50px;
  padding: 5px 5px 5px 20px;
  border: 1px solid #eee;
}
.blog-detail-section .blog-sidebar .search-widget .search-form .search-input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 14px;
}
.blog-detail-section .blog-sidebar .search-widget .search-form .search-btn {
  border-radius: 50px;
  padding: 10px 25px;
  background: #053d0e;
  font-size: 13px;
}
.blog-detail-section .blog-sidebar .latest-posts-widget .latest-post-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  margin-bottom: 20px;
}
.blog-detail-section .blog-sidebar .latest-posts-widget .latest-post-item:last-child {
  margin-bottom: 0;
}
.blog-detail-section .blog-sidebar .latest-posts-widget .latest-post-item .post-thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.blog-detail-section .blog-sidebar .latest-posts-widget .latest-post-item .post-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-detail-section .blog-sidebar .latest-posts-widget .latest-post-item .post-info .post-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.4;
  transition: color 0.3s;
}
.blog-detail-section .blog-sidebar .latest-posts-widget .latest-post-item .post-info .post-date {
  font-size: 11px;
  color: #999;
}
.blog-detail-section .blog-sidebar .latest-posts-widget .latest-post-item:hover .post-title {
  color: #053d0e;
}
.blog-detail-section .blog-sidebar .categories-widget .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-detail-section .blog-sidebar .categories-widget .category-list li:not(:last-child) {
  border-bottom: 1px solid #f1f1f1;
}
.blog-detail-section .blog-sidebar .categories-widget .category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  background: #fafafa;
  border-radius: 4px;
  margin-bottom: 5px;
}
.blog-detail-section .blog-sidebar .categories-widget .category-list li a span {
  color: #053d0e;
}
.blog-detail-section .blog-sidebar .categories-widget .category-list li a:hover {
  background: #f1f1f1;
  color: #053d0e;
}

.excursion-wrapper .excursion-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.excursion-wrapper .excursion-card img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}
.excursion-wrapper .excursion-card span {
  position: absolute;
  bottom: 20px;
  left: 0;
  align-items: center;
  width: 100%;
  margin: auto;
  color: #fff;
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 300;
  z-index: 2;
  font-family: "Lavishly Yours", cursive;
  text-align: center;
}
.excursion-wrapper .excursion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.excursion-wrapper {
  /* --- Excursion Slider --- */
}
.excursion-wrapper .excursion-slider {
  position: relative;
}
.excursion-wrapper .excursion-slider .excursion-pagination {
  bottom: 0 !important;
}
.excursion-wrapper .excursion-slider .excursion-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: #ccc;
  opacity: 1;
  transform: rotate(45deg);
  margin: 0 4px !important;
  transition: all 0.3s ease;
}
.excursion-wrapper .excursion-slider .excursion-pagination .swiper-pagination-bullet-active {
  background-color: #053d0e;
  transform: rotate(45deg) scale(1.1);
}
.excursion-wrapper .quote {
  letter-spacing: 2px;
  font-style: italic;
}

.home-mini-gallery .mini-gallery-item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
  width: 100%;
  cursor: pointer;
}
.home-mini-gallery .mini-gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}
.home-mini-gallery .mini-gallery-item.large {
  height: 416px;
}
@media (max-width: 991px) {
  .home-mini-gallery .mini-gallery-item.large {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .home-mini-gallery .mini-gallery-item.large {
    height: 250px;
  }
}
.home-mini-gallery .mini-gallery-item.small {
  height: 200px;
}
@media (max-width: 991px) {
  .home-mini-gallery .mini-gallery-item.small {
    height: 167px;
  }
}
@media (max-width: 767px) {
  .home-mini-gallery .mini-gallery-item.small {
    height: 125px;
  }
}
.home-mini-gallery .mini-gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 61, 14, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}
.home-mini-gallery .mini-gallery-item .overlay .icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.home-mini-gallery .mini-gallery-item .overlay .icon img {
  width: 24px;
  height: 24px;
  filter: invert(1) brightness(100%);
}
.home-mini-gallery .mini-gallery-item:hover img {
  transform: scale(1.1);
}
.home-mini-gallery .mini-gallery-item:hover .overlay {
  opacity: 1;
}
.home-mini-gallery .mini-gallery-item:hover .icon {
  transform: scale(1);
}

/* Lightbox CSS for index.php */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(12px);
}
.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-modal .lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lightbox-modal .lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  -o-object-fit: contain;
     object-fit: contain;
}
.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}
.lightbox-modal .lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100000;
}
.lightbox-modal .lightbox-close:hover {
  background: #053d0e;
  border-color: #053d0e;
  transform: rotate(90deg);
}
.lightbox-modal .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100000;
}
.lightbox-modal .lightbox-nav:hover {
  background: #053d0e;
  border-color: #053d0e;
}
.lightbox-modal .lightbox-nav.lightbox-prev {
  left: 40px;
}
.lightbox-modal .lightbox-nav.lightbox-next {
  right: 40px;
}
.lightbox-modal .lightbox-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: #053d0e;
  border-radius: 50%;
  animation: spin 1s infinite linear;
  z-index: -1;
}

@keyframes spin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 767px) {
  .lightbox-modal .lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .lightbox-modal .lightbox-prev {
    left: 10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .lightbox-modal .lightbox-next {
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.includes-excludes-wrap .inc-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  height: 100%;
  transition: all 0.3s ease;
  border-top: 5px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.includes-excludes-wrap .inc-card.includes-box {
  border-top-color: #053d0e;
}
.includes-excludes-wrap .inc-card.excludes-box {
  border-top-color: #e74c3c;
}
.includes-excludes-wrap .inc-card.excludes-box .card-head .title {
  color: #e74c3c;
}
.includes-excludes-wrap .inc-card .card-head {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.includes-excludes-wrap .inc-card .card-head .title {
  font-size: 24px;
  font-weight: 600;
  color: #053d0e;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.includes-excludes-wrap .inc-card .card-head .title .icon-check {
  color: #844809;
}
.includes-excludes-wrap .inc-card .card-head .title img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(39%) saturate(748%) hue-rotate(47deg) brightness(93%) contrast(96%);
}
.includes-excludes-wrap .inc-card .card-head .title img.icon-cross {
  filter: brightness(0) saturate(100%) invert(22%) sepia(87%) saturate(2476%) hue-rotate(346deg) brightness(94%) contrast(91%);
}
.includes-excludes-wrap .inc-card .not-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.includes-excludes-wrap .inc-card .not-list li {
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 8px;
  padding-left: 20px;
}
.includes-excludes-wrap .inc-card .not-list li::before {
  content: "+";
  position: absolute;
  left: -5px;
  top: -5px;
  font-size: 24px;
  color: #e74c3c;
  transform: rotate(45deg);
  font-weight: 600;
}
.includes-excludes-wrap .inc-card .not-list li:last-child {
  margin-bottom: 0;
}
.includes-excludes-wrap .inc-card.includes-box .inc-list li:before {
  color: #053d0e;
}
.includes-excludes-wrap .inc-card.excludes-box .inc-list li:before {
  color: #e74c3c;
}
@media (max-width: 767px) {
  .includes-excludes-wrap .inc-card {
    padding: 25px;
  }
  .includes-excludes-wrap .inc-card .card-head .title {
    font-size: 20px;
  }
}

/* --- Why Choose Us Section --- */
.why-choose-us-wrap {
  overflow: hidden;
  position: relative;
}
.why-choose-us-wrap .content-side {
  padding: 50px 50px 0px 50px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1199px) {
  .why-choose-us-wrap .content-side {
    padding: 60px 40px;
  }
}
@media (max-width: 991px) {
  .why-choose-us-wrap .content-side {
    padding: 50px 20px;
  }
}
.why-choose-us-wrap .side-img {
  height: 100%;
}
.why-choose-us-wrap .side-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 700px;
}
@media (max-width: 991px) {
  .why-choose-us-wrap .side-img img {
    min-height: 400px;
  }
}
.why-choose-us-wrap .feature-staggered {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.why-choose-us-wrap .feature-staggered .choose-item {
  margin-bottom: 25px;
}
.why-choose-us-wrap .feature-staggered .choose-item .text-wrap {
  background: #fff;
  border: 1px solid rgba(5, 61, 14, 0.1);
  z-index: 1;
  padding: 20px 25px;
  border-radius: 12px;
  position: relative;
  max-width: 500px;
}
@media (max-width: 575px) {
  .why-choose-us-wrap .feature-staggered .choose-item .text-wrap {
    max-width: 100%;
  }
}
.why-choose-us-wrap .feature-staggered .choose-item .text-wrap h4 {
  font-size: 20px;
  font-weight: 500;
  color: #844809;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .why-choose-us-wrap .feature-staggered .choose-item:nth-child(2) {
    margin-left: 60px;
  }
  .why-choose-us-wrap .feature-staggered .choose-item:nth-child(3) {
    margin-left: 100px;
  }
  .why-choose-us-wrap .feature-staggered .choose-item:nth-child(4) {
    margin-left: 140px;
  }
}
.why-choose-us-wrap .feature-staggered::after {
  content: "";
  position: absolute;
  background: url("../img/ayurveda/why-choose-bg.png") no-repeat;
  background-position: bottom right;
  background-size: contain;
  width: 100%;
  height: 100%;
  top: 20px;
  left: 0;
  z-index: -2;
}

.herbal-section .img-wrap {
  border: 1px solid #053d0e;
  padding: 10px;
  background: rgba(66, 107, 24, 0.3215686275);
}

/* Form Validation */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #d9534f !important;
  box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.25) !important;
}

/* Therapy Pillars */
.therapy-pillar-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.compact-pillar-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}
.compact-pillar-item:hover {
  border-color: #053d0e;
  background: #fcfcfc;
}
.compact-pillar-item .pillar-icon-small {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background: rgba(5, 61, 14, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compact-pillar-item .pillar-icon-small img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.compact-pillar-item .pillar-text-wrap h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 0 0 2px 0;
}
.compact-pillar-item .pillar-text-wrap p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Premium Teacher Card */
.teacher-card-premium {
  background: #fff;
  border: 1px solid rgba(5, 61, 14, 0.08);
  border-radius: 24px;
  padding: 0;
  margin-bottom: 50px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
.teacher-card-premium:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../img/teachers/teacher-bg.webp) no-repeat;
  background-size: contain;
  background-position: bottom right;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
}
.teacher-card-premium .teacher-card-header {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .teacher-card-premium .teacher-card-header {
    flex-direction: column;
  }
}
.teacher-card-premium .teacher-img-box {
  flex: 0 0 220px;
  height: 220px;
  border-radius: 0;
  overflow: hidden;
  background: #f7f7f7;
  padding: 0;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.teacher-card-premium .teacher-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border-radius: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .teacher-card-premium .teacher-img-box {
    flex: 0 0 250px;
    width: 100%;
    height: 250px;
  }
}
.teacher-card-premium .teacher-info-box {
  flex: 1;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .teacher-card-premium .teacher-info-box {
    padding: 25px 30px;
    text-align: center;
  }
}
.teacher-card-premium .teacher-info-box .teacher-name {
  font-size: clamp(24px, 3vw, 30px);
  color: #053d0e;
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: "Marcellus", serif;
}
.teacher-card-premium .teacher-info-box .info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.teacher-card-premium .teacher-info-box .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .teacher-card-premium .teacher-info-box .info-item {
    justify-content: center;
  }
}
.teacher-card-premium .teacher-info-box .tag-value {
  font-size: 14px;
  color: #844809;
  font-weight: 600;
  background: rgba(132, 72, 9, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(132, 72, 9, 0.15);
}
.teacher-card-premium .teacher-card-body {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding: 35px 40px 40px 40px;
  position: relative;
}
@media (max-width: 767px) {
  .teacher-card-premium .teacher-card-body {
    padding: 25px 30px 35px 30px;
  }
}
.teacher-card-premium .teacher-card-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  text-align: left;
  margin-bottom: 0;
  opacity: 0.9;
}
.teacher-card-premium .teacher-card-footer {
  padding: 15px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.teacher-card-premium .teacher-card-footer .leads-text {
  color: #844809;
  font-weight: 700;
  font-size: 14px;
}
.teacher-card-premium .teacher-card-footer .leads-text span {
  font-weight: 400;
  color: #666;
  margin-left: 4px;
}

.contact-info-section {
  position: relative;
  z-index: 1;
}
.contact-info-section .minimal-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 450px;
}
.contact-info-section .minimal-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.contact-info-section .minimal-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(67, 113, 76, 0.05);
  border-color: rgba(67, 113, 76, 0.1);
}
.contact-info-section .minimal-info-card:hover .icon-box {
  background: #053d0e;
}
.contact-info-section .minimal-info-card:hover .icon-box img {
  filter: brightness(0) invert(1);
}
.contact-info-section .minimal-info-card .icon-box {
  width: 54px;
  height: 54px;
  background: #f4f8f5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.contact-info-section .minimal-info-card .icon-box img {
  width: 22px;
  height: auto;
  transition: all 0.4s ease;
}
.contact-info-section .minimal-info-card .details h5 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-info-section .minimal-info-card .details p,
.contact-info-section .minimal-info-card .details a {
  margin: 0;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}
.contact-info-section .minimal-info-card .details p:hover,
.contact-info-section .minimal-info-card .details a:hover {
  color: #053d0e;
}
.contact-info-section .contact-map-wrap {
  height: 100%;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}
.contact-info-section .contact-map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .contact-info-section .contact-map-wrap {
    height: 400px;
    min-height: auto;
    margin-top: 30px;
  }
}

.text-message-success,
.success-message {
  display: none !important;
}/*# sourceMappingURL=style.css.map */