/* =============================================================
   Soluvya — Integrated Mental & Preventive Healthcare
   Custom CSS (built on top of Bootstrap 5.3)
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
.dm-serif-display-regular {
  font-family: "DM Serif Display";
  font-weight: 400;
  font-style: normal;
}

.dm-serif-display-regular-italic {
  font-family: "DM Serif Display";
  font-weight: 400;
  font-style: italic;
}
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
.dm-sans {
  font-family: "DM Sans";
  font-weight: 400;
  font-style: normal;
}
/* ---------- Design tokens ---------- */
:root {
  --cream: #fffcf6;
  --cream-soft: #fff9ef;
  --cream-card: #fffbf9;
  --mint: #f3f8f9;
  --mint-soft: #f9feff;
  --hero-bg: #e7e1d6;
  --dark: #234743;
  --dark-2: #1b332f;
  --teal: #006e62;
  --orange: #d16c3f;
  --orange-soft: #fdf1e7;
  --text: #1e1e1e;
  --text-muted: #646464;
  --border: #e1dcd3;
  --white: #ffffff;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-sm: 0 2px 10px rgba(35, 71, 67, 0.06);
  --shadow-md: 0 10px 30px rgba(35, 71, 67, 0.1);
  --shadow-lg: 0 20px 50px rgba(35, 71, 67, 0.16);

  /* --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif; */
--font-body:"DM Sans", sans-serif;


  /* map a few tokens onto Bootstrap CSS variables so utility classes stay on-brand */
  --bs-primary: var(--dark);
  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--text);
  --bs-link-color: var(--teal);
}

* {
  scroll-behavior: smooth;
}
html {
  scroll-padding-top: 86px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:#fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}
a {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--dark);
  font-weight: 600;
  line-height: 1.15;
}

.container-xl {
  max-width: 1260px;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.2rem);
  margin-bottom: 0.75rem;
  font-family: "DM Serif Display";
    font-weight: normal;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  /* max-width: 620px; */
  line-height: 1.65;
}

section {
  padding: 3.2rem 0;
}
@media (min-width: 992px) {
  section {
    padding:50px 0;
  }
}
.bg-cream-soft {
  background:#FFFCF6;
}
.bg-mint-soft {
  background:#F9FEFF;
}
.text-teal {
  color: var(--teal) !important;
}
.text-orange {
  color: var(--orange) !important;
}

/* ---------- Buttons ---------- */
.btn {
  font-weight: 600;
  border-radius: 100px;
  padding: 0.72rem 1.5rem;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}
.btn svg {
  width: 16px;
  height: 16px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-sm.btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}

.btn-dark-brand {
  background: var(--dark);
  color: #fff;
  border: 1.5px solid var(--dark);
}
.btn-dark-brand:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
  color: #fff;
  box-shadow: 0 10px 24px rgba(35, 71, 67, 0.2);
}

.btn-outline-brand {
  background: transparent;
  border: 1.5px solid var(--dark);
  color: var(--dark);
}
.btn-outline-brand:hover {
  background: var(--dark);
  color: #fff;
}

.btn-outline-brand-light {
  background: transparent;
  border: 1.5px solid #cfd8d6;
  color: var(--dark);
}
.btn-outline-brand-light:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.btn-whatsapp {
  background: var(--dark);
  color: #fff;
  border: 1.5px solid var(--dark);
}
.btn-whatsapp svg {
  color: #3cd168;
}
.btn-whatsapp:hover {
  background: var(--dark-2);
  color: #fff;
}

.link-arrow {
  color: var(--teal);
  font-weight: 500;
  font-size:17px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  
}
.decorationTextStyle{text-decoration: underline;
    text-decoration-color: var(--teal);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;}
.link-arrow svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}
.link-arrow:hover svg {
  transform: translateX(3px);
}

.icon-circle-btn {
  /* width: 44px;
  height: 44px;
  border-radius: 100px;
  border: 1.5px solid var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: #fff;
  flex-shrink: 0;
  transition: all 0.2s ease; */
}
.icon-circle-btn:hover {
  /* background: var(--dark);
  color: #fff; */
}

.icon-circle-btn svg{fill: #234743;
    fill: color(display-p3 0.1373 0.2784 0.2627);
    fill-opacity: 1;
    stroke: #234743;
    stroke: color(display-p3 0.1373 0.2784 0.2627);
    stroke-opacity: 1;}

.icon-circle-btn:hover svg{ fill: #d16c3f; stroke: #d16c3f;}

.icon-circle-btn svg {
  /* width: 18px;
  height: 18px; */
}

/* ---------- Header (mega-menu) ---------- */
.site-header {
 position: sticky;
    top: 0;
    z-index: 200;
    background: var(--cream);
    border-bottom: 1px solid #E3E3E3;
    box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.07);
}
.site-header .wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 36px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-links > a {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-links > a:hover {
  /* background: rgba(35, 71, 67, 0.06); */
  color: var(--orange);
}

.nav-item {
  position: relative;
}
.nav-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.92rem;
  font-family: inherit;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.nav-trigger:hover {
  /* background: rgba(35, 71, 67, 0.06); */
   color: var(--orange);
}
.nav-trigger .chev {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s ease;
}
.nav-item.open .nav-trigger .chev {
  transform: rotate(180deg);
}
.nav-item.open .nav-trigger {
  background: rgba(35, 71, 67, 0.08);
  color: var(--teal);
}

.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(680px, 90vw);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
}
.nav-item.open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}
.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s ease;
}
.mega-link:hover {
  background: var(--mint);
}
.mega-link .icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
  background: var(--mint);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.mega-link:hover .icon-badge {
  background: var(--dark);
  color: #fff;
}
.mega-link .icon-badge svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}
.mega-link > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-link b {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-body);
}
.mega-link > span:last-child > span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.mega-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.mega-foot p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.mega-foot a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
}
.mega-foot a:hover {
  text-decoration: underline;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid rgba(35, 71, 67, 0.08);
  transition: max-height 0.3s ease;
}
.mobile-drawer.open {
  max-height: 80vh;
  overflow-y: auto;
}
.mobile-drawer > a {
  padding: 14px 24px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(35, 71, 67, 0.06);
}
.m-group {
  border-bottom: 1px solid rgba(35, 71, 67, 0.06);
}
.m-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 14px 24px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  font-family: inherit;
  cursor: pointer;
}
.m-trigger .chev {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s ease;
}
.m-group.open .m-trigger .chev {
  transform: rotate(180deg);
}
.m-panel {
  display: none;
  flex-direction: column;
  background: var(--cream-soft);
  padding: 0.25rem 0 0.75rem;
}
.m-group.open .m-panel {
  display: flex;
}
.m-panel a {
  padding: 0.6rem 24px 0.6rem 44px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
}
.m-panel a:hover {
  color: var(--dark);
}
.m-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 24px;
}

@media (min-width: 1200px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: flex;
  }
  .burger {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .mobile-drawer {
    display: flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  background:#FFF9EF url(../img/hero_banner.svg) no-repeat;
  background-size:contain;
  position: relative;
  overflow: hidden;
  padding: 2.6rem 0 3rem;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.hero > * {
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
  .hero {
    padding: 3.2rem 0 3.2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
  }
}

.hero-text-col {
  position: relative;
  z-index: 2;
}
.hero-spacer {
  pointer-events: none;
}

.hero-eyebrow {
  color: var(--orange);
  /* font-family: var(--font-display); */
  font-weight: 500;
  font-size: 1rem;
  margin-bottom:6px;
}
.hero h1 {
  font-size: clamp(1.9rem, 1.05rem + 2.7vw, 2.7rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
  max-width: 720px;
  font-family: "DM Serif Display";
  font-weight: normal;
}
.hero p.lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 1.6rem;
}
.hero-trust {
  display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 16px;
    color: var(--text-muted);
    margin: 1.4rem 0 2.1rem;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust svg {
  width: 13px;
  height: 13px;
   color: var(--text-muted);
  flex-shrink: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1.6rem 1.8rem;
}
@media (min-width: 576px) {
  .hero-stats {
    grid-template-columns: repeat(4, auto);
  }
}
.hero-stats .stat-num {
font-weight: normal;
    font-family: "DM Serif Display";
  font-size:28px;
  color: var(--dark);
}
.hero-stats .stat-label {
  font-size: 14px;
    color: #234743;
    margin-top: 2px;
    font-family: "DM Serif Display";
}

/* The visual layer is NOT nested in the Bootstrap container, so it can be anchored
   directly to the section's own edges and always reach the right side cleanly,
   at any viewport width, instead of floating inside a capped max-width column. */
.hero-visual {
  position: relative;
  height: 340px;
  margin: 0 0 1.5rem;
}
@media (min-width: 992px) {
  .hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 46%;
    height: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
  }
}

.hero-photo-wrap {
  width: 64%;
  max-width: 340px;
  aspect-ratio: 513/1010;
  /* border-radius: 0 999px 999px 0; */
  overflow: hidden;
  position: relative;
  /* box-shadow: var(--shadow-lg); */
  margin-left: auto;
}
@media (min-width: 992px) {
  .hero-photo-wrap {
    width: min(53%, 480px);
    max-width: none;
    height: 100%;
    aspect-ratio: auto;
    margin-right: 0; /* the wrapper already hugs the section's right edge */
  }
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-circle-sketch {
  position: absolute;
    right: 2%;
    width: 70%;
    max-width: 435px;
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
  /* position: absolute;
  top: 50%;
  right:10%;
  transform: translateY(-50%);
  width: 60%;
  max-width: 340px;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none; */
}
@media (min-width: 992px) {
  .hero-circle-sketch {
    /* width:62%;
    max-width: 420px;
    right: 10%; */
  }
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.hero-blob.blob1 {
  width: 220px;
  height: 220px;
  background: #c9dcd4;
  top: 0;
  left: 10%;
}
.hero-blob.blob2 {
  width: 200px;
  height: 200px;
  background: #f0d9c3;
  bottom: 0;
  right: 30%;
}

.hero-bubble {
  position: absolute;
  background: #fff;
  border-radius: 100px;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 12px 26px rgba(35, 71, 67, 0.18);
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--dark);
  z-index: 3;
  animation: bob 5s ease-in-out infinite;
}
.hero-bubble svg {
  width: 19px;
  height: 19px;
}
.hero-bubble.b1 {
  top: 0;
  right: 38%;
  animation-delay: 0.1s;
}
.hero-bubble.b2 {
  top: 26%;
  right: 44%;
  animation-delay: 1s;
}
.hero-bubble.b3 {
  top: 54%;
  right: 44%;
  animation-delay: 2s;
}
.hero-bubble.b4 {
  top: 80%;
  right: 38%;
  animation-delay: 3s;
}
@media (min-width: 992px) {
  .hero-bubble {
    width: 108px;
    height: 108px;
    font-size: 11.5px;
  }
  .hero-bubble svg {
    width: 22px;
    height: 22px;
  }
  .hero-bubble.b1 {
    top: 4%;
    right: 49%;
  }
  .hero-bubble.b2 {
    top: 27%;
    right:60%;
  }
  .hero-bubble.b3 {
    top: 55%;
    right:60%;
  }
  .hero-bubble.b4 {
    top: 80%;
    right:47%;
  }
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.hero-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.hero-connectors path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  opacity: 0.55;
}

.hero-deco {
  position: absolute;
  opacity: 0.4;
  color: var(--dark);
  pointer-events: none;
}
.hero-deco.d1 {
  top: 4%;
  left: 46%;
  width: 32px;
}
.hero-deco.d2 {
  bottom: 2%;
  left: 40%;
  width: 24px;
}
.hero-deco.d3 {
  bottom: 12%;
  left: 0;
  width: 28px;
}
.hero-deco.d4 {
  top: 1%;
  right: 1%;
  width: 30px;
  display: none;
}
.hero-deco.d5 {
  top: 46%;
  right: -1%;
  width: 26px;
  display: none;
}
.hero-deco.d6 {
  bottom: 30%;
  left: 20%;
  width: 22px;
}
.hero-deco.d7 {
  top: 32%;
  left: 6%;
  width: 20px;
}
@media (min-width: 992px) {
  .hero-deco.d4,
  .hero-deco.d5 {
    display: block;
  }
}

/* ---------- Cards: services ---------- */
.home_services{ /*background:linear-gradient(180deg, rgb(243 237 226) 0%, rgba(255, 255, 255, 0) 60%);*/
 position: relative;
    overflow: hidden;
    background: linear-gradient(
        to bottom,
        #fff9ef 0%,
        #fffaf2 35%,
        #ffffff 70%,
        #fffdf9 85%,
        #fffcf6 100%
    );
padding-bottom: 0;}

.home_services::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;

    opacity: 0.10;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");

    /* Noise ko bottom par fade karna */
    -webkit-mask-image: linear-gradient(
        to bottom,
        black 0%,
        black 55%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        black 0%,
        black 55%,
        transparent 100%
    );
}

.home_services > * {
    position: relative;
    z-index: 1;
}

.how_works{background: url(../img/how_works_bg.svg) no-repeat; background-size: 100%;}

.how_works .reveal{margin-bottom: 0;}

.service-card {
   background: #F9FEFF;
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.35rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 1px solid #d9e3e3;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.service_bottom_Bg{height: 75px; width:100%; 
background: linear-gradient(180deg, #FFFCF6 100%, #FFFFFF 100%);}

.icon-badge {
  /* width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  color: var(--dark);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.9rem;
}
.service-card:hover .icon-badge {
  /* background: var(--dark);
  color: #fff;  */
}

.icon-badge svg{ fill: #234743; 
    fill: color(display-p3 0.1373 0.2784 0.2627);
    fill-opacity: 1;}

.iconbadge2{stroke:#234743; fill: #234743;}


.service-card:hover .iconbadge2 svg{fill: #d16c3f; stroke:#d16c3f;}

.service-card:hover .icon-badge svg{fill: #d16c3f;}

.icon-badge svg {
  /* width: 22px;
  height: 22px; */
}
.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Steps (how it works) ---------- */
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.step-card .icon-badge {
  /* width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--dark);
  background: #fff; */
  margin-bottom: 1rem;
}


.step-card:hover .icon-badge svg{
    fill: #d16c3f;
}
.step-card .icon-badge svg {
 fill:#234743;fill:color(display-p3 0.1373 0.2784 0.2627);fill-opacity:1;
}
.stepiconBadge{fill:#234743;fill:color(display-p3 0.1373 0.2784 0.2627);fill-opacity:1;
  stroke:#234743;stroke:color(display-p3 0.1373 0.2784 0.2627);stroke-opacity:1;}
 
.step-card:hover .stepiconBadge svg{
    fill: #d16c3f;
    stroke:#d16c3f;
}  

.call_us svg{fill:#234743;fill:color(display-p3 0.1373 0.2784 0.2627);fill-opacity:1;stroke:#234743;stroke:color(display-p3 0.1373 0.2784 0.2627);stroke-opacity:1;}

.call_us:hover svg{fill: #fff;
    stroke:#fff;}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.step-num {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--border);
}

/* ---------- Pills ---------- */
.pill-nav .nav-link {
  padding: 0.62rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  margin: 0 17px 0.5rem 0;
}
.pill-nav .nav-link svg {
  width:25px;
  height:25px;
}
.pill-nav .nav-link.active,
.pill-nav .nav-link:hover {
  background: var(--dark);
  color: #fff;
}

 .pill-nav .nav-link svg{fill:#234743;fill:color(display-p3 0.1373 0.2784 0.2627);fill-opacity:1;stroke:#234743;stroke:color(display-p3 0.1373 0.2784 0.2627);stroke-opacity:1;}
.pill-nav .nav-link.active svg,.pill-nav .nav-link:hover svg{fill:#fff; stroke:#fff;}




/* ---------- Programs / sessions cards ---------- */
.program-card,
.session-card {
  background: #fff;
  border:1px solid #c8D3d2;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card{position: relative;}

.program-card.card-corner-svg{background: #fff url(../img/circle_shadow.svg);
    background-size: cover;}


.program-card:hover,
.session-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.program-card h3,
.session-card h3 {
  color: var(--orange);
  font-size: 1.18rem;
  margin-bottom: 0.35rem;
}

.program-card h3{font-family: "DM Serif Display";
    font-weight: normal;
  font-size: 23px;
margin-bottom: 18px;}

.program-card .tags {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  min-height: 2.2em;
}
.program-card .included-label {
  font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #234743;
    margin-bottom: 14px;
}
.program-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
  list-style: none;
  padding: 0;
}
.program-card li {
  font-size:15px;
  display: flex;
  gap:3px;
  align-items: flex-start;
  color: var(--text);
}
.program-card li svg {
  width: 13px;
  height: 13px;
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}
.program-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  /* border-top: 1px solid var(--border); */
  padding-top:10px;
  margin-top: auto;
}
.program-footer .starting {
  font-size: 18px;
  color: var(--text-muted);
}
.program-footer .price {
  font-size: 28px;
    font-weight: 700;
    color: var(--dark);
}
.program-footer .price span {
  font-size: 17px;
    font-weight: 600;
    color: var(--text-muted);
}

.session-card {
  background: var(--cream-card);
  border-color: var(--orange-soft);
}
.on_your_terms{background: #fff; padding-bottom: 0;}

.on_your_terms .session-card{border-color:#E1E1E1 !important;}

.session-card .top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}
.session-card .price-tag {
  text-align: right;
}
.session-card .price-tag .lbl {
  font-size:16px;
  color: var(--text-muted);
}
.session-card .price-tag .amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size:24px;
  color: var(--dark);
}
.session-card h3 {
  color: var(--dark);
 font-size: 21px;
    margin-bottom: 17px;
}
.session-card .duration {
  font-size:18px;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}
.session-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
  list-style: none;
  padding: 0;
}
.session-card li {
  font-size:14px;
  color: var(--text);
  position: relative;
  padding-left: 14px;
}
.session-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background:#1e1e1e;
}

/* ---------- Horizontal scroll track (desktop: full grid; mobile: swipeable carousel) ---------- */
.scroll-track {
  display: grid;
  grid-template-columns: repeat(var(--track-cols, 3), 1fr);
  gap: 1.25rem;
  padding: 0.4rem 0.15rem 1.25rem;
}
.scroll-track > * {
  min-width: 0;
}
@media (max-width: 900px) {
  .scroll-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .scroll-track > * {
    scroll-snap-align: start;
    flex: 0 0 82%;
  }
  .scroll-track > .session-item {
    flex: 0 0 78%;
  }
  .scroll-track > .testi-item {
    flex: 0 0 82%;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .scroll-track {
    --track-cols: 2;
  }
}
#programsTrack {
  --track-cols: 3;
}
#sessionsTrack {
  --track-cols: 4;
}
#testiTrack {
  --track-cols: 4;
}
.scroll-track::-webkit-scrollbar {
  height: 6px;
}
.scroll-track::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}
.scroll-track > * {
  scroll-snap-align: start;
  flex: 0 0 300px;
}
.scroll-track > .session-item {
  flex: 0 0 260px;
}
.scroll-track > .testi-item {
  flex: 0 0 280px;
}

.scroll-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 0.4rem;
}
.scroll-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.scroll-dots .dot.active {
  width: 24px;
  border-radius: 6px;
  background: var(--dark);
}

/* ---------- Workplace Wellness ---------- */
.workplace_wellness .workplace-card {background: #fff;}

.workplace_wellness{background: url(../img/workplace_wellness_bg.svg) no-repeat;
    background-size: cover;}

.programs_section{ background:
        url("../img/personlize_bg.svg") no-repeat;
   background-size:100%;
      padding-bottom: 20px;}

.programs_section .reveal{margin-bottom: 30px;}

.concerns_home .section-title{margin-bottom: 30px;}
    
.workplace-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.35rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.workplace-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.workplace-card .top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.workplace-card .icon-badge {
  /* width: 40px;
  height: 40px;
  border-radius: 9px; */
  margin-bottom: 0;
  flex-shrink: 0;
}
.workplace-card .icon-badge svg {
  /* width: 19px;
  height: 19px; */
}
.workplace-card h3 {
  font-size: 1rem;
  margin: 0;
}
.workplace-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.workplace-visual {
  position: relative;
  min-height: 340px;
}
.workplace-visual .blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #eef3ec, transparent 70%);
}
.workplace-visual .blob.b1 {
  width: 280px;
  height: 280px;
  top: 0;
  left: 10%;
}
.workplace-visual .blob.b2 {
  width: 230px;
  height: 230px;
  bottom: 0;
  right: 5%;
}
.workplace-photo {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.workplace-photo.p1 {
  width: 180px;
  height: 180px;
  top: 0;
  left: 14%;
}
.workplace-photo.p2 {
  width: 200px;
  height: 200px;
  bottom: 0;
  right: 8%;
}
.workplace-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.workplace-callout {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.7rem 0.9rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width:200px;
}
.workplace-callout svg {
  /* width: 16px;
  height: 16px; */
  color: var(--orange);
  flex-shrink: 0;
}
.workplace-callout.c1 {
  top: 6%;
  right: 0;
}
.workplace-callout.c2 {
  bottom: 6%;
  left: 0;
}

.concern-group-card {
  background: linear-gradient(180deg, #F9FEFF 0%, #FFFFFF 100%);
  border:1px solid #dbe4e5;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  height: 100%;
}
.concern-group-card .icon-badge {
 
  margin-bottom: 1rem;
}
.concern-group-card:hover .icon-badge svg {
    fill: #d16c3f;
}

.concern-group-card:hover .iconbadge2 svg{ fill: #d16c3f; stroke: #d16c3f;}

.concern-group-card h3 {
  font-size:25px;
  margin-bottom: 25px;
}
.concern-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.concern-tag {
  background: #f2f8f8;
  /* border: 1px solid var(--border); */
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

/* ---------- Workplace Wellness ---------- */
.workplace-card {
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.workplace-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.workplace-card .wp-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}
.workplace-card .wp-head .icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.workplace-card .wp-head .icon-badge svg {
  width: 18px;
  height: 18px;
}
.workplace-card h3 {
  font-size: 1rem;
  margin-bottom: 0;
}
.workplace-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.7rem;
}

.workplace-illustration {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.workplace-illustration .wp-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 71, 67, 0.07), transparent 70%);
}
.workplace-illustration .wp-photo {
  position: absolute;
  width: 150px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  border: 5px solid #fff;
}
.workplace-illustration .wp-photo.stressed {
  top: 6%;
  left: 8%;
}
.workplace-illustration .wp-photo.happy {
  bottom: 6%;
  right: 6%;
}
.workplace-illustration .wp-callout {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 190px;
  line-height: 1.35;
}
.workplace-illustration .wp-callout svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--orange);
}
.workplace-illustration .wp-callout.c1 {
  top: 2%;
  right: 0;
}
.workplace-illustration .wp-callout.c2 {
  bottom: 0;
  left: 0;
  background: var(--orange-soft);
}
.why-choose {
 background: url(../img/choose_why_Bg.svg) no-repeat;
    position: relative;
    overflow: hidden;
    background-size: 100%;
}
.why-watermark {
  position: absolute;
    right: -35px;
    top: 60px;
    bottom: 0;
    writing-mode: vertical-rl;
    font-family: var(--font-display);
    font-size: 7vw;
    color: rgba(35, 71, 67, 0.06);
    letter-spacing: 0.05em;
    display: none;
    align-items: center;
    pointer-events: none;
}
@media (min-width: 1000px) {
  .why-watermark {
    display: flex;
  }
}
.why-card {
  background: #fff;
  border:1px solid #f4f3ed;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.why-card .icon-badge {
  /* width: 42px;
  height: 42px;
  border-radius: 9px;
  border: 1.5px solid var(--dark);
  background: transparent; */
  margin-bottom:18px;
}
.why-card:hover .icon-badge {
  /* background: var(--dark);
  color: #fff; */
}

.why-card .icon-badge svg {
  /* width: 19px;
  height: 19px; */
  fill:#234743;
  fill:color(display-p3 0.1373 0.2784 0.2627);
  fill-opacity:1;
  stroke:#234743;
  stroke:color(display-p3 0.1373 0.2784 0.2627);
  stroke-opacity:1;
}
.why-card .strokeNone svg{stroke:none !important;}

.why-card:hover .icon-badge svg{
    fill: #d16c3f;
    stroke: #d16c3f;
}
.fillNone svg{fill: none !important;}
.step-card:hover .fillNone svg {
    stroke: #d16c3f;
}
.step-card .fillNone svg {
    stroke: #234743;
}
.why-card h3 {
  font-size:18px;
  margin-bottom:18px;
}
.why-card p {
  font-size:15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.why-card .art-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--orange-soft);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.35rem;
  height: 100%;
  position: relative;
}
.testi-item:nth-child(3n + 2) .testimonial-card {
  /* background: var(--mint-soft); */
}
.testi-item:nth-child(3n + 3) .testimonial-card {
  background:#F9FEFF;
}

.testimonial-card .quote-mark {
      font-family: var(--font-display);
    font-size: 210px;
    color: var(--orange);
    opacity: .1;
    line-height: 1;
    position: absolute;
    top: 30px;
    left: -6px;
}
.testimonial-card h4 {
  color: var(--orange);
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.testimonial-card .role {
  font-size:15px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 0;
}

/* ---------- Insights ---------- */
.insights{padding-top: 0;}

.insight-card {
  background:#FFFBF9;
  border: 1px #E1E1E1 solid;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}
.insight-card h3 {
  color: var(--orange);
  font-size: 1.18rem;
  line-height: 1.35;
  font-family: "DM Serif Display";
    font-weight: normal;
}
.insight-card p {
  font-size:14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

/* ---------- FAQ (Bootstrap accordion re-skin) ---------- */
.accordion-soluvya .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}
.accordion-soluvya .accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  box-shadow: none;
  padding:25px 0;
  font-family: var(--font-body);
}
.accordion-soluvya .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--dark);
  box-shadow: none;
}
.accordion-soluvya .accordion-button::after {
  display: none;
}
.accordion-soluvya .accordion-plus {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--dark);
  transition: transform 0.25s ease;
}
.accordion-soluvya .accordion-button:not(.collapsed) .accordion-plus {
  transform: rotate(45deg);
}
.accordion-soluvya .accordion-body {
  font-size:14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 0 1.15rem 1rem;
  margin-left: 0.1rem;
  position: relative;
}
.accordion-soluvya .accordion-body::before{content: ""; width: 3px;
    height: 16px;
    background: var(--orange);
    position: absolute;
    left: 0;
    top: 5px;}

.accordion-soluvya .faq-num {
  /* color: var(--orange); */
  margin-right: 6px;
}

/* ---------- CTA ---------- */
.cta-section {
  /* background: url(../img/better_contact.svg) no-repeat;
  background-size: cover;
   */
  background: url("../img/better_contact.svg") no-repeat center bottom;
    background-size: 100% auto;
    /* min-height: 400px; */
    height: auto;
    text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 1.2rem+1.6vw, 2rem);
  margin-bottom: 0.85rem;
  font-family: "DM Serif Display";
  font-weight: normal;
}
.cta-section p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 0.97rem;
  line-height: 1.6;
}
.cta-card {
 background: #FFFBF9;
  border: 1px solid #f9ede8;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 230px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cta-card .icon-circle-btn {
  border: none;
  background: var(--dark);
  color: #fff;
}
.cta-card.whatsapp .icon-circle-btn {
  background: #25d366;
}
.cta-card h4 {
  font-size:17px;
  margin-bottom: 10px;
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
}
.cta-card p {
 font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ---------- Footer ---------- */
footer {
 background: linear-gradient(
  180deg,
  #FFFFFF 0%,
  #FFF9EF 5%,
  #FFF9EF 100%
);
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}

footer .reveal{margin-bottom: 10px;}

footer hr{border-color: #cfa8a8;}

.footer-brand img {
width: 75%;
margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 30px;
}

.footer-brand p span{display: block;}

.footer-col h4 {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col a {
  display: block;
  font-size: 0.86rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
}
.footer-col a:hover {
  color: var(--dark);
}
.footer-follow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top:0;
  margin-bottom: 0.6rem;
}

.footer-watermark{background: url(../img/footer_mark_logo.svg);
position: absolute;
    right: 0;
    background-size: 100%;
    height: 272px;
    width: 75%;
    z-index: 999;}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 0;
}
.footer-social a {
  /* width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center; */
  color: var(--dark);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.footer-bottom {
 padding: 30px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* ---------- Inner-page hero (breadcrumb banner) ---------- */
.page-hero {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  padding: 2.6rem 0 3rem;
  text-align: center;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a {
  color: var(--teal);
  font-weight: 600;
}
.page-hero .breadcrumb svg {
  width: 13px;
  height: 13px;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 1.3rem + 2vw, 2.8rem);
      max-width: 860px;
    margin: 0 auto;
    margin-bottom: 15px;
    font-family: "DM Serif Display";
    font-weight: normal;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}
.page-hero .hero-deco {
  opacity: 0.4;
}

/* ---------- Team ---------- */
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.team-card .photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.team-card .body {
  padding: 1.2rem 1.3rem;
}
.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}
.team-card .role {
  color: var(--orange);
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.team-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}
.team-tag {
  display: inline-block;
  background: var(--mint);
  color: var(--dark);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* ---------- Values / timeline ---------- */
.value-card {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  height: 100%;
}
.value-card .icon-badge svg{
     stroke: #234743;
}
.value-card:hover .fillNone svg {
    stroke: #d16c3f;
}
.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- Pricing / program detail cards ---------- */
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--dark);
  box-shadow: var(--shadow-md);
  position: relative;
}
.pricing-card .badge-featured {
  position: absolute;
  top: -13px;
  left: 1.6rem;
  background: var(--dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.pricing-card h3 {
  color: var(--orange);
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}
.pricing-card .tags {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.pricing-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
}
.pricing-card .price-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}
.pricing-card li {
  font-size: 0.87rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pricing-card li svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------- Contact ---------- */
.contact-info-card {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  height: 100%;
}
.contact-info-card .icon-badge {
  background: #fff;
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-info-card .icon-badge svg{stroke: #234743;}

.contact-info-card:hover .icon-badge svg{stroke: #d16c3f;}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.contact-info-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
  display: block;
}
.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  background: var(--cream-soft);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 110, 98, 0.1);
  background: #fff;
}
.contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ---------- Insights / articles ---------- */
.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card .meta svg{width: 20px; height: 20px;}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.article-card .thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--mint);
}
.article-card .body {
  padding: 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.article-card .cat {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.article-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.article-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
}
.article-card .meta {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

/* ---------- Steps / detail process (service pages) ---------- */
.detail-split {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.detail-split .check-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.detail-split .check-item svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.detail-split .check-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
  box-shadow: var(--shadow-md);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--dark-2);
}
.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    /* margin-bottom: 30px; */
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-group > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-group.in > * {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-group > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
  .hero-bubble {
    animation: none;
  }
}

/* ---------- Inner page hero band (About/Team/Programs/Partners/Contact/Insights/Service pages) ---------- */
.page-hero {
  background: var(--hero-bg);
  padding: 2.6rem 0 2.8rem;
  position: relative;
  overflow: hidden;
}
.page-hero .breadcrumb-row {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}
.page-hero .breadcrumb-row a {
  color: var(--text-muted);
}
.page-hero .breadcrumb-row a:hover {
  color: var(--dark);
}
/* .page-hero h1 {
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.7rem);
  margin-bottom: 0.85rem;
  max-width: 760px;
} */
.page-hero p.lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 0;
}
.page-hero .hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Section sub-nav (jump links for anchor sections) ---------- */
.section-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1rem 0;
  position: sticky;
  top: 64px;
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.section-subnav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: all 0.2s ease;
}
.section-subnav a:hover,
.section-subnav a.active {
  background: var(--dark);
  color: #fff;
}

/* ---------- Team cards ---------- */
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.team-card .team-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.team-card .team-body {
  padding: 1.2rem 1.3rem;
}
.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}
.team-card .role {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.team-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ---------- Article / insight listing cards (with image) ---------- */
.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.article-card .art-tag {
  display: inline-block;
  align-self: flex-start;
  margin: 1.1rem 1.2rem 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}
.article-card .art-body {
  padding: 0.8rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}
.article-card h3 {
  font-size: 1.05rem;
  line-height: 1.35; 
}
.article-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
 flex-grow: 1;
}
.article-card .art-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* ---------- Contact page ---------- */
.contact-info-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  height: 100%;
}
.contact-info-card .icon-badge {
     background: var(--mint);
    flex-shrink: 0;
    margin-bottom: 0;
    border-radius: 5px;
    padding: 5px;
}
.contact-info-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.contact-info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form-card .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 110, 98, 0.12);
}

/* ---------- Stat band (about page) ---------- */
.stat-band {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.5rem;
  color: #fff;
}
.stat-band .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.stat-band .stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.2rem;
}

/* ---------- Simple content prose block (service pages) ---------- */
.prose-block h2 {
  font-size: 1.4rem;
  margin: 1.8rem 0 0.8rem;
}
.prose-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.prose-block ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.prose-block li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.3rem;
}
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}
.page-loader img {
  height: 44px;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.94);
  }
}


/*======= Responsive CSS Style =======*/

.svg-width{background: #def1f5;
    border: none;
    border-radius: 2px;
    width: 35px;
    height: 35px;}

.svg-width svg{width: 20px;}

@media (max-width: 768px) {
.program-footer{display: contents;}
}

@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }
  .hero h1{max-width: 100%;}

  .hero p.lead{max-width: 100%;}
}
