

body{
    overflow-x:hidden;
}

/* ===== HERO BANNER ===== */

#heroBanner{
    width:100%;
    position:relative;
    overflow:hidden;
    background:#000;
}

#heroBanner .carousel-inner,
#heroBanner .carousel-item{
    width:100%;
}

/* ===== IMAGE ===== */

#heroBanner .hero-banner{
    width:100%;
    display:block;
    object-fit:cover;
}

/* ===== LARGE SCREEN ===== */

@media only screen and (min-width:1400px){

    #heroBanner .hero-banner{
        height:90vh;
    }

}

/* ===== DESKTOP ===== */

@media only screen and (min-width:1200px) and (max-width:1399px){

    #heroBanner .hero-banner{
        height:95vh;
    }

}

/* ===== LAPTOP ===== */

@media only screen and (min-width:992px) and (max-width:1199px){

    #heroBanner .hero-banner{
        height:70vh;
    }

}

/* ===== TABLET ===== */

@media only screen and (min-width:768px) and (max-width:991px){

    #heroBanner .hero-banner{
        height:420px;
    }

}

/* ===== MOBILE ===== */

@media only screen and (max-width:767px){

    #heroBanner .hero-banner{
        width:100%;
        height:auto;
        object-fit:contain;
    }

}

/* ===== SMALL MOBILE ===== */

@media only screen and (max-width:480px){

    #heroBanner .hero-banner{
        width:100%;
        height:auto;
        object-fit:contain;
    }

}









.rm-section {
  background: #f5f0e8;
  padding: 32px 0;
  font-family: 'Jost', sans-serif;
}

.rm-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  color: #007b69;
  line-height: 1.1;
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: bolder;
}

.rm-subtext {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 32px;
}

/* Membership boxes */
.rm-card {
  border: 1.5px solid #1e2d52;
  border-radius: 4px;
  padding: 4px 20px 7px;
  background: transparent;
  text-decoration: none;
  display: block;
  transition: background .25s, transform .25s;
}
.rm-card:hover {
  background: rgba(30,45,82,.05);
  transform: translateY(-3px);
}
.rm-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 400;
  color: #1e2d52;
  margin-bottom: 12px;
}
.rm-card ul {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 18px;
}
.rm-card ul li {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}
.rm-card-arrow {
  display: block;
  font-size: 18px;
  color: #1e2d52;
  transition: transform .2s;
}
.rm-card:hover .rm-card-arrow { transform: translateX(5px); }

/* Perks */
.rm-perk {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.rm-perk-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid #1e2d52;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.rm-perk-text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* CTA */
.rm-btn {
  display: inline-block;
  background: #007b69;
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none !important;
  transition: background .25s, transform .25s;
  border: none;
}
.rm-btn:hover { background: #007b69; transform: translateY(-2px); }

/* ── RIGHT IMAGE PANEL ── */
.rm-img-col {
  position: sticky;
  top: 30px;
}

.rm-img-outer {
  position: relative;
  width: 100%;
  /* forces a tall aspect ratio */
  padding-bottom: 125%;
  overflow: hidden;
  border-radius: 4px;
}

.rm-img-outer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Fallback overlay text */
.rm-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(30,45,82,.55) 0%, transparent 100%);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.3;
  pointer-events: none;
}

@media(max-width: 992px) {
  .rm-img-col { position: static; }
  .rm-img-outer { padding-bottom: 70%; }
}

@media(max-width: 576px) {
  .rm-section { padding: 52px 0; }
  .rm-img-outer { padding-bottom: 90%; }
}





/* sevices code css */

/* ─── ROOT VARIABLES ─── */
:root {
  --plum:        #7a5470;
  --plum-dark:   #4b2e45;
  --plum-card:   #8b6180;
  --plum-btn:    #5c3852;
  --cream-bg:    #fdf5ec;
  --gold:        #b8964a;
  --gold-light:  #c8a96a;
  --text-dark:   #1a0e15;
  --text-body:   #4a3040;
  --white:       #ffffff;
  --border-r:    20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Jost', sans-serif;
  background: #ffffff;
  color: var(--text-dark);
}

/* ══════════════════════════════════════
   FLOATING SIDE BUTTONS
══════════════════════════════════════ */
.tattva-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tattva-float-btn {
  width: 52px;
  height: 52px;
  background: var(--plum-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.tattva-float-btn:first-child { border-radius: 10px 0 0 0; }
.tattva-float-btn:last-child  { border-radius: 0 0 0 10px; }
.tattva-float-btn:hover { background: var(--plum); }
.tattva-float-btn svg { width: 22px; height: 22px; fill: white; }

/* ══════════════════════════════════════
   SECTION 1 — ELEVATE YOUR SPA EXPERIENCE
══════════════════════════════════════ */
.elevate-section {
  background: #ffffff;
  padding-bottom: 0;
}
.elevate-section .sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: bolder;
  text-align: center;
  color: #007b69;
  padding: 50px 20px 30px;
  letter-spacing: 0.01em;
}
.elevate-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
}
.elevate-item {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.elevate-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* filter: brightness(0.45) saturate(0.6) sepia(0.25); */
}
.elevate-item-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 8px;
  color: white;
}
.elevate-item-inner svg {
  width: 42px;
  height: 42px;
  stroke: white;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.elevate-item-inner span {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.3;
  color: white;
}

/* ══════════════════════════════════════
   SECTION 2 — HOLISTIC WELLNESS SERVICES
══════════════════════════════════════ */
.wellness-section {
  background: #ffffff;
}
.wellness-section .sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  text-align: center;
  color: var(--text-dark);
  padding: 55px 20px 0;
  letter-spacing: 0.01em;
}
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}
.wellness-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  cursor: pointer;
}
.wellness-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.58) saturate(0.75);
  transition: transform 0.55s ease;
}
.wellness-card:hover img { transform: scale(1.06); }
.wellness-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 28px 30px;
}
.wellness-card-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: white;
  margin-bottom: 18px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.wellness-know-btn {
  background: rgba(255,255,255,0.88);
  color: var(--text-dark);
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.wellness-know-btn:hover { background: white; }

/* ══════════════════════════════════════
   SECTION 3 — WELLNESS THERAPIES
══════════════════════════════════════ */
.therapies-section {
  background: var(--cream-bg);
  padding: 65px 40px 70px;
}
.therapies-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}
.therapies-eyebrow::before,
.therapies-eyebrow::after {
  content: '';
  width: 55px;
  height: 1px;
  background: var(--gold);
}
.therapies-eyebrow span {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.therapies-section .sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 400;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}
.therapies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
}
.therapy-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.therapy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.12);
}
.therapy-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
}
.therapy-card-body {
  padding: 22px 24px 28px;
  text-align: center;
}
.therapy-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.therapy-duration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.therapy-duration svg {
  width: 15px;
  height: 15px;
  stroke: var(--text-body);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.therapy-book-btn {
  background: var(--plum-btn);
  color: white;
  border: none;
  padding: 13px 44px;
  border-radius: 30px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s;
}
.therapy-book-btn:hover { background: var(--plum); }

/* ══════════════════════════════════════
   SECTION 4 — GIFT A SPA & MEMBERSHIP
══════════════════════════════════════ */
.giftmem-section {
  background: #ffffff;
  padding: 70px 60px;
}
.giftmem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* ── Card Base ── */
.gm-card {
  background: var(--plum-card);
  border-radius: var(--border-r);
  position: relative;
  overflow: hidden;
  color: white;
  /* dotted pattern overlay */
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(135deg, #8b6180 0%, #7a5070 100%);
  background-size: 20px 20px, 100% 100%;
}

/* Gift card: shorter, image floats right */
.gm-card--gift {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 340px;
}
.gm-card--gift .gm-content {
  padding: 48px 48px 48px 48px;
  position: relative;
  z-index: 2;
  max-width: 55%;
}

/* Gift card image — floats overlapping card right edge */
.gm-gift-img-wrap {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  z-index: 3;
}
.gm-gift-img-wrap img {
  width: 100%;
  border-radius: 14px;
  box-shadow: -6px 6px 28px rgba(0,0,0,0.35);
  display: block;
}

/* Membership card: image floats BEHIND left side, text right */
.gm-card--mem {
  display: flex;
  flex-direction: row;
  min-height: 380px;
  position: relative;
}
.gm-mem-img-wrap {
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  z-index: 3;
}
.gm-mem-img-wrap img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 6px 6px 28px rgba(0,0,0,0.35);
  display: block;
}
.gm-card--mem .gm-content {
  margin-left: auto;
  width: 55%;
  padding: 48px 44px 48px 24px;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Content inside cards */
.gm-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 6px;
}
.gm-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 18px;
}
.gm-divider::before,
.gm-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.45);
}
/* Tattva lotus SVG icon between divider lines */
.gm-lotus {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.gm-card--mem .gm-divider {
  justify-content: center;
}
.gm-content p {
  font-size: 0.88rem;
  line-height: 1.75;
  opacity: 0.92;
  margin-bottom: 26px;
}
.gm-action-btn {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.85);
  padding: 12px 34px;
  border-radius: 30px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.gm-action-btn:hover {
  background: white;
  color: var(--plum-dark);
}
/* Gift card text left-align */
.gm-card--gift .gm-content { text-align: left; }
.gm-card--gift .gm-divider::after { display: none; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .elevate-grid { grid-template-columns: repeat(3, 1fr); }
  .gm-card--gift .gm-content { max-width: 100%; }
  .gm-gift-img-wrap { display: none; }
  .gm-mem-img-wrap { display: none; }
  .gm-card--mem .gm-content { width: 100%; padding: 48px 44px; }
}
@media (max-width: 900px) {
  .wellness-grid { grid-template-columns: repeat(2, 1fr); }
  .therapies-grid { grid-template-columns: repeat(2, 1fr); }
  .giftmem-grid { grid-template-columns: 1fr; }
  .giftmem-section { padding: 50px 24px; }
  .therapies-section { padding: 50px 24px 56px; }
}
@media (max-width: 640px) {
  .elevate-grid { grid-template-columns: repeat(2, 1fr); }
  .elevate-item { height: 160px; }
  .wellness-grid { grid-template-columns: 1fr; }
  .wellness-card { height: 280px; }
  .therapies-grid { grid-template-columns: 1fr; }
  .gm-card--gift, .gm-card--mem { min-height: auto; }
  .gm-card--gift .gm-content,
  .gm-card--mem .gm-content { padding: 36px 28px; width: 100%; }
}