/* ==========================================================================
   Jan Sewa Hospital — Corporate edition
   Restrained palette, line-style SVG icons, calm motion, tight rhythm.
   ========================================================================== */

:root {
  --jsh-navy: #0f3a5c;
  /* primary, deep corporate blue */
  --jsh-navy-2: #1e6091;
  /* lighter navy */
  --jsh-navy-3: #15466e;
  /* mid navy */
  --jsh-navy-deep: #0a2a44;
  /* darkest navy for diagnostics bg */
  --jsh-teal: #14857d;
  /* muted accent teal */
  --jsh-teal-2: #1aa097;
  /* brighter teal for hovers */
  --jsh-teal-soft: #e6f4f2;
  /* teal tinted surface */
  --jsh-text: #1f2a37;
  /* primary body text */
  --jsh-text-muted: #5b6776;
  /* secondary text */
  --jsh-text-faint: #8390a0;
  /* labels, captions */
  --jsh-bg: #ffffff;
  /* page bg */
  --jsh-bg-alt: #f6f8fa;
  /* alt section bg */
  --jsh-bg-tint: #eef3f7;
  /* tinted blocks */
  --jsh-border: #e3e8ee;
  /* light borders */
  --jsh-border-2: #d5dde6;
  /* mid borders */
  --jsh-amber: #b8761c;
  /* muted gold for Garba */
  --jsh-amber-soft: #f5ead6;
  --jsh-shadow-sm: 0 1px 2px rgba(15, 58, 92, .06), 0 1px 1px rgba(15, 58, 92, .04);
  --jsh-shadow-md: 0 4px 10px rgba(15, 58, 92, .06), 0 2px 4px rgba(15, 58, 92, .04);
  --jsh-shadow-lg: 0 12px 28px rgba(15, 58, 92, .10), 0 4px 8px rgba(15, 58, 92, .06);
  --jsh-radius: 12px;
  --jsh-radius-sm: 8px;
  --jsh-radius-pill: 999px;
  --jsh-easing: cubic-bezier(.2, .8, .2, 1);
  --jsh-container: 1200px;
}

/* ----- Base / Reset ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--jsh-text);
  background: var(--jsh-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--jsh-navy-2);
  text-decoration: none;
}

a:hover {
  color: var(--jsh-teal);
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--jsh-teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.jsh-page {
  overflow-x: clip;
}

/* SVG icon defaults (rendered by jsh_icon helper) */
.jsh-ic {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ----- Scroll progress bar ----- */
.jsh-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jsh-navy) 0%, var(--jsh-teal) 100%);
  z-index: 100;
  transition: width .12s linear;
}

/* ----- Top utility strip ----- */
.jsh-utility {
  background: var(--jsh-navy-deep);
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.jsh-utility__inner {
  max-width: var(--jsh-container);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
}

.jsh-utility__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.jsh-utility__ic {
  width: 16px;
  height: 16px;
  color: var(--jsh-teal-2);
  stroke-width: 1.8;
}

.jsh-utility__sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .18);
}

/* ----- Section base ----- */
.jsh-section,
.jsh-section--full {
  padding: 96px 24px;
}

.jsh-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.jsh-section--full>* {
  max-width: var(--jsh-container);
  margin-left: auto;
  margin-right: auto;
}

.jsh-section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--jsh-teal);
  padding: 6px 14px;
  background: var(--jsh-teal-soft);
  border-radius: var(--jsh-radius-pill);
  margin-bottom: 16px;
}

.jsh-section__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.018em;
  line-height: 1.18;
  color: var(--jsh-navy);
  margin: 0 0 16px;
  position: relative;
}

.jsh-section__title::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--jsh-teal);
  margin-top: 14px;
  border-radius: 2px;
}

/* Centered headers (full-width sections) */
.jsh-affordable__header,
.jsh-infra__header,
.jsh-gallery__header,
.jsh-diagnostics__header,
.jsh-team__header,
.jsh-why__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.jsh-affordable__header .jsh-section__title::after,
.jsh-infra__header .jsh-section__title::after,
.jsh-gallery__header .jsh-section__title::after,
.jsh-diagnostics__header .jsh-section__title::after,
.jsh-team__header .jsh-section__title::after,
.jsh-why__header .jsh-section__title::after {
  margin-left: auto;
  margin-right: auto;
}

.jsh-section__text {
  color: var(--jsh-text-muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 8px;
}

/* ----- Reveal animation ----- */
.jsh-animate {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--jsh-easing), transform .7s var(--jsh-easing);
}

.jsh-animate.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.jsh-hero {
  position: relative;
  min-height: calc(100vh - 38px);
  background:
    linear-gradient(135deg, rgba(10, 42, 68, .88) 0%, rgba(20, 133, 125, .78) 100%),
    url('images/JSH.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 120px;
  overflow: hidden;
}

.jsh-hero::before {
  /* very subtle dot grid overlay (calm, not playful) */
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.jsh-hero__content {
  position: relative;
  max-width: 880px;
}

.jsh-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  border-radius: var(--jsh-radius-pill);
  backdrop-filter: blur(6px);
  margin-bottom: 28px;
}

.jsh-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--jsh-teal-2);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(26, 160, 151, .25);
}

.jsh-hero__title {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -.012em;
  line-height: 1.08;
  margin: 0 0 22px;
  color: #fff;
}

.jsh-hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, .86);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.jsh-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.jsh-hero__stat {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--jsh-radius);
  padding: 22px 14px;
  transition: transform .35s var(--jsh-easing), background .35s var(--jsh-easing), border-color .35s var(--jsh-easing);
}

.jsh-hero__stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
}

.jsh-hero__stat-num {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  color: #fff;
}

.jsh-hero__stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-top: 8px;
}

.jsh-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, .85);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 6px;
  opacity: .9;
  transition: opacity .25s var(--jsh-easing), transform .25s var(--jsh-easing);
}

.jsh-hero__scroll:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.jsh-hero__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, .7);
  border-radius: 14px;
  position: relative;
}

.jsh-hero__scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 7px;
  background: rgba(255, 255, 255, .85);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: jshScrollDot 1.6s ease-in-out infinite;
}

@keyframes jshScrollDot {

  0%,
  100% {
    opacity: .25;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 8px);
  }
}

.jsh-hero__scroll-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.jsh-hero__logo {
  margin-bottom: 18px;
}

.jsh-hero__logo img {
  width: 120px; /* adjust size */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.jsh-about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.jsh-about__visual {
  position: relative;
  border-radius: var(--jsh-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--jsh-shadow-md);
  border: 1px solid var(--jsh-border);
}

.jsh-about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jsh-about__visual-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 24px;
  background: linear-gradient(to top, rgba(10, 42, 68, .92) 0%, rgba(10, 42, 68, .6) 60%, transparent 100%);
  color: #fff;
}

.jsh-about__visual-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--jsh-teal);
  border-radius: var(--jsh-radius-pill);
  margin-bottom: 10px;
}

.jsh-about__visual-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

/* ==========================================================================
   QUOTE
   ========================================================================== */
.jsh-quote {
  background: linear-gradient(135deg, var(--jsh-navy) 0%, var(--jsh-teal) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
  position: relative;
}

.jsh-quote__icon {
  font-family: 'Lora', serif;
  font-size: 80px;
  line-height: .6;
  opacity: .35;
  margin-bottom: 8px;
}

.jsh-quote__text {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-style: italic;
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .95);
}

/* ==========================================================================
   AFFORDABLE CARE
   ========================================================================== */
.jsh-affordable {
  background: var(--jsh-bg-alt);
}

.jsh-affordable__inner {
  padding: 0 24px;
}

.jsh-affordable__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.jsh-affordable__card {
  background: #fff;
  border: 1px solid var(--jsh-border);
  border-top: 3px solid var(--jsh-teal);
  border-radius: var(--jsh-radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s var(--jsh-easing), box-shadow .3s var(--jsh-easing), border-color .3s var(--jsh-easing);
}

.jsh-affordable__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--jsh-shadow-lg);
  border-top-color: var(--jsh-teal-2);
}

.jsh-affordable__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--jsh-radius);
  background: var(--jsh-teal-soft);
  color: var(--jsh-teal);
  margin-bottom: 18px;
}

.jsh-affordable__card-icon .jsh-ic {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.jsh-affordable__card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--jsh-navy);
  margin-bottom: 8px;
}

.jsh-affordable__card-price {
  font-size: 30px;
  font-weight: 700;
  color: var(--jsh-teal);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 12px;
}

.jsh-affordable__card-price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--jsh-text-muted);
  margin-left: 4px;
}

.jsh-affordable__card-desc {
  color: var(--jsh-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================================================
   INFRASTRUCTURE
   ========================================================================== */
.jsh-infra__inner {
  width: 100%;
}

.jsh-infra__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.jsh-infra-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--jsh-border);
  border-radius: var(--jsh-radius);
  transition: transform .25s var(--jsh-easing), box-shadow .25s var(--jsh-easing), border-color .25s var(--jsh-easing);
}

.jsh-infra-card:hover {
  transform: translateY(-2px);
  border-color: var(--jsh-teal);
  box-shadow: var(--jsh-shadow-md);
}

.jsh-infra-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--jsh-radius-sm);
  background: var(--jsh-teal-soft);
  color: var(--jsh-teal);
  flex-shrink: 0;
}

.jsh-infra-card__icon .jsh-ic {
  width: 24px;
  height: 24px;
}

.jsh-infra-card__title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--jsh-navy);
  line-height: 1.3;
  margin-bottom: 2px;
}

.jsh-infra-card__desc {
  font-size: 13px;
  color: var(--jsh-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.jsh-gallery {
  background: var(--jsh-bg-alt);
}

.jsh-gallery__inner {
  padding: 0 24px;
}

.jsh-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}

.jsh-gallery__item {
  position: relative;
  border-radius: var(--jsh-radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--jsh-bg-tint);
  border: 1px solid var(--jsh-border);
  box-shadow: var(--jsh-shadow-sm);
  transition: transform .3s var(--jsh-easing), box-shadow .3s var(--jsh-easing);
}

.jsh-gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.jsh-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--jsh-easing);
}

.jsh-gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--jsh-shadow-md);
}

.jsh-gallery__item:hover img {
  transform: scale(1.04);
}

.jsh-gallery__item::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(10, 42, 68, .88) 0%, rgba(10, 42, 68, 0) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--jsh-easing), transform .3s var(--jsh-easing);
}

.jsh-gallery__item:hover::after {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   DIAGNOSTICS (dark)
   ========================================================================== */
.jsh-diagnostics {
  background: linear-gradient(180deg, var(--jsh-navy-deep) 0%, #0d3550 100%);
  color: #fff;
}

.jsh-diagnostics__inner {
  padding: 0 24px;
}

.jsh-diagnostics .jsh-section__label {
  background: rgba(26, 160, 151, .15);
  color: var(--jsh-teal-2);
}

.jsh-diagnostics .jsh-section__title {
  color: #fff;
}

.jsh-diagnostics .jsh-section__text {
  color: rgba(255, 255, 255, .7);
}

.jsh-diagnostics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.jsh-diag-card {
  padding: 22px 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--jsh-radius);
  transition: background .25s var(--jsh-easing), border-color .25s var(--jsh-easing), transform .25s var(--jsh-easing);
}

.jsh-diag-card:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(26, 160, 151, .4);
  transform: translateY(-2px);
}

.jsh-diag-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.jsh-diag-card__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--jsh-radius-sm);
  background: rgba(26, 160, 151, .15);
  color: var(--jsh-teal-2);
  flex-shrink: 0;
}

.jsh-diag-card__ic .jsh-ic {
  width: 20px;
  height: 20px;
}

.jsh-diag-card__text {
  color: rgba(255, 255, 255, .7);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ==========================================================================
   FEATURED EQUIPMENT
   ========================================================================== */
.jsh-equipment {
  background: var(--jsh-bg-alt);
}

.jsh-equipment__inner {
  width: 100%;
}

.jsh-equipment__header {
  text-align: center;
  margin-bottom: 48px;
}

.jsh-equipment__header .jsh-section__title::after {
  margin-left: auto;
  margin-right: auto;
}

.jsh-equipment__header .jsh-section__text {
  max-width: 620px;
  margin: 14px auto 0;
}

.jsh-equipment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.jsh-equipment-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--jsh-border);
  border-radius: var(--jsh-radius);
  overflow: hidden;
  transition: transform .25s var(--jsh-easing),
    box-shadow .25s var(--jsh-easing),
    border-color .25s var(--jsh-easing);
}

.jsh-equipment-card:hover {
  transform: translateY(-3px);
  border-color: var(--jsh-teal);
  box-shadow: var(--jsh-shadow-md);
}

.jsh-equipment-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--jsh-navy-deep) 0%, var(--jsh-navy) 60%, var(--jsh-teal) 100%);
  overflow: hidden;
}

.jsh-equipment-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--jsh-easing);
}

.jsh-equipment-card:hover .jsh-equipment-card__img {
  transform: scale(1.04);
}

.jsh-equipment-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: rgba(255, 255, 255, .92);
  text-align: center;
}

.jsh-equipment-card__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.jsh-equipment-card__ph-ic {
  width: 38px;
  height: 38px;
  stroke-width: 1.4;
  color: rgba(255, 255, 255, .85);
  position: relative;
  z-index: 1;
}

.jsh-equipment-card__ph-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  color: #fff;
  position: relative;
  z-index: 1;
}

.jsh-equipment-card__ph-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--jsh-radius-pill);
  position: relative;
  z-index: 1;
}

.jsh-equipment-card__caption {
  padding: 18px 20px 20px;
}

.jsh-equipment-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--jsh-navy);
  margin-bottom: 4px;
}

.jsh-equipment-card__desc {
  font-size: 13.5px;
  color: var(--jsh-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   ICU
   ========================================================================== */
.jsh-icu {
  background: linear-gradient(135deg, var(--jsh-navy) 0%, var(--jsh-teal) 100%);
  color: #fff;
  text-align: center;
}

.jsh-icu__inner {
  max-width: 820px !important;
  padding: 0 24px;
}

.jsh-icu .jsh-section__label {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.jsh-icu .jsh-section__title {
  color: #fff;
}

.jsh-icu .jsh-section__title::after {
  background: rgba(255, 255, 255, .6);
  margin-left: auto;
  margin-right: auto;
}

.jsh-icu .jsh-section__text {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 28px;
}

.jsh-icu__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--jsh-radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .02em;
}

.jsh-icu__badge .jsh-ic {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   TEAM
   ========================================================================== */
.jsh-team__inner {
  width: 100%;
}

.jsh-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}

.jsh-team-card {
  text-align: center;
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--jsh-border);
  border-radius: var(--jsh-radius);
  transition: transform .25s var(--jsh-easing), box-shadow .25s var(--jsh-easing), border-color .25s var(--jsh-easing);
}

.jsh-team-card:hover {
  transform: translateY(-3px);
  border-color: var(--jsh-teal);
  box-shadow: var(--jsh-shadow-md);
}

.jsh-team-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--jsh-teal-soft);
  color: var(--jsh-teal);
  margin-bottom: 18px;
}

.jsh-team-card__icon .jsh-ic {
  width: 26px;
  height: 26px;
}

.jsh-team-card__num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--jsh-navy);
  margin-bottom: 8px;
}

.jsh-team-card__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--jsh-text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   GARBA SHAKTI
   ========================================================================== */
.jsh-garba {
  background: var(--jsh-amber-soft);
}

.jsh-garba__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 0 24px;
}

.jsh-garba__visual {
  position: relative;
  background: linear-gradient(135deg, #c98423 0%, #b8761c 100%);
  color: #fff;
  border-radius: var(--jsh-radius);
  padding: 48px 32px;
  text-align: center;
  aspect-ratio: 4 / 3.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--jsh-shadow-md);
}

.jsh-garba__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: .35;
}

.jsh-garba__visual-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.jsh-garba__visual-icon .jsh-ic {
  width: 36px;
  height: 36px;
  color: #fff;
  stroke-width: 1.5;
}

.jsh-garba__visual-title {
  font-family: 'Lora', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.jsh-garba__visual-sub {
  font-size: 13px;
  letter-spacing: .04em;
  opacity: .9;
  position: relative;
  z-index: 1;
}

.jsh-garba__benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.jsh-garba__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(184, 118, 28, .18);
  font-size: 14.5px;
  color: var(--jsh-text);
}

.jsh-garba__benefits li:last-child {
  border-bottom: 0;
}

.jsh-garba__benefits li>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--jsh-amber);
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.jsh-garba__benefits li>span .jsh-ic {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

/* ==========================================================================
   VISION & MISSION
   ========================================================================== */
.jsh-vision__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 0 24px;
}

.jsh-vision-card {
  background: #fff;
  border: 1px solid var(--jsh-border);
  border-radius: var(--jsh-radius);
  padding: 40px 36px;
  position: relative;
  transition: transform .25s var(--jsh-easing), box-shadow .25s var(--jsh-easing), border-color .25s var(--jsh-easing);
}

.jsh-vision-card:hover {
  transform: translateY(-3px);
  border-color: var(--jsh-teal);
  box-shadow: var(--jsh-shadow-md);
}

.jsh-vision-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--jsh-radius-sm);
  background: var(--jsh-teal-soft);
  color: var(--jsh-teal);
  margin-bottom: 18px;
}

.jsh-vision-card__icon .jsh-ic {
  width: 26px;
  height: 26px;
}

.jsh-vision-card:nth-child(2) .jsh-vision-card__icon {
  background: rgba(15, 58, 92, .08);
  color: var(--jsh-navy);
}

.jsh-vision-card__title {
  font-size: 34px;
  font-weight: 700;
  color: var(--jsh-navy);
  letter-spacing: -.01em;
  margin: 0 0 14px;
}

.jsh-vision-card__text {
  color: var(--jsh-text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.jsh-vision-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jsh-vision-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--jsh-border);
  font-size: 14.5px;
  color: var(--jsh-text);
}

.jsh-vision-card__list li:last-child {
  border-bottom: 0;
}

.jsh-vision-card__list li>.jsh-ic {
  width: 18px;
  height: 18px;
  color: var(--jsh-teal);
  stroke-width: 2.2;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ==========================================================================
   WHY CHOOSE
   ========================================================================== */
.jsh-why {
  background: linear-gradient(180deg, var(--jsh-navy-deep) 0%, #0d3550 100%);
  color: #fff;
}

.jsh-why__inner {
  padding: 0 24px;
}

.jsh-why .jsh-section__label {
  background: rgba(26, 160, 151, .15);
  color: var(--jsh-teal-2);
}

.jsh-why .jsh-section__title {
  color: #fff;
}

.jsh-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.jsh-why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--jsh-radius);
  transition: background .25s var(--jsh-easing), border-color .25s var(--jsh-easing), transform .25s var(--jsh-easing);
}

.jsh-why-card:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(26, 160, 151, .4);
  transform: translateY(-2px);
}

.jsh-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--jsh-radius-sm);
  background: rgba(26, 160, 151, .15);
  color: var(--jsh-teal-2);
  flex-shrink: 0;
}

.jsh-why-card__icon .jsh-ic {
  width: 24px;
  height: 24px;
}

.jsh-why-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.jsh-why-card__desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.55;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.jsh-cta {
  background: linear-gradient(135deg, var(--jsh-navy) 0%, var(--jsh-teal) 100%);
  color: #fff;
  text-align: center;
  padding: 96px 24px;
}

.jsh-cta__inner {
  max-width: 820px !important;
}

.jsh-cta__title {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -.012em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
}

.jsh-cta__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .88);
  margin: 0 auto 32px;
  max-width: 640px;
}

.jsh-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fff;
  color: var(--jsh-navy);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--jsh-radius-pill);
  transition: transform .25s var(--jsh-easing), box-shadow .25s var(--jsh-easing), gap .25s var(--jsh-easing);
}

.jsh-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  gap: 14px;
  color: var(--jsh-navy);
}

.jsh-cta__btn-ic {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.jsh-totop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: var(--jsh-radius);
  background: var(--jsh-navy);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--jsh-shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s var(--jsh-easing), transform .25s var(--jsh-easing), background .25s var(--jsh-easing);
  z-index: 50;
}

.jsh-totop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.jsh-totop:hover {
  background: var(--jsh-teal);
}

.jsh-totop svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {

  .jsh-section,
  .jsh-section--full {
    padding: 72px 20px;
  }

  .jsh-about {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .jsh-affordable__grid {
    grid-template-columns: 1fr;
  }

  .jsh-infra__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jsh-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
  }

  .jsh-gallery__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .jsh-diagnostics__grid {
    grid-template-columns: 1fr;
  }

  .jsh-equipment__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jsh-team__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .jsh-garba__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .jsh-vision__inner {
    grid-template-columns: 1fr;
  }

  .jsh-why__grid {
    grid-template-columns: 1fr;
  }

  .jsh-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
  }
}

@media (max-width: 640px) {

  .jsh-section,
  .jsh-section--full {
    padding: 56px 16px;
  }

  .jsh-utility {
    font-size: 12px;
  }

  .jsh-utility__inner {
    padding: 8px 16px;
    gap: 8px 12px;
  }

  .jsh-utility__sep {
    display: none;
  }

  .jsh-infra__grid {
    grid-template-columns: 1fr;
  }

  .jsh-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .jsh-gallery__item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .jsh-equipment__grid {
    grid-template-columns: 1fr;
  }

  .jsh-team__grid {
    grid-template-columns: 1fr;
  }

  .jsh-hero {
    padding: 80px 20px 100px;
  }

  .jsh-hero__stats {
    gap: 12px;
  }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .jsh-animate {
    opacity: 1;
    transform: none;
  }
}




  /* ---- Scoped to .jsh-section so it won't clash with your site ---- */
  .jsh-section{
    --jsh-primary:#b91c5c;
    --jsh-primary-dark:#7a0f3d;
    --jsh-accent:#0f766e;
    --jsh-bg:#fff7fb;
    --jsh-ink:#1f2937;
    --jsh-muted:#6b7280;
    --jsh-border:#f1d6e3;
    --jsh-radius:14px;
    --jsh-shadow:0 6px 22px rgba(31,41,55,.08);
    color:var(--jsh-ink);
    font-family:inherit;
    background:linear-gradient(180deg,var(--jsh-bg) 0%,#fff 100%);
    padding:56px 20px;
  }
  .jsh-container{max-width:1100px;margin:0 auto;}
 
  /* Header layout: text + hero photo */
  .jsh-header{
    gap:28px;align-items:center;margin-bottom:36px;
    grid-template-columns:1.1fr 1fr;
  }
  .jsh-header-text{text-align:left;}
  @media (max-width:780px){
    .jsh-header{grid-template-columns:1fr;text-align:center;}
    .jsh-header-text{text-align:center;}
  }
  .jsh-eyebrow{
    display:inline-block;font-size:12px;letter-spacing:.12em;
    text-transform:uppercase;color:var(--jsh-primary);
    background:#fff;border:1px solid var(--jsh-border);
    padding:6px 12px;border-radius:999px;font-weight:600;
    margin-left: 39%;
  }
  .jsh-header h2{
    margin:14px 0 10px;line-height:1.2;color:var(--jsh-primary-dark);
    margin-left: 33%;
  }
  .jsh-lede{text-align: center; margin:0;color:#374151;font-size:16px;line-height:1.6;}
  @media (max-width:780px){.jsh-lede{margin:0 auto;}}
  .jsh-lede em{font-style:italic;color:var(--jsh-primary);}
 
  /* Photos */
  .jsh-photo{margin:0;}
  .jsh-photo figcaption{
    margin-top:8px;font-size:13px;color:var(--jsh-muted);text-align:center;
  }
  .jsh-photo-frame{
    position:relative;aspect-ratio:4/3;overflow:hidden;
    border-radius:var(--jsh-radius);
    background:
      linear-gradient(135deg,#fde7ef 0%,#fdf2f8 50%,#e6fffb 100%);
    border:2px dashed var(--jsh-border);
    box-shadow:var(--jsh-shadow);
    display:flex;align-items:center;justify-content:center;
  }
  .jsh-photo-frame::before{
    content:"\1F4F7  Add your photo";
    color:var(--jsh-primary);font-weight:600;font-size:14px;
    letter-spacing:.02em;
  }
  .jsh-photo-frame img{
    position:absolute;inset:0;width:100%;height:100%;
    object-fit:cover;display:block;
  }
  .jsh-photo-frame img:not([src]),
  .jsh-photo-frame img[src=""]{display:none;}
  .jsh-photo-frame:has(img[src]:not([src=""])){
    border-style:solid;background:#fff;
  }
  .jsh-photo-frame:has(img[src]:not([src=""]))::before{display:none;}
  .jsh-photo-hero .jsh-photo-frame{aspect-ratio:5/4;}
 
  /* Gallery row */
  .jsh-gallery{
    display:grid;gap:16px;margin:0 0 22px;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  }
 
  /* Empowerment 2-col */
  .jsh-empower-grid{
    display:grid;gap:22px;align-items:center;
    grid-template-columns:1.4fr 1fr;
  }
  @media (max-width:780px){
    .jsh-empower-grid{grid-template-columns:1fr;}
  }
 
  /* Stats */
  .jsh-stats{
    display:grid;gap:16px;margin:28px 0 32px;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  }
  .jsh-stat{
    background:#fff;border:1px solid var(--jsh-border);
    border-radius:var(--jsh-radius);padding:20px;text-align:center;
    box-shadow:var(--jsh-shadow);
  }
  .jsh-stat-num{
    font-size:clamp(26px,3.6vw,36px);font-weight:800;
    color:var(--jsh-primary);line-height:1;
  }
  .jsh-stat-label{margin-top:6px;color:var(--jsh-muted);font-size:14px;}
 
  /* Cards */
  .jsh-card{
    background:#fff;border:1px solid var(--jsh-border);
    border-radius:var(--jsh-radius);padding:22px 22px 18px;
    box-shadow:var(--jsh-shadow);margin-bottom:22px;
  }
  .jsh-card h3{margin:0 0 12px;color:var(--jsh-primary-dark);font-size:21px;}
  .jsh-sub{margin:-6px 0 12px;color:var(--jsh-muted);font-size:14px;}
 
  /* Lists */
  .jsh-list{margin:0;padding-left:20px;line-height:1.65;}
  .jsh-list li{margin:6px 0;}
  .jsh-list ul{margin-top:6px;}
 
  /* Grid of data cards */
  .jsh-grid{
    display:grid;gap:18px;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  }
 
  /* Tables */
  .jsh-data table{
    width:100%;border-collapse:collapse;margin-top:6px;font-size:14px;
  }
  .jsh-data th,.jsh-data td{
    padding:10px 8px;border-bottom:1px dashed var(--jsh-border);
    text-align:left;
  }
  .jsh-data th{
    color:var(--jsh-muted);font-weight:600;font-size:12px;
    text-transform:uppercase;letter-spacing:.06em;
  }
  .jsh-data td:nth-child(2){font-weight:700;color:var(--jsh-primary-dark);}
  .jsh-data td:nth-child(3){width:42%;}
 
  /* Bars */
  .jsh-bar{
    display:block;height:8px;border-radius:6px;background:#fde7ef;
    position:relative;overflow:hidden;
  }
  .jsh-bar::after{
    content:"";position:absolute;inset:0;width:0;
    background:linear-gradient(90deg,var(--jsh-primary),var(--jsh-accent));
    border-radius:6px;transition:width 1.2s ease;
  }
  .jsh-bar.jsh-animate::after{width:var(--w);}
 
  /* Callouts under tables */
  .jsh-callouts{
    list-style:none;padding:0;margin:14px 0 0;display:grid;gap:6px;
  }
  .jsh-callouts li{
    background:#fdf2f8;border-left:3px solid var(--jsh-primary);
    padding:8px 12px;border-radius:6px;font-size:14px;color:#374151;
  }
 
  .jsh-empower{border-top:4px solid var(--jsh-accent);}
 
  @media (max-width:520px){
    .jsh-section{padding:36px 14px;}
    .jsh-card{padding:18px;}
  }