@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gotu&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --primary-color: #026866;
  --secondary-color: #f5f4edb8;
  --primary: #026866;
  --primary-dark: #014745;
  --primary-light: #08b8af;
  --white-soft: rgba(255, 255, 255, 0.86);
  --border-soft: rgba(255, 255, 255, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.gotu-title {
  font-family: "Gotu", sans-serif !important;
}

.white-color {
  color: #fff;
}

a {
  text-decoration: none;
}

p {
  line-height: 1.7;
  font-weight: 500;
}

.program-title-bar h3 {
  color: white !important;
  font-size: 20px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.sanctuary-section .sanctuary-title {
  font-family: "Gotu", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: rgb(53, 53, 53);
  line-height: 1.2;
}
.sanctuary-section .sanctuary-title span {
  font-style: italic;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
}
.sanctuary-section .sanctuary-text {
  margin-top: 20px;
  font-size: 17px;
  color: #6c756f;
  max-width: 420px;
}
.sanctuary-section .discover-btn {
  margin-top: 30px;
  border: 1px solid #6c756f;
  border-radius: 40px;
  padding: 12px 28px;
  font-size: 16px;
  color: #2d3b32;
  transition: all 0.3s;
}
.sanctuary-section .discover-btn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.sanctuary-section .feature-box {
  text-align: left;
}
.sanctuary-section .feature-box h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 22px;
  margin-top: 15px;
  color: #2d3b32;
}
.sanctuary-section .feature-box p {
  font-size: 15px;
  color: #6c756f;
  margin-top: 8px;
  max-width: 260px;
}
.sanctuary-section .feature-box .icon-box {
  width: 70px;
  height: 70px;
  background: #026866;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sanctuary-section .feature-box .icon-box i {
  color: #fff;
  font-size: 22px;
}

/* Upper Header Styles */
/* Main Header Styles */
.header {
  transition: min-height 0.4s ease-in-out, transform 0.4s ease-in-out;
  min-height: 100px;
  transform: translateY(0);
}

/* Scroll ke baad */
.header.is-scrolled {
  min-height: 65px;
  transform: translateY(1px);
}

.logo_dark {
  transition: transform 0.2s ease-in-out;
  transform-origin: left center;
}

.header.is-scrolled .logo_dark {
  transform: scale(0.95) translateY(2px);
}

.nav-link,
.icon {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo_dark {
  height: 4rem;
}

.nav-toggle {
  display: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 0.6rem;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hamburger {
  width: 24px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
  width: 70%;
}

.hamburger span:last-child {
  top: 18px;
}

.nav-active .hamburger span:first-child {
  transform: rotate(45deg);
  top: 9px;
}

.nav-active .hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-active .hamburger span:last-child {
  transform: rotate(-45deg);
  top: 9px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 0px;
  padding-left: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.1rem;
}

.nav-link:hover {
  background: var(--primary-color) !important;
  transform: translateY(-1px);
  color: rgb(255, 255, 255) !important;
}
.nav-link:hover .icon {
  color: rgb(255, 255, 255) !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #026866;
}

.has-dropdown {
  position: relative;
}

.chevron-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.121);
  border-radius: 5px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.161);
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  transform: rotate(45deg);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}

.dropdown li {
  list-style: none;
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
}

.dropdown a {
  color: #000;
  text-decoration: none;
  padding: 0.6rem 1rem;
  display: block;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2px;
}

.dropdown a:hover {
  background: #026866 !important;
  color: white !important;
  border-radius: 5px !important;
  transform: translateX(3px);
}

.social_icons {
  display: none;
}

.btn-apply a {
  background-color: var(--primary-color);
  color: white;
  border-radius: 50px;
  padding: 10px 28px;
  border: 2px solid white;
}

.btn-apply a:hover {
  border: 2px solid var(--primary-color);
  background-color: white;
  color: var(--primary-color);
}

.btn-primary {
  background-color: #ffffff;
  color: #026866;
  border-radius: 50px;
  padding: 10px 30px;
  border: 1px solid #026866;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #026866;
  color: white;
  border: 1px solid var(--primary-color);
}

.theme-color {
  color: #026866;
}

.banner-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.banner-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  /* color: #333; */
}

.banner-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  /* color: #666; */
  margin-bottom: 40px;
  max-width: 600px;
}

.divider {
  height: 2px;
  background-color: #ddd;
  margin: 30px 0;
  width: 100%;
}

.btn-retreat {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.btn-retreat:hover {
  background-color: #5a6268;
  color: white;
}

.btn-workshop {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.btn-workshop:hover {
  background-color: #5a6268;
  color: white;
}

.banner-icon {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  opacity: 0.2;
  z-index: 1;
}

hr {
  color: #016967 !important;
}

.section-padding {
  padding: 70px 0px;
}

.big-heading {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Gotu", sans-serif !important;
}

.big-center-img {
  width: 1000px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-style: groove;
  border-width: 1px 1px 1px 1px;
  border-color: #026866;
}

.title-section {
  padding: 0px 0px 10px 0px;
}
.title-section h2 {
  font-size: 2.2rem;
  font-weight: bold;
}
.title-section span {
  font-size: 1.1rem;
  padding-bottom: 12px;
  display: block;
}

.primary-color {
  color: #026866;
}

.secondary-color {
  color: var(--primary-color);
}

.primary-btn {
  background-color: var(--secondary-color);
  color: #026866;
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  padding: 10px 22px;
  border: 2px solid #026866;
  max-width: 100%;
  transition: all 0.5s !important;
}

.primary-btn:hover {
  background-color: var(--primary-color);
  color: white;
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  max-width: 100%;
  transition: all 0.5s !important;
}

.sec-btn {
  background-color: var(--primary-color);
  color: white;
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  padding: 10px 22px;
  border: 2px solid var(--primary-color);
  max-width: 100%;
  transition: all 0.5s !important;
}

.sec-btn:hover {
  background-color: var(--secondary-color);
  color: #026866;
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  max-width: 100%;
  transition: all 0.5s !important;
}

.elementor-widget-one img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px 150px 20px 20px;
  box-shadow: none;
  height: auto;
}

.bg-one {
  background-image: url("../../assets/images/home-1-background-2.webp");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.white-bg {
  background-color: white;
}

.white-bg-two {
  background-color: #F5F3EF;
}

.program-card {
  border-radius: 20px;
}
.program-card .prog-card-content {
  padding: 10px 10px;
}
.program-card img {
  border-radius: 6px 6px 0px 0px;
}

.head3 {
  font-size: 1.4rem;
  font-weight: bold;
}

a.primary-color:hover {
  color: var(--primary-color);
}

#free-course {
  /* Card container */
}
#free-course .card {
  position: relative;
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: white;
  transition: transform 0.3s ease;
}
#free-course .card:hover {
  transform: translateY(-5px);
}
#free-course {
  /* Card image container */
}
#free-course .card-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
#free-course .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#free-course {
  /* Icon in top-left corner */
}
#free-course .card-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
#free-course .card-icon i {
  font-size: 20px;
  color: #026866;
}
#free-course {
  /* Title positioned over the image */
}
#free-course .card-title {
  position: absolute;
  bottom: 15px;
  left: 20px;
  z-index: 2;
}
#free-course .card-title h3 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  color: white;
  margin-bottom: 0rem;
}
#free-course {
  /* Card content */
}
#free-course .card-content {
  padding: 20px;
}
#free-course .card-content p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}
#free-course {
  /* Optional overlay for better text visibility */
}
#free-course .card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(42, 9, 48, 0.565), transparent);
  z-index: 1;
}
#free-course .item {
  display: flex;
  justify-content: center;
}

.free-offer .owl-carousel .owl-nav.disabled {
  display: block !important;
}

.free-offer .owl-carousel .owl-nav button.owl-next,
.free-offer .owl-carousel .owl-nav button.owl-prev,
.free-offer .owl-carousel button.owl-dot {
  background: #F5F3EF;
  border: none;
  padding: 0 10px !important;
  font-size: 2rem !important;
  color: #026866;
}

.program-card {
  background: #fff;
  border-radius: 6px;
  padding-bottom: 8px;
  overflow: hidden;
  border: 1px solid rgba(1, 105, 103, 0.2588235294);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.program-card-img img {
  width: 100%;
  display: block;
  border-radius: 6px 6px 0 0;
}

.title-section img {
  width: 250px;
  text-align: center;
  height: 22px;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 25px;
}

/* TITLE BAR WITH YOUR COLORS */
.program-title-bar {
  background: var(--primary-color);
  padding: 16px 22px;
  font-weight: 600;
  color: var(--secondary-color);
  display: block;
  width: 100%;
  margin: 0;
}

.prog-card-content {
  padding: 25px;
}

/* INFO ROWS */
.yoga-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

/* ICON */
.yoga-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(2, 104, 102, 0.08);
  border-radius: 12px;
  position: relative;
  font-size: 20px;
  color: var(--primary-color);
}

.yoga-info-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.info-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 2px;
}

.info-value {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0;
}

/* PRICE + NOTE */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding: 0px 8px;
}

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

.price-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  font-family: "Gotu", sans-serif;
}

.price-note {
  font-size: 12px;
  color: #777;
  letter-spacing: 0.3px;
  margin-top: -2px;
}

.yoga-feature-card {
  background: rgba(2, 104, 102, 0.068);
  border-radius: 6px;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.yoga-feature-card:hover {
  background: rgba(2, 104, 102, 0.126);
  transform: translateY(-3px);
}

.yoga-feature-left {
  max-width: 60%;
}

.yoga-feature-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 15px;
}

.yoga-feature-title span {
  color: #000;
}

.yoga-feature-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Button */
.yoga-feature-btn {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.yoga-feature-btn:hover {
  letter-spacing: 1px;
}

/* Right Image */
.yoga-feature-right img {
  width: 120px;
  height: auto;
}

.yoga-feature-right img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(91%) saturate(640%) hue-rotate(136deg) brightness(90%) contrast(90%);
}

.bg-section {
  background-color: var(--secondary-color);
}

/* Card container */
.yoga-program-card {
  padding: 22px 28px;
  border-radius: 6px;
  background: rgba(2, 104, 102, 0.068);
}

.yoga-program-card .yoga-info-icon {
  font-size: 25px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.yoga-program-card .program-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 15px;
  margin-bottom: 14px;
  letter-spacing: 0;
}

.yoga-highlight-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  font-weight: 500;
}

.yoga-highlight-list li {
  margin-bottom: 6px;
  font-size: 16px;
  color: #444;
}

.kerala-list-points {
  list-style: none;
  padding: 0;
  font-weight: 500;
  margin: 18px 0;
}

.kerala-list-points li {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.kerala-list-points li i {
  font-size: 19px;
  color: var(--primary-color);
  margin-top: 3px;
}

.para {
  line-height: 1.75;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 22px;
}

.theme-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.theme-list li {
  padding-left: 40px;
  margin-bottom: 10px;
  width: 100%;
  font-weight: 500;
}

.list-check-icon {
  color: var(--primary-color);
  font-size: 18px;
  margin-right: 8px;
}

/* MAIN CARD WRAPPER */
.facility-card-custom {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: visible;
  /* IMPORTANT for z-index effect */
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  align-items: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  padding: 0;
}

/* HOVER LIFT EFFECT */
.facility-card-custom:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

/* LEFT IMAGE (LIFTED LAYER) */
.facility-card-img {
  width: 40%;
  height: 275px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0 0 20px;
  position: relative;
  z-index: 2;
  /* IMAGE TOP LAYER */
}

/* RIGHT CONTENT (BEHIND IMAGE LAYER) */
.facility-card-content {
  width: 60%;
  padding: 30px;
  position: relative;
  z-index: 1;
  /* CONTENT LOWER LAYER */
}

/* TITLE */
.facility-card-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-family: var(--font-body);
}

/* UNDERLINE (optional – professional look) */
.facility-card-heading::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background: #d62828;
  margin-top: 6px;
  border-radius: 4px;
}

/* DESCRIPTION */
.facility-card-text {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin-top: 12px;
}

#shortVideosCarousel .owl-nav {
  display: none !important;
}

.short-video-card {
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid var(--primary-color);
  overflow: hidden;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  width: 100%;
  max-width: 320px;
  height: auto;
  position: relative;
}
.short-video-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 6px solid #ff0000;
  border-top: 6px solid transparent;
  border-bottom: 12px solid transparent;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .short-video-card::before {
    opacity: 1;
  }
}
.short-video-card iframe {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
  border-radius: 6px;
  background: #000;
}
@media (max-width: 1200px) {
  .short-video-card iframe {
    height: 520px;
  }
}
@media (max-width: 992px) {
  .short-video-card iframe {
    height: 480px;
  }
}
@media (max-width: 768px) {
  .short-video-card iframe {
    height: 100vh;
    min-height: 420px;
  }
}
@media (max-width: 576px) {
  .short-video-card iframe {
    height: 100vh;
    min-height: 380px;
  }
}

#shortVideosCarousel .item {
  display: flex;
  justify-content: center;
  padding: 0 1px;
}

.reiki-rishikesh-section {
  position: relative;
  background-image: url("../images/rishikesh.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 780px;
  z-index: 1;
}

.reiki-rishikesh-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

/* make sure content stays above overlay */
.reiki-rishikesh-section > .container {
  position: relative;
  z-index: 2;
}

.reiki-program-card {
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
.reiki-program-card.white-bg-two {
  background: rgba(245, 243, 239, 0.95);
}
.reiki-program-card .reiki-program-img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.reiki-program-card .reiki-program-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}
.reiki-program-card .reiki-program-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.reiki-program-card .reiki-program-content {
  padding: 20px;
  display: flex;
  font-weight: 500;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  overflow: hidden;
}
.reiki-program-card .program-btn-left-wrap {
  text-align: left;
  margin-top: 12px;
  padding-left: 5px;
}
.reiki-program-card .reiki-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 15px;
}
.reiki-program-card .reiki-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  color: #213B33;
  /* Your theme’s natural green tone */
  padding: 6px 0;
}

.filter-white {
  filter: brightness(10);
  height: 150px;
}

.kerala-section {
  background-color: white;
  display: flex;
}
.kerala-section .kerala-content {
  padding: 2rem;
  width: 50%;
}

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

.retreat-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(9, 183, 173, 0.12);
  bottom: -90px;
  left: -80px;
}

.retreat-card {
  position: relative;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
  background: #ddd;
  isolation: isolate;
}

.retreat-card.small-card {
  height: 250px;
}

.retreat-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.55s ease;
}

.retreat-card:hover img {
  transform: scale(1.08);
}

.retreat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(1, 50, 48, 0.27) 42%, rgb(1, 45, 43) 100%);
  z-index: 1;
}

.retreat-badge {
  display: none;
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.retreat-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px;
  color: #fff;
}

.retreat-content h3 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  font-family: "Gotu", sans-serif;
}

.small-card .retreat-content h3 {
  font-size: 20px;
}

.retreat-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.small-card .retreat-content p {
  display: none;
}

.retreat-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.retreat-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.retreat-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 50px;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: 0.25s ease;
}

.retreat-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.retreat-side-box {
  background: var(--primary);
  color: #fff;
  height: 100%;
  min-height: 250px;
  border-radius: 20px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.retreat-side-box::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  right: -55px;
  bottom: -55px;
}

.retreat-side-box i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 0px;
}

.retreat-side-box h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 5px;
}

.retreat-side-box p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 24px;
}

.retreat-side-box a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.life-section {
  overflow: hidden;
  background: #fff;
}

.life-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #fff 0%, #fff 38%, rgba(255, 255, 255, 0) 60%), url("../../images/pachamama-beach-resort-kerala.png") center right/cover no-repeat;
}

.life-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 28%, rgba(255, 255, 255, 0.45) 48%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.life-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 90px 0;
}

.life-tag {
  display: inline-block;
  color: var(--primary-color);
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.life-content h2 {
  font-family: "Gotu", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: rgb(53, 53, 53);
  line-height: 1.2;
}

.life-content p {
  margin-bottom: 38px;
  margin-top: 10px;
}

.mini-features {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 170px;
}

.mini-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(2, 104, 102, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}

.mini-feature h6 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 700;
}

.mini-feature span {
  font-size: 12px;
  color: #4f6665;
  line-height: 1.4;
  display: block;
}

.slider-wrap {
  background: #fff;
  padding: 34px 0 38px;
  overflow: hidden;
  position: relative;
}

.slider-wrap::before,
.slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}

.slider-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.slider-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.slider-track {
  display: flex;
  gap: 18px;
  width: -moz-max-content;
  width: max-content;
  animation: scrollImages 45s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

.slider-track img {
  width: 270px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(1, 71, 69, 0.12);
  flex-shrink: 0;
}

@keyframes scrollImages {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.bottom-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  padding: 46px 0;
  color: #fff;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}

.strip-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strip-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  -o-object-fit: contain;
     object-fit: contain;
}

.strip-item h6 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
}

.strip-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.85;
}

.life-quote {
  text-align: center;
  font-size: 28px;
  font-family: Georgia, serif;
  font-style: italic;
  margin-top: 34px;
  opacity: 0.9;
}

.detox-section {
  padding: 80px 0;
  background: #fff;
}
.detox-section .detox-wrapper {
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 25px;
}
.detox-section .detox-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: #fff;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.detox-section h2 {
  font-family: "Gotu", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: rgb(53, 53, 53);
  line-height: 1.2;
  margin-bottom: 22px;
}
.detox-section h2 span {
  color: #026866;
}
.detox-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  max-width: 620px;
  margin-bottom: 30px;
}
.detox-section .detox-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.detox-section .detox-icons i {
  color: #026866;
}
.detox-section .detox-icons .icon-box {
  text-align: center;
}
.detox-section .detox-icons .icon-box .icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 12px;
}
.detox-section .detox-icons .icon-box h6 {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin: 0;
}
.detox-section .detox-price-box {
  background: #fff;
  border-radius: 18px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.detox-section .detox-price-box .price small {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  color: #555;
}
.detox-section .detox-price-box .price strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  font-family: "Gotu", sans-serif;
}
.detox-section .detox-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.detox-section .detox-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  display: block;
}
.detox-section .detox-info-row {
  margin-top: 35px;
  background: #fff;
  border-radius: 18px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.detox-section .detox-info-row .info-item {
  display: flex;
  align-items: center;
  gap: 18px;
}
.detox-section .detox-info-row .info-item i {
  font-size: 34px;
  color: var(--primary-color);
}
.detox-section .detox-info-row .info-item small {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  color: #555;
}
.detox-section .detox-info-row .info-item h6 {
  margin: 3px 0 0;
  font-size: 17px;
  font-weight: 600;
  color: #111;
}
@media (max-width: 991px) {
  .detox-section {
    padding: 60px 0;
  }
  .detox-section .detox-wrapper {
    padding: 30px;
  }
  .detox-section h2 {
    font-size: 42px;
  }
  .detox-section .detox-image img {
    height: 420px;
  }
  .detox-section .detox-info-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .detox-section {
    padding: 45px 0;
  }
  .detox-section .detox-wrapper {
    padding: 20px 15px;
    border-radius: 5px;
  }
  .detox-section h2 {
    font-size: 1.7rem;
  }
  .detox-section p {
    font-size: 16px;
  }
  .detox-section .detox-icons {
    grid-template-columns: repeat(2, 1fr);
  }
  .detox-section .detox-price-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .detox-section .detox-price-box .price strong {
    font-size: 25px;
  }
  .detox-section .detox-icons .icon-box .icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    margin: 0 auto 8px;
  }
  .detox-section .detox-price-box {
    border-radius: 8px;
    padding: 18px 18px;
    gap: 14px;
  }
  .detox-section .detox-buttons {
    width: 100%;
  }
  .detox-section .detox-buttons a {
    width: 100%;
    text-align: center;
  }
  .detox-section .detox-info-row .info-item i {
    font-size: 24px;
  }
  .detox-section .detox-image img {
    height: auto;
    border-radius: 6px;
  }
  .detox-section .detox-info-row {
    margin-top: 35px;
    background: #fff;
    border-radius: 8px;
    padding: 15px 15px;
    display: grid;
    gap: 15px;
  }
  .detox-section .detox-info-row .info-item small {
    font-size: 12px;
  }
  .detox-section .detox-info-row .info-item h6 {
    margin: 3px 0 0;
    font-size: 15px;
    font-weight: 600;
    color: #111;
  }
}

@media (max-width: 991px) {
  .life-hero {
    min-height: auto;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.25) 100%), url("images/100-hour-yoga-teacher-training-kerala.jpg") center/cover no-repeat;
  }
  .life-content {
    padding: 70px 0 330px;
  }
  .mini-features {
    gap: 20px;
  }
  .slider-track img {
    width: 220px;
    height: 260px;
    border-radius: 20px;
  }
  .bottom-strip {
    padding: 36px 0;
  }
}
@media (max-width: 575px) {
  .life-content {
    padding: 0px 0px 10px 0px;
  }
  .life-content p {
    font-size: 15px;
  }
  .mini-features {
    display: grid;
    grid-template-columns: 1fr;
  }
  .mini-feature {
    max-width: 100%;
  }
  .slider-track img {
    width: 175px;
    height: 220px;
    border-radius: 18px;
  }
  .slider-wrap {
    padding: 24px 0;
  }
  .strip-item {
    align-items: flex-start;
  }
  .strip-icon {
    width: 52px;
    height: 52px;
  }
  .life-quote {
    font-size: 22px;
  }
  .slider-wrap::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2901960784), transparent);
  }
  .slider-wrap::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.2901960784), transparent);
  }
  .slider-track img {
    width: auto;
    height: 200px;
    border-radius: 12px;
  }
}
@media (max-width: 1199px) {
  .retreat-card {
    height: 430px;
  }
}
@media (max-width: 991px) {
  .retreat-card,
  .retreat-card.small-card {
    height: 360px;
  }
  .small-card .retreat-content p {
    display: block;
  }
}
@media (max-width: 575px) {
  .retreat-content p {
    display: none;
  }
  .small-card .retreat-content p {
    display: none;
  }
  .kerala-section {
    background-color: white;
    display: flex;
    flex-wrap: wrap;
  }
  .kerala-section .kerala-content {
    padding: 1rem;
    width: 100%;
  }
  .kerala-img {
    height: 300px;
    width: 100% !important;
  }
  .yoga-program-card .yoga-info-icon {
    font-size: 18px;
  }
  .yoga-program-card .program-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 15px;
    margin-bottom: 14px;
    letter-spacing: 0;
  }
  .life-content h2 {
    font-size: 1.7rem;
  }
  .retreat-card,
  .retreat-card.small-card {
    height: 350px;
    border-radius: 12px;
  }
  .yoga-highlight-list li {
    margin-bottom: 6px;
    font-size: 15px;
    color: #444;
  }
  .yoga-program-card {
    padding: 12px 12px;
    border-radius: 6px;
    background: rgba(2, 104, 102, 0.068);
  }
  .retreat-content {
    padding: 20px;
  }
  .retreat-content h3,
  .small-card .retreat-content h3 {
    font-size: 22px;
  }
}
.kerala-img {
  background-image: url("../../images/yoga-kerala-india.png");
  width: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at top right, rgba(12, 191, 181, 0.35), transparent 35%), linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding-top: 80px;
}
.site-footer .footer-pattern {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.site-footer .footer-pattern.left {
  left: -45px;
  bottom: 80px;
  width: 250px;
}
.site-footer .footer-pattern.right {
  right: -70px;
  bottom: 120px;
  width: 360px;
}
.site-footer .footer-content {
  position: relative;
  z-index: 2;
}
.site-footer .footer-brand {
  max-width: 310px;
}
.site-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.site-footer .footer-logo-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
}
.site-footer .footer-logo-icon i {
  font-size: 30px;
  color: #fff;
}
.site-footer .footer-logo-text h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 7px;
  line-height: 1;
}
.site-footer .footer-logo-text span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--white-soft);
}
.site-footer .footer-desc {
  color: var(--white-soft);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 28px;
}
.site-footer .social-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.site-footer .social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: all 0.25s ease;
}
.site-footer .social-icons a:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-4px);
}
.site-footer .footer-box {
  height: 100%;
  padding-left: 28px;
  border-left: 1px solid var(--border-soft);
}
.site-footer .footer-title {
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 28px;
  position: relative;
  font-family: "Gotu", sans-serif;
}
.site-footer .footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 70px;
  height: 2px;
  background: rgb(225, 221, 221);
  border-radius: 10px;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li {
  margin-bottom: 15px;
}
.site-footer .footer-links a {
  color: var(--white-soft);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
  display: inline-flex;
  gap: 10px;
  transition: all 0.25s ease;
  font-weight: 500;
}
.site-footer .footer-links a i {
  color: #dbe8e7;
  font-size: 12px;
  margin-top: 5px;
}
.site-footer .footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}
.site-footer .contact-item {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.site-footer .contact-icon {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0bc7bc, #06958f);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.site-footer .contact-icon i {
  font-size: 18px;
  color: #fff;
}
.site-footer .contact-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}
.site-footer .contact-text a,
.site-footer .contact-text p {
  margin: 0;
  color: var(--white-soft);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.7;
}
.site-footer .footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 25px 0;
  color: var(--white-soft);
  font-size: 14px;
}
.site-footer .bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}
.site-footer .bottom-links a {
  color: var(--white-soft);
  text-decoration: none;
}
.site-footer .bottom-links a:hover {
  color: #fff;
}
.site-footer .footer-center-icon {
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  background: var(--primary-dark);
  padding: 0 22px;
  color: #18d6cb;
  font-size: 28px;
}
@media (max-width: 991px) {
  .site-footer .footer-box {
    border-left: 0;
    padding-left: 0;
  }
  .site-footer .footer-brand {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .site-footer .footer-logo-text h3 {
    font-size: 25px;
    letter-spacing: 5px;
  }
  .site-footer .footer-bottom {
    margin-top: 45px;
    text-align: center;
  }
  .site-footer .bottom-links {
    justify-content: center;
    margin-top: 14px;
    gap: 14px;
  }
  .site-footer .footer-center-icon {
    display: none;
  }
}

.faq-subtitle {
  display: inline-block;
  color: #159aa3;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #073b3a;
}

.faq-section .accordion-header {
  font-family: "Gotu", sans-serif;
}

.faq-accordion {
  max-width: 950px;
  margin: auto;
}

.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.faq-accordion .accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  background: #ffffff;
  padding: 22px 60px 22px 24px;
  box-shadow: none;
  position: relative;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #026866;
  color: #ffffff;
}

.faq-accordion .accordion-button::after {
  display: none;
}

.faq-accordion .accordion-button::before {
  content: "+";
  position: absolute;
  right: 24px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e8f7f6;
  color: #026866;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  font-weight: 400;
}

.faq-accordion .accordion-button:not(.collapsed)::before {
  content: "−";
  background: #ffffff;
  color: #026866;
}

.faq-accordion .accordion-body {
  padding: 22px 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #4a5a5a;
  background: #ffffff;
}

@media (max-width: 767px) {
  .faq-title {
    font-size: 26px;
  }
  .faq-accordion .accordion-button {
    font-size: 16px;
    padding: 18px 55px 18px 18px;
  }
  .faq-accordion .accordion-body {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  .banner-title {
    font-size: 2.5rem;
  }
  .banner-subtitle {
    font-size: 1.1rem;
  }
  .banner-icon {
    width: 80px;
    right: 30px;
  }
}
@media (max-width: 768px) {
  .banner-section {
    padding: 60px 0;
    text-align: center;
  }
  .banner-title {
    font-size: 2rem;
  }
  .banner-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .banner-icon {
    display: none;
  }
  .btn-container {
    justify-content: center;
  }
  .btn-retreat,
  .btn-workshop {
    margin: 5px;
    width: 100%;
    max-width: 250px;
  }
}
@media (max-width: 576px) {
  .banner-section {
    padding: 40px 0;
  }
  .nav-menu .dropdown a {
    padding: 0.6rem 0.7rem !important;
    font-size: 14.5px !important;
    font-weight: 500;
    color: #026866;
    border-radius: 0px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .dropdown {
    padding-left: 0rem;
    margin-left: 0rem;
  }
  .banner-title {
    font-size: 1.8rem;
  }
  .banner-subtitle {
    font-size: 1rem;
  }
  .sanctuary-section .sanctuary-title {
    font-size: 1.7rem;
    font-weight: bold;
  }
  .sanctuary-section .discover-btn {
    margin-top: 12px;
    border: 1px solid #6c756f;
    border-radius: 40px;
    padding: 12px 28px;
    font-size: 16px;
    color: #2d3b32;
    transition: all 0.3s;
  }
  .sanctuary-section .feature-box .icon-box {
    width: 50px;
    height: 50px;
    background: #026866;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* Responsive Styles */
@media (max-width: 968px) {
  .nav-toggle {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
  }
  .nav-menu {
    position: fixed;
    top: 6rem;
    right: -100%;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    width: 80%;
    height: calc(100vh - 70px);
    padding: 2rem;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }
  .nav-active .nav-menu {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .nav-link.active::after {
    display: none;
  }
  .nav-link.active {
    background: rgba(235, 233, 220, 0.5019607843) !important;
  }
  .dropdown {
    position: static;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    padding: 0;
    padding-left: 1rem;
    margin-left: 1rem;
    display: none;
    box-shadow: none;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    transform: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .dropdown::before {
    display: none;
  }
  .has-dropdown.active .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .dropdown a {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .chevron-icon {
    position: absolute;
    right: 1rem;
  }
  .has-dropdown.active .chevron-icon {
    transform: rotate(180deg);
  }
  .social_icons {
    display: flex;
    width: 100%;
    margin: 0.5rem 0px;
    padding-left: 1rem;
  }
  .social_icons li {
    list-style: none;
    margin-right: 1rem;
  }
  .social_icons li a {
    font-size: 2.3rem;
    color: var(--primary-color);
  }
  .social_icons li a:hover {
    color: cadetblue;
  }
  .nav-link {
    width: 100%;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .btn-apply {
    margin-top: 1rem;
    width: 100%;
  }
}
.pl-four {
  padding-left: 4%;
}

@media (max-width: 576px) {
  .upper-header {
    display: none !important;
  }
  .logo_dark {
    height: 3rem;
  }
  .navbar {
    padding: 0.6rem;
  }
  .nav-menu {
    width: 100%;
    top: 4.21rem;
    padding: 1rem 0.6rem !important;
    background-color: white !important;
    overflow: scroll;
  }
  .nav-link {
    font-size: 1rem;
  }
  .section-padding {
    padding: 60px 0px;
  }
  .title-section h2 {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .elementor-widget-one img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px 80px 10px 10px;
    box-shadow: none;
    height: auto;
  }
  .pl-four {
    padding-left: 0%;
  }
}
b {
  color: #026866;
}

.common-brd-radius {
  border-radius: 10px;
}

/* ===== Perfect Responsive Layout (Screenshot Style) ===== */
@media (max-width: 768px) {
  .yoga-feature-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 20px;
    gap: 15px;
    border-radius: 10px;
  }
  .yoga-feature-left {
    max-width: 75%;
    text-align: left;
  }
  .yoga-feature-title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .yoga-feature-text {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .yoga-feature-btn {
    font-size: 15px;
  }
  /* Right icon smaller + aligned to center vertically */
  .yoga-feature-right img {
    width: 65px;
    height: auto;
    display: block;
    margin-left: auto;
  }
}
/* Extra small screens */
@media (max-width: 480px) {
  .yoga-feature-card {
    padding: 18px 16px;
    gap: 12px;
  }
  .yoga-feature-title {
    font-size: 20px;
  }
  .yoga-feature-text {
    font-size: 15px;
  }
  .yoga-feature-right img {
    width: 60px;
  }
}
/* HERO SECTION */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Background Image */
.hero-banner .hero-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}

/* Overlay (left dark → right clear) */
.hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0) 100%);
}

/* Content Area */
.hero-content {
  position: absolute;
  top: 50%;
  left: 90px;
  transform: translateY(-50%);
  width: 60%;
  max-width: 620px;
  color: #fff;
}

/* Welcome Line */
.hero-welcome {
  font-size: 14px;
  letter-spacing: 2px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.hero-divider {
  width: 35rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 20px 0;
  /* perfect gap above & below */
}

/* Title */
.hero-title {
  font-size: 39px;
  font-weight: 700;
  line-height: 1.4;
  word-spacing: 2px;
  margin-bottom: 25px;
  margin-top: 10px;
  max-width: 600px;
  word-break: normal;
}

/* Description */
.hero-subtext {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Buttons */
.hero-buttons a {
  margin-right: 15px;
}

/* --------------------------------------------
   RESPONSIVE SETTINGS
-------------------------------------------- */
/* Tablet Large */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 46px;
  }
}
/* Tablet */
@media (max-width: 992px) {
  .hero-content {
    width: 70%;
    left: 40px;
  }
  .hero-title {
    font-size: 40px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .hero-banner {
    height: 100vh;
  }
  .hero-content {
    width: 90%;
    left: 25px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtext {
    font-size: 16px;
  }
  .hero-buttons a {
    margin-bottom: 10px;
    display: inline-block;
  }
}
.para-big-heading {
  font-size: 1.25rem;
}

.header.is-scrolled .logo_dark {
  filter: none;
  transform: scale(0.95) translateY(2px);
}

.program-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: #fefefe;
}

/* Small Mobile */
@media (max-width: 576px) {
  .yoga-info-text .info-value {
    font-size: 15px;
  }
  .program-card .prog-card-content {
    padding: 5px 5px;
  }
  .yoga-info-row {
    padding: 6px;
  }
  .program-title-bar {
    padding: 12px 16px 10px 16px;
  }
  .program-title-bar h3 {
    font-size: 18px;
  }
  .hero-banner {
    height: 100vh;
  }
  .header .logo_dark {
    filter: brightness(10.5);
  }
  .hero-content {
    left: 20px;
    width: 95%;
  }
  .hero-title {
    font-size: 26px;
  }
  .big-center-img {
    width: 100%;
    height: 100%;
  }
  .big-heading {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Gotu", sans-serif !important;
    line-height: 1.5;
  }
  .para-big-heading {
    font-size: 1.1rem;
  }
  .dropdown {
    padding-left: 0rem;
    margin-left: 0.1rem;
    width: 99% !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
  .sanctuary-section .feature-box h4 {
    font-size: 18px;
  }
  .para {
    line-height: 1.75;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 22px;
  }
  .title-section img {
    margin-bottom: 15px;
  }
}/*# sourceMappingURL=style.css.map */