body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 35px;
}

h2 {
  font-family: var(--primary-font-family);
  font-weight: 400;
  font-size: 28px;

}

h5 {
  font-family: var(--primary-font-family);
  font-size: 25px;
}

/* Header, Nav, and Footer shell styles moved to common.css */

/* ── SECTION ─────────────────────────────────────────────────── */
.about-section {
  padding: 60px 0;
  overflow: hidden;
}

/* ── INNER WRAPPER — flex, image right / card left with overlap ─ */
.about-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* anchor to right (image side) */
  position: relative;
  gap: 0;
}

/* ── IMAGE ───────────────────────────────────────────────────── */
.about-image-wrap {
  flex-shrink: 0;
  width: 42%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;

}

.about-image {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 150px 20px;
}

/* ── GREEN CARD ───────────────────────────────────────────────── */
.about-card {
  background: #2f6f57;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px;
  border-radius: 28px;
  position: relative;
  z-index: 2;
  margin-right: -110px;
  max-width: 820px;
  flex-shrink: 0;
  margin-top: 0px
}

/* ── TITLE ───────────────────────────────────────────────────── */
.about-title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: "bebas-kai", sans-serif;
  color: #ffffff;

}

/* ── BODY TEXT ───────────────────────────────────────────────── */
.about-card p {
  font-size: 16px;
  line-height: 40px;
  margin-bottom: 16px;
  color: #f2f2f2;
  /* max-width: 730px; */
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-inner {
  display: flex;
  align-items: flex-start;
  /* ← change this from center to flex-start */
  justify-content: flex-start;
  position: relative;
}

/* ── LARGE DESKTOP ≤ 1440px ──────────────────────────────────── */
@media (max-width: 1440px) {
  .about-card {
    width: 62%;
    margin-right: -60px;
    padding: 44px 44px;
    margin-top: 0px;
  }

  .about-image-wrap {
    width: 40%;
  }

  .about-image {
    height: 690px;
  }
}

@media (max-width: 1399px) {
  .about-card {
    width: 70%;
    margin-right: -60px;
    padding: 44px 44px;
    margin-top: 8px;
  }

  .about-image-wrap {
    width: 40%;
  }

  .about-image {
    height: 610px;
  }
}

/* ── LAPTOP ≤ 1200px ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .about-card {
    width: 65%;
    margin-right: -60px;
    padding: 40px 36px;
    margin-top: 8px;
  }

  .about-image-wrap {
    width: 38%;
  }

  .about-image {
    height: 620px;

  }


}

/* ── TABLET ≤ 992px — stack vertically, no overlap ───────────── */
@media (max-width: 992px) {
  .about-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .about-card {
    width: 95%;
    margin-right: 0;
    border-radius: 20px;
    padding: 40px 32px;
    order: 1;
    margin: auto;
    /* card on top */
  }



  .about-image {
    display: none;
  }

  .about-image-wrap {
    flex-shrink: 0;

    border-radius: 0px;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
}

/* ── TABLET PORTRAIT ≤ 768px ─────────────────────────────────── */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }

  .about-card {
    padding: 32px 24px;
  }

  .about-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .about-card p {
    font-size: 15px;
  }

  .about-image {
    display: none;
  }
}

/* ── MOBILE ≤ 576px ──────────────────────────────────────────── */
@media (max-width: 576px) {
  .about-section {
    padding: 28px 0;
  }

  .about-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .about-title {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .about-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .about-image {
    display: none;
  }
}



/* ── LEFT TEXT ── */
.left-text h2 {
  font-family: var(--primary-font-family);
  font-size: 35px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
}

.left-text p {
  font-size: 16px;
  line-height: 35px;
  color: #000000;
  margin-bottom: 1.0rem;
}

.left-text h2.sub-heading {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* ── RIGHT CARD ── */
.challenge-card {
  background: #2A7A60;
  width: 100%;

  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.challenge-card h5 {
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;

}

.challenge-list {
  /* padding-left: 1.2rem; */
  margin: 0;
}

.challenge-list li {
  margin-bottom: 14px;
  line-height: 1.8;
  font-size: 16px;
  color: #ffffff;
}



/* ── RESPONSIVE ── */

/* Tablet (768px – 991px): card full width, stacked */
@media (max-width: 991.98px) {
  .left-text h2 {
    font-size: 28px;
  }

  .left-text h2.sub-heading {
    font-size: 20px;
  }

  .left-text p {
    font-size: 15px;
  }

  .challenge-card {
    max-width: 100%;
  }

  /* center card on tablet */
  .col-lg-5.d-flex {
    justify-content: center;
  }
}

/* Mobile (max 575px) */
@media (max-width: 575.98px) {
  .left-text h2 {
    font-size: 24px;
  }

  .left-text h2.sub-heading {
    font-size: 18px;
  }

  .left-text p {
    font-size: 14px;
    line-height: 1.75;
  }

  .challenge-card {
    max-width: 100%;
    border-radius: 10px;
  }

  .challenge-list li {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .challenge-card h5 {
    font-size: 13px;
  }
}



.therapy-section {
  margin-bottom: 30px;
}

.therapy-header {
  background: var(--primary-color);
  color: #fff;
  padding: 22px 30px;
  width: 100%;
  font-size: 28px;
  font-family: "bebas-kai", sans-serif;
  font-weight: 300;
}

.toggle-btn {
  width: 60px;
  height: 60px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.toggleIcon-plus,
.toggleIcon-minus {
  width: 60px;
  height: 60px;
  display: block !important;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.toggleIcon-minus {
  background: url("../../assets/Minus.png") center/contain no-repeat;
  transform: rotate(0deg);
}

.toggleIcon-plus {
  background: url("../../assets/Plus.png") center/contain no-repeat;
  transform: rotate(90deg);
}

.therapy-img {
  width: 100%;
  object-fit: cover;
  margin-top: 15px;
  border-radius: 20px;
}

#therapyContent {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease,
    transform 0.5s ease;
}

#therapyContent.show {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
  font-size: 16px;
  line-height: 30px;
}

.therapy-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 50px 0px 0px;
  max-width: 630px;
}

@media (max-width: 991px) {
  .therapy-content {
    padding: 0px 15px;
    margin-top: 20px;
  }
}

/* HERO BACKGROUND */
.hero {
  position: relative;
  min-height: 760px;
  background: url("../../assets/bg-1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* soft overlay for readability */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

/* VALUE CARDS — hidden until scroll triggers */
.value-card {
  padding: 28px 22px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  height: 100%;
  max-width: 309px;

  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0s;
}

/* When JS adds .in-view, card animates in */
.value-card.in-view {
  animation: fadeUp 0.65s ease forwards;
}

/* Stagger via CSS custom property set by JS */
.value-card.in-view {
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HOVER: shimmer + lift + glow ── */
.value-card {
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep */
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.18) 40%,
      transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  z-index: 1;
  pointer-events: none;
}

.value-card:hover::before {
  transform: translateX(100%);
}

/* Lift + deeper shadow + subtle scale */
.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Green card glow on hover */
.value-card.green:hover {
  box-shadow: 0 20px 40px rgba(47, 125, 100, 0.45);
}

/* Peach card glow on hover */
.value-card.peach:hover {
  box-shadow: 0 20px 40px rgba(230, 185, 140, 0.55);
}

/* Image bounce on hover */
.value-card img {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
}

.value-card:hover img {
  transform: scale(1.12) translateY(-4px);
}

/* Text slide up slightly on hover */
.value-card h4,
.value-card p {
  transition: transform 0.35s ease;
  position: relative;
  z-index: 2;
}

.value-card:hover h4 {
  transform: translateY(-3px);
}

.value-card:hover p {
  transform: translateY(-2px);
}

/* COLORS */
.green {
  background: #2f7d64;
  color: #fff;
}

.peach {
  background: #e6b98c;
  color: #1f3d2b;
}

/* ICON */
.icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

/* TEXT */
.value-card h4 {
  font-weight: 400;
  color: var(--primary-color);
  margin-top: 10px;
}

.value-card p {
  font-size: 14px;
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: 40px 15px;
  }
}


.tree-section {
  margin-bottom: 30px;
}

/* HEADER */
.tree-header {
  background: var(--primary-color);
  color: #fff;
  padding: 22px 30px;
  width: 100%;
  font-family: "bebas-kai", sans-serif;
  font-weight: 300;
}

.tree-header h3 {
  font-family: "bebas-kai", sans-serif;
  font-size: 28px;
  font-weight: 300;
}

/* TOGGLE BUTTON */
.toggle-btn {
  width: 60px;
  height: 60px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.toggleIcon-plus,
.toggleIcon-minus {
  width: 60px;
  height: 60px;
  display: block !important;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.toggleIcon-plus {
  background: url("../../assets/Plus.png") center/contain no-repeat;
  transform: rotate(90deg);
}

.toggleIcon-minus {
  background: url("../../assets/Minus.png") center/contain no-repeat;
  transform: rotate(0deg);
}

/* EXPANDABLE CONTENT */
#treeContent {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease,
    transform 0.5s ease;
}

#treeContent.show {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
}

/* LEFT TEXT */
.tree-text {
  padding: 30px 20px 30px 0;
}

@media (max-width: 991px) {
  .tree-text {
    padding: 20px 15px;
  }
}

.tree-text h5 {
  font-family: "bebas-kai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;

}

.tree-text p {
  font-size: 16px;
  line-height: 30px;
  color: #333;
  margin-bottom: 24px;
}

/* RIGHT IMAGE */
.tree-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 30px;
}



.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-image: url("../../assets/bg-2.jpeg");
  background-size: cover;
  background-position: center;
  margin-bottom: 60px;
}



.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-image: url("../../assets/bg-2.jpeg");
  background-size: cover;
  background-position: center;
  margin-bottom: 60px;
}

.cards-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 990px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-card {
  border-radius: 60px 0px 60px 0px;
  padding: 40px 60px;
  height: 265px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);

  /* Vertical center fix */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  /* Scroll animation — start hidden */
  opacity: 0;
  transition: box-shadow 0.3s ease;
}

/* Alternating slide directions */
.info-card:nth-child(odd) {
  transform: translateX(-50px);
}

.info-card:nth-child(even) {
  transform: translateX(50px);
}

/* Animate in when in view */
.info-card.in-view {
  animation: slideIn 0.7s ease forwards;
}

.info-card:nth-child(1) {
  animation-delay: 0.05s;
}

.info-card:nth-child(2) {
  animation-delay: 0.2s;
}

.info-card:nth-child(3) {
  animation-delay: 0.35s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card-green {
  background-color: #2A7A60;
  color: #fff;
}

.card-peach {
  background-color: #F6C89A;
  color: var(--primary-color);
}

.info-card h2 {
  font-family: var(--primary-font-family);
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 400;
}

.info-card p {
  font-size: 16px;
  line-height: 35px;
  max-width: 790px;
  margin: 0 auto;
}

.card-green p {
  color: rgba(255, 255, 255, 0.92);
}

.card-peach p {
  color: #2d6250;
}

@media (max-width: 640px) {
  .info-card {
    padding: 32px 28px;
    height: auto;
  }

  .info-card p {
    font-size: 0.97rem;
  }
}



/* ─── FOOTER SHELL ─── */
footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 60px 80px 0;
}

/* ─── MAIN ROW ─── */
.footer-main-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

/* ─── BRAND COL ─── */
.footer-col-brand {
  flex: 0 0 auto;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-logo img {
  width: 180px;
  height: 170px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));

}

.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 24px;
  color: #fff;
  white-space: nowrap;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-top: 2px;
  white-space: nowrap;
}

/* ─── VERTICAL DIVIDER ─── */
.v-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
  align-self: stretch;
  min-height: 140px;
  margin: 0 60px;
  flex-shrink: 0;
}

/* ─── LINKS & BUSINESS COLS ─── */
.footer-col-links,
.footer-col-business {
  flex: 0 0 auto;
}

.footer-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: #fff;
}

.business-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 12px;
}

/* ─── BOTTOM BAR ─── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 50px;
  padding: 22px 0;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */

/* ── Medium tablets (992px – 1199px) ── */
@media (max-width: 1199px) {
  footer {
    padding: 50px 40px 0;
  }

  .v-divider {
    margin: 0 40px;
  }

  .foot-logo img {
    width: 150px;
    height: 140px;
  }

  .brand-text {
    font-size: 21px;
  }

  .footer-tagline {
    font-size: 14px;
  }
}

/* ── Small tablets (768px – 991px) ── */
@media (max-width: 991px) {
  footer {
    padding: 44px 28px 0;
  }

  .footer-main-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 32px;
  }

  .v-divider {
    display: none;
  }

  .footer-col-brand,
  .footer-col-links,
  .footer-col-business {
    flex: 1 1 200px;
    min-width: 160px;
    max-width: 260px;
  }

  .brand-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .foot-logo img {
    width: 120px;
    height: 110px;
  }

  .brand-text {
    font-size: 20px;
    white-space: normal;
  }

  .footer-tagline {
    font-size: 13px;
    white-space: normal;
  }
}

/* ── Mobile (max 767px) ── */
@media (max-width: 767px) {
  footer {
    padding: 36px 20px 0;
  }

  .footer-main-row {
    flex-direction: column;
    align-items: flex-start;
    /* LEFT align all columns */
    text-align: left;
    gap: 28px;
  }

  .footer-col-brand,
  .footer-col-links,
  .footer-col-business {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .footer-col-links,
  .footer-col-business {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 24px;
  }

  /* Brand block: logo + text side by side, left aligned */
  .brand-block {
    flex-direction: row;
    justify-content: flex-start;
    /* LEFT align */
    align-items: center;
    gap: 14px;
  }

  .brand-info {
    text-align: left;
  }

  .brand-text {
    white-space: normal;
    font-size: 19px;
  }

  .footer-tagline {
    white-space: normal;
    font-size: 13px;
  }

  .foot-logo img {
    width: 90px;
    height: 85px;
  }

  /* Links left aligned */
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* LEFT align */
  }

  .footer-bottom {
    margin-top: 32px;
    font-size: 0.8rem;
    text-align: center;
  }
}

/* ── Very small (max 380px) ── */
@media (max-width: 380px) {
  .brand-block {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    /* still LEFT */
  }

  .brand-info {
    text-align: left;
  }

  .foot-logo img {
    width: 75px;
    height: 70px;
  }

  .brand-text {
    font-size: 17px;
  }
}