/* =========================================================
   1. COLORS & GLOBAL SETTINGS
   Yaha se aap sabhi colors ek jagah se change kar sakte ho.
   Jahan bhi var(--green) likha hoga, wo primary orange color se aayega.
========================================================= */
:root {
  --green: #D95B18;      /* premium burnt orange primary */
  --green-2: #A9430D;    /* deep orange shade */
  --leaf: #FFFFFF;       /* white highlight */
  --gold: #FF8A1F;       /* bright orange accent for buttons, borders */
  --saffron: #FFFFFF;    /* white text highlight */
  --cream: #FFFFFF;      /* white background */
  --paper: #ffffff;      /* pure white */
  --ink: #000000;         /* normal text color */
  --muted: #000000;      /* muted/grey text ko black rakha gaya hai */
  --line: rgba(217, 91, 24, 0.22);   /* light orange border color */
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.12); /* box shadow used everywhere */
  --max: 1180px;          /* max width of content (page container) */
  --font-body: "Manrope", Arial, Helvetica, sans-serif;
  --font-heading: "Poppins", "Manrope", Arial, Helvetica, sans-serif;
}

/* =========================================================
   2. BASIC RESET
   Har browser ka default style hata ke ek jaisa banate hain
========================================================= */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth; /* jab link pe click karo to smoothly scroll ho */
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  font-weight: 500;
  line-height: 1.55;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button, input {
  font: inherit;
}

/* =========================================================
   3. MOUSE GLOW EFFECT (cursor ke piche golden glow)
========================================================= */
.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
  z-index: 1;
  translate: -50% -50%;
  opacity: 0.75;
}

/* =========================================================
   4. FALLING LEAVES ANIMATION (background decoration)
========================================================= */
.leaf-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.leaf-field span {
  position: absolute;
  width: 18px;
  height: 30px;
  border-radius: 0 80% 0 80%;
  background: var(--green);
  animation: leafFall 12s linear infinite;
}
/* har leaf ka position aur delay alag hai taki ek saath na girein */
.leaf-field span:nth-child(1) { left: 8%;  animation-delay: 0s; }
.leaf-field span:nth-child(2) { left: 24%; animation-delay: 3s; }
.leaf-field span:nth-child(3) { left: 49%; animation-delay: 6s; }
.leaf-field span:nth-child(4) { left: 73%; animation-delay: 1.5s; }
.leaf-field span:nth-child(5) { left: 91%; animation-delay: 4.5s; }

@keyframes leafFall {
  0%   { top: -12%; rotate: 0deg;   opacity: 0; }
  10%  { opacity: 0.75; }
  100% { top: 112%; rotate: 360deg; opacity: 0; }
}

/* =========================================================
   5. TOP HEADER + NAVBAR (Contact bar + Logo + Menu)
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

/* -- Top thin bar with address/email/phone/social icons -- */
.top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  padding: 8px max(18px, calc((100% - var(--max)) / 2 + 22px));
}
.top-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.top-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.top-social a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  transition: 0.2s;
}
.top-social a svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.top-social a:hover {
  background: #fff;
  color: #000000;
  transform: translateY(-2px);
}

/* -- Main navbar: Logo + Menu links + Button -- */
.navbar {
  max-width: var(--max);
  margin: auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  font-weight: 800;
  color: #000000;
  font-size: 22px;
  letter-spacing: 0.3px;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #fff;
  padding: 3px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.75), 0 12px 28px rgba(0, 0, 0, 0.13);
}
.brand small {
  display: block;
  color: var(--saffron);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a, .nav-item > a {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  position: relative;
}
/* menu link ke niche underline animation on hover */
.nav-links > a:after, .nav-item > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 0;
  background: var(--saffron);
  transition: 0.25s;
}
.nav-links > a:hover:after, .nav-links > a.active:after, .nav-item:hover > a:after, .nav-item.active > a:after {
  width: 100%;
}
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 0;
}
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-item > a:before {
  content: "";
  order: 2;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 230px;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s ease;
  z-index: 30;
}
.gallery-menu { min-width: 280px; }
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #000000;
  line-height: 1.35;
}
.dropdown-menu a:hover {
  background: rgba(249, 115, 22, 0.14);
}
.nav-item:hover .dropdown-menu, .nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* -- Buttons (navbar button + hero buttons share same base look) -- */
.nav-btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  transition: 0.25s;
}
.nav-btn {
  background: var(--gold);
  color: #000000;
  padding: 12px 16px;
}
.nav-btn:hover, .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* -- Mobile hamburger menu icon -- */
.menu-toggle {
  display: none;   /* mobile pe dikhega, desktop pe hidden */
  background: transparent;
  border: 0;
  width: 38px;
  height: 34px;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
}
.menu-toggle span {
  height: 2px;
  background: var(--green);
  display: block;
  border-radius: 2px;
}

/* =========================================================
   6. HERO SECTION (top wala bada banner image + slider)
========================================================= */
.hero {
  min-height: calc(100vh - 96px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--green);
  isolation: isolate;
  border-bottom: 6px solid var(--gold);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(249, 115, 22, 0.34);
  border-radius: 10px;
}

/* background slider images */
.hero-slider, .hero-img, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(24px) scale(1.04);
  transition: opacity .85s ease, transform 1.2s ease;
  filter: saturate(1.08) contrast(1.04);
}
.hero-img.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.hero-overlay {
  display: none;
}

/* hero text content (title, paragraph, buttons) */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0;
  padding: 86px 22px 145px;
  padding-left: max(28px, 6vw);
  padding-right: 24px;
  align-self: center;
  color: #fff;
}
.kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}
.kicker:before, .eyebrow:before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
.hero .kicker {
  display: flex;
  width: fit-content;
  margin: 0 0 12px;
  line-height: 1.4;
}

/* Sanskrit shloka box */
.shloka, .hero .shloka {
  display: block;
  width: fit-content;
  max-width: min(680px, 100%);
  margin: 0 0 20px;
  padding: 15px 20px 15px 22px;
  border-left: 5px solid var(--gold);
  background: var(--green);
  border-radius: 6px;
  font-family: "Noto Serif Devanagari", "Mangal", serif;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.8;
  color: var(--leaf);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(249, 115, 22, 0.18);
}
.hero .shloka:after {
  content: "";
  display: block;
  width: 82px;
  height: 2px;
  margin-top: 10px;
  background: var(--green);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  margin-top: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-text {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.55;
  color: #FFFFFF;
  margin: 0 0 24px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons inside hero */
.btn {
  padding: 15px 24px;
}
.btn.primary {
  background: var(--gold);
  color: #000000;
}
.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn.light {
  background: #fff;
  color: #000000;
}

/* floating small card ("By the Youth, For the Youth") */
.hero-card {
  position: absolute;
  right: 7vw;
  bottom: 58px;
  z-index: 2;
  width: min(330px, calc(100% - 44px));
  background: rgba(255, 255, 255, 0.94);
  border-left: 5px solid var(--gold);
  padding: 22px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  animation: floatCard 4s ease-in-out infinite;
}
.hero-card strong {
  display: block;
  color: #000000;
  font-size: 18px;
  margin-bottom: 7px;
}
.hero-card span {
  color: var(--muted);
  line-height: 1.5;
}
@keyframes floatCard {
  50% { translate: 0 -12px; }
}

/* =========================================================
   7. HERO SLIDER CONTROLS (prev/next buttons + dots + counter)
========================================================= */
.carousel-panel {
  position: absolute;
  left: max(28px, 6vw);
  bottom: 28px;
  z-index: 6;
  width: min(520px, calc(100% - 44px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px 14px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(249, 115, 22, 0.58);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
/* thin progress bar animation on top of the panel */
.carousel-panel:before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--green);
  transform-origin: left;
  animation: slideProgress 4.8s linear infinite;
}
@keyframes slideProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.slide-label { min-width: 0; }
.slide-label span {
  display: block;
  color: #000000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.slide-label strong {
  display: block;
  color: #000000;
  font-size: 16px;
  letter-spacing: 0.2px;
  margin: 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slide-label small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  max-width: 350px;
}

.carousel-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.hero-control {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--green);
  color: #000000;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s;
}
.hero-control:hover {
  background: var(--gold);
  color: #000000;
  transform: translateY(-2px);
}
.hero-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  padding: 0;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.hero-dots button.active {
  width: 26px;   /* active dot lamba ho jata hai */
  background: var(--green);
}

/* Homepage content alignment: hero carousel ke start ke saath sections align rahen */
#home {
  --home-edge: max(28px, 6vw);
}
#home .stats,
#home .split,
#home .events,
#home .gallery,
#home .page-section {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: var(--home-edge);
  padding-right: var(--home-edge);
}
#home .experience,
#home .speakers {
  padding-left: var(--home-edge);
  padding-right: var(--home-edge);
}
#home .experience .section-title,
#home .speakers .section-title,
#home .cards,
#home .speaker-grid,
#home .gallery-grid {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.ayurveda-voices {
  background: var(--green);
}
.voices-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: center;
}
.voices-photo {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(249, 115, 22, 0.48);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.14);
}
.voices-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.voices-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  pointer-events: none;
}
.voices-photo figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}
.voices-content .section-heading {
  max-width: 860px;
}
.voice-cards {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.voice-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
}
.voice-card:hover {
  transform: translateX(6px);
  border-color: #000000;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}
.voice-card b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #000000;
  font-size: 14px;
}
.voice-card h3 {
  margin: 0 0 8px;
  color: #000000;
  font-size: 22px;
}
.voice-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 980px) {
  .voices-layout {
    grid-template-columns: 1fr;
  }
  .voices-photo,
  .voices-photo img {
    min-height: 420px;
  }
}
@media (max-width: 600px) {
  .voices-photo,
  .voices-photo img {
    min-height: 320px;
  }
  .voices-photo figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 18px;
  }
  .voice-card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 20px;
  }
  .voice-card b {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .voice-card h3 {
    font-size: 19px;
  }
}

/* =========================================================
   8. TICKER (scrolling text strip: "AYURANSH FOUNDATION..." )
========================================================= */
.ticker {
  background: var(--green);
  overflow: hidden;
  color: #fff;
  font-weight: 900;
  letter-spacing: 2px;
}
.ticker-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  width: max-content;
  padding: 17px 0;
  animation: ticker 24s linear infinite;
}
.ticker span {
  position: relative;
}
/* har word ke baad ek chota dot dikhta hai */
.ticker span:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-left: 42px;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* =========================================================
   9. SECTION FADE-IN ANIMATION (jab scroll karke section dikhta hai)
========================================================= */
section {
  position: relative;
  z-index: 2;
}
.section-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.section-reveal.show {
  opacity: 1;
  transform: none;
}

/* =========================================================
   10. STATS SECTION (6 Events, 24 Sessions, etc.)
========================================================= */
.stats {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
  padding: 25px 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: 0.25s;
}
.stat:hover {
  transform: translateY(-8px);
  border-color: #000000;
}
.stat strong {
  display: block;
  color: #000000;
  font-size: 38px;
}
.stat span {
  color: var(--saffron);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
}

/* =========================================================
   11. SHARED SECTION CONTAINER WIDTH (About, Experience, Events, etc.)
========================================================= */
.split, .experience, .events, .speakers, .gallery, .cta, .footer-grid {
  max-width: var(--max);
  margin: auto;
  padding: 90px 22px;
}
.copy h2, .section-title h2, .cta h2 {
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.05;
  margin: 12px 0 20px;
  color: #000000;
  letter-spacing: 0;
}
.copy p, .card p, .event-list p, .speaker-grid p, .cta p, footer p {
  color: var(--muted);
  line-height: 1.75;
}

/* =========================================================
   12. ABOUT SECTION (two column: text + image)
========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.mini-grid div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
}
.mini-grid b {
  display: block;
  color: #000000;
}
.mini-grid small {
  color: var(--muted);
}
.image-panel {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
  position: relative;
}
.image-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(249, 115, 22, 0.7);
  border-radius: 4px;
  pointer-events: none;
}
.image-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
/* mouse move karne pe halka 3D tilt effect (script.js se control hota hai) */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}

/* =========================================================
   13. EXPERIENCE SECTION (4 cards: Expo, Clinical, Startup, Swasth Talk)
========================================================= */
.experience, .speakers {
  background: #fff;
  max-width: none;
}
.experience .section-title, .speakers .section-title {
  max-width: var(--max);
  margin: 0 auto 34px;
}
.cards, .speaker-grid, .gallery-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  gap: 22px;
}
.cards {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 28px;
  min-height: 245px;
  transition: 0.28s;
  position: relative;
  overflow: hidden;
}
.card:before {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.22);
}
.card span {
  color: var(--saffron);
  font-weight: 900;
}
.card h3 {
  font-size: 22px;
  color: #000000;
  margin: 28px 0 10px;
}
.card:hover {
  transform: translateY(-10px);
  background: var(--green);
  color: #fff;
}
.card:hover h3, .card:hover p {
  color: #fff;
}
.experience .card {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}
.experience .cards {
  gap: 28px;
}
.experience .card:before {
  display: none;
}
.experience .card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom: 4px solid var(--gold);
  transition: 0.3s ease;
}
.experience .card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px;
}
.experience .card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.15);
  color: #000000;
  font-size: 12px;
  letter-spacing: 1px;
}
.experience .card h3 {
  font-size: 25px;
  margin: 18px 0 10px;
}
.experience .card p {
  margin: 0;
}
.experience .card small {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: #000000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.experience .card:hover {
  background: #fff;
  color: var(--ink);
  border-color: #000000;
}
.experience .card:hover > img {
  transform: scale(1.04);
}
.experience .card:hover h3 {
  color: #000000;
}
.experience .card:hover p {
  color: var(--muted);
}

/* =========================================================
   14. EVENTS SECTION (Upcoming / Past tabs + list)
========================================================= */
.tabs {
  display: flex;
  gap: 10px;
  margin: 26px 0;
}
.tab {
  border: 1px solid var(--gold);
  background: #fff;
  color: #000000;
  padding: 13px 22px;
  border-radius: 5px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}
.tab.active {
  background: var(--green);
  color: #fff;
  border-color: #000000;
}
.event-list {
  display: none;   /* JS isko dikhata/chupata hai jab tab click ho */
  gap: 14px;
}
.event-list.active {
  display: grid;
}
.event-list article {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px 20px;
  transition: 0.25s;
}
.event-list article:hover {
  transform: translateX(8px);
  border-color: var(--saffron);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
}
time {
  background: var(--green);
  color: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 10px 6px;
  text-transform: uppercase;
  font-size: 12px;
}
time b {
  display: block;
  font-size: 28px;
}
.event-list h3 {
  margin: 0;
  color: #000000;
}
.event-list span {
  color: var(--saffron);
  font-weight: 900;
}

/* =========================================================
   15. SPEAKERS SECTION (round photo cards)
========================================================= */
.speaker-grid {
  grid-template-columns: repeat(3, 1fr);
}
.speaker-grid article {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 22px;
  text-align: center;
  transition: 0.25s;
}
.speaker-grid article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.speaker-grid img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 18px;
  border: 5px solid #fff;
  box-shadow: 0 0 0 2px var(--gold);
}
.speaker-grid h3 {
  color: #000000;
  margin: 0 0 8px;
}

/* =========================================================
   16. GALLERY SECTION (photo grid)
========================================================= */
.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 245px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transition: 0.35s;
}
.gallery-grid img:first-child {
  grid-row: span 2;   /* pehli photo bada size lete hai */
}
.gallery-grid img:hover {
  transform: scale(1.035);
  filter: saturate(1.12);
}

/* =========================================================
   17. CTA STRIP (agar future me use ho - currently unused ho sakta hai)
========================================================= */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 0;
  max-width: none;
  padding-left: calc((100% - var(--max)) / 2 + 22px);
  padding-right: calc((100% - var(--max)) / 2 + 22px);
}
.cta h2 { color: #fff; }
.cta p { color: #FFFFFF; max-width: 650px; }
.cta .eyebrow { color: #000000; }

/* =========================================================
   18. FOOTER
========================================================= */
.site-footer {
  position: relative;
  z-index: 2;
  background: var(--green);
  color: #FFFFFF;
  overflow: hidden;
}
.site-footer:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  pointer-events: none;
}

/* top row: heading + "Visit Website" button */
.footer-top {
  position: relative;
  max-width: var(--max);
  margin: auto;
  padding: 54px 22px 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.footer-top span {
  display: block;
  color: #000000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-top h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

/* four columns: Brand / Contact / Quick Links / Join Movement */
.site-footer .footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1.15fr 0.75fr 1fr;
  gap: 32px;
  max-width: var(--max);
  margin: auto;
  padding: 42px 22px 44px;
}
.site-footer .footer-grid.compact-footer{grid-template-columns:1.35fr 1fr .8fr}
.footer-grid h3, .footer-grid h4 { color: #fff; }
.footer-grid a { display: block; color: #FFFFFF; margin: 8px 0; }
.footer-grid a:hover { color: #000000; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}
.footer-logo img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 0 0 2px var(--gold), 0 16px 34px rgba(0, 0, 0, 0.18);
}
.footer-logo h3 { margin: 0; color: #fff; font-size: 24px; }
.footer-logo small {
  display: block;
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}

.footer-grid h4 {
  position: relative;
  color: #fff;
  margin: 0 0 20px;
  padding-bottom: 12px;
  font-size: 17px;
}
.footer-grid h4:after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 46px; height: 2px;
  background: var(--gold);
}

.site-footer p, .site-footer a { color: rgba(255, 255, 255, 0.76); line-height: 1.7; }
.footer-brand p, .footer-note p { margin: 0; max-width: 360px; }
.site-footer a { display: block; transition: 0.2s; }
.site-footer a:hover { color: #000000; transform: translateX(4px); }

/* round social icons in footer */
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  padding: 0;
  border: 1px solid rgba(249, 115, 22, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.social-links a:hover {
  background: var(--gold);
  color: #000000;
  transform: translateY(-3px);
}
.social-links b {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #000000;
}
.social-links b svg { width: 15px; height: 15px; fill: currentColor; }

/* contact rows (address / email / phone) */
.contact-row {
  display: grid !important;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  align-items: start;
  margin: 0 0 14px !important;
}
.contact-row span {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.16);
  color: #000000;
  font-size: 12px;
  font-weight: 900;
}
.contact-row svg { width: 15px; height: 15px; fill: currentColor; }

.footer-links a {
  position: relative;
  margin: 9px 0;
  padding-left: 16px;
}
.footer-links a:before {
  content: "";
  position: absolute;
  left: 0; top: 0.85em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.footer-btn, .whatsapp-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 13px 20px;
  border-radius: 5px;
  background: var(--gold);
  color: #000000 !important;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.7px;
}
.footer-btn:hover, .whatsapp-link:hover {
  background: #fff;
  transform: translateY(-3px) !important;
}
.whatsapp-link {
  width: 54px; height: 54px;
  padding: 0;
  background: #F97316;
  color: #fff !important;
}
.whatsapp-link svg { width: 28px; height: 28px; fill: currentColor; }

.copyright {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 22px;
  color: #FFFFFF;
  font-size: 13px;
}
.copyright a { color: #000000; margin: 0; }

/* Compact redesigned footer */
.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(260px, 1fr) minmax(270px, 0.9fr);
  gap: 44px;
  max-width: var(--max);
  margin: auto;
  padding: 48px 22px 42px;
}
.footer-main:before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 1px;
  background: var(--green);
}
.footer-main .footer-logo {
  margin-bottom: 16px;
}
.footer-main .footer-logo img {
  width: 62px;
  height: 62px;
  padding: 5px;
}
.footer-main .footer-logo h3 {
  font-size: 23px;
}
.footer-main .footer-logo small {
  font-size: 10px;
}
.footer-main h4 {
  position: relative;
  color: #fff;
  margin: 0 0 18px;
  padding-bottom: 11px;
  font-size: 16px;
}
.footer-main h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  background: var(--gold);
}
.footer-main p {
  max-width: 370px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}
.footer-pill-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.footer-main .social-links {
  gap: 9px;
  margin-top: 20px;
}
.footer-main .social-links a {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.10);
}
.footer-main .social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.footer-main .contact-row {
  grid-template-columns: 28px 1fr;
  gap: 11px;
  margin: 0 0 13px !important;
  padding: 8px 0;
  font-size: 13.5px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-main .contact-row span {
  width: 30px;
  height: 30px;
  font-size: 10px;
}
.footer-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.footer-link-grid a {
  margin: 0;
  padding: 8px 10px 8px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 13.5px;
  line-height: 1.35;
}
.footer-link-grid a:before {
  left: 8px;
  top: 1.08em;
  width: 5px;
  height: 5px;
}
.footer-link-grid a:hover {
  background: rgba(249, 115, 22, 0.14);
}
.site-footer .copyright {
  padding: 15px 22px;
  font-size: 12px;
}

/* =========================================================
   19. FLOATING WHATSAPP BUTTON (bottom-right corner)
========================================================= */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  padding: 0;
  border-radius: 999px;
  background: #F97316;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 38px rgba(249, 115, 22, 0.34);
  transition: 0.25s;
}
.whatsapp-float svg { width: 26px; height: 26px; fill: currentColor; }
.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(249, 115, 22, 0.46);
}
.whatsapp-float.is-ready {
  animation: whatsappPulse 1.8s ease-in-out infinite;
}
@keyframes whatsappPulse {
  50% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0.14), 0 16px 38px rgba(249, 115, 22, 0.34); }
}

/* =========================================================
   20. RESPONSIVE / MOBILE STYLES
   Yaha screen size ke hisaab se layout change hota hai.
========================================================= */

/* Tablet aur usse chota screen (1100px se kam) */
@media (max-width: 1100px) {
  .nav-links, .nav-btn { display: none; }
  .menu-toggle { display: flex; }
  .navbar.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 22px;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .navbar.open .nav-item {
    display: grid;
    padding: 0;
    gap: 8px;
  }
  .navbar.open .nav-item > a:after,
  .navbar.open .nav-links > a:after {
    display: none;
  }
  .navbar.open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    box-shadow: none;
    border-radius: 6px;
    background: rgba(249, 115, 22, 0.08);
  }
  .navbar.open .dropdown-menu a {
    padding: 9px 10px;
    font-size: 13px;
  }
  .stats, .cards, .speaker-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img:first-child { grid-row: auto; }
  .cta { display: block; }
  .cta .btn { margin-top: 18px; }

  .hero-content { padding-bottom: 150px; }
  .carousel-panel { right: 22px; }
  .slide-label strong { font-size: 16px; }

  .footer-top { display: block; }
  .footer-top .footer-btn { margin-top: 20px; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 42px 22px 34px; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-link-grid { grid-template-columns: 1fr 1fr; }
  .copyright { display: block; text-align: center; }
  .copyright span { display: block; margin: 4px 0; }

  .top-line { align-items: flex-start; }
  .top-contact { gap: 8px 18px; }
  .top-social { padding-top: 1px; }
}

/* Mobile phone screen (600px se kam) */
@media (max-width: 600px) {
  #home { --home-edge: 18px; }
  .top-line { display: none; }
  .brand span { font-size: 18px; }
  .hero { min-height: 86vh; }
  .hero-content { padding: 70px 18px 150px; padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: 40px; }
  .stats, .cards, .speaker-grid, .gallery-grid, .footer-grid, .mini-grid { grid-template-columns: 1fr; }
  .event-list article { grid-template-columns: 70px 1fr; }
  .event-list span { display: none; }
  .split, .experience, .events, .speakers, .gallery, .cta, .footer-grid { padding: 66px 18px; }
  .image-panel img { height: 340px; }
.cursor-glow { display: none; }

  .hero:after { inset: 10px; }
  .carousel-panel { display: block; bottom: 20px; width: calc(100% - 36px); left: 18px; }
  .carousel-actions { margin-top: 12px; justify-content: space-between; }
  .shloka, .hero .shloka { font-size: 16px; padding: 12px 14px; max-width: 100%; line-height: 1.65; margin-bottom: 16px; }
  .hero .kicker { font-size: 10.5px; }
  .slide-label small { max-width: none; }

  .footer-top { padding: 44px 18px 28px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; padding: 36px 18px 34px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 38px 18px 30px; }
  .footer-brand { grid-column: auto; }
  .footer-link-grid { grid-template-columns: 1fr 1fr; gap: 7px 14px; }
  .footer-main .social-links { margin-top: 18px; }
  .site-footer .copyright { padding: 14px 18px; }
  .whatsapp-float { right: 16px; bottom: 16px; }
}

/* Agar user ke system mein "reduce motion" setting ON hai,
   to sab animations band kar do (accessibility ke liye) */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .section-reveal { opacity: 1; transform: none; }
}

/* Inner pages */
.nav-links a.active{color:#000000}
.page-hero{position:relative;min-height:68vh;display:grid;align-items:end;overflow:hidden;background:var(--green);isolation:isolate}
.page-hero:before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.42);z-index:1}
.page-hero img{position:absolute;left:0;right:0;top:10px;bottom:0;width:100%;height:calc(100% - 10px);object-fit:cover;object-position:center top;opacity:.82;filter:saturate(1.08) contrast(1.04)}
.page-hero .page-hero-content{position:relative;z-index:2;width:min(var(--max),100%);margin:0 auto;padding:110px 22px 64px;color:#fff}
.page-hero h1{max-width:850px;margin:12px 0 18px;font-size:clamp(42px,6vw,76px);line-height:1;letter-spacing:0}
.page-hero p{max-width:700px;margin:0;color:#FFFFFF;font-size:18px;line-height:1.7}
.breadcrumb{display:flex;gap:10px;align-items:center;color:#000000;font-size:12px;font-weight:900;letter-spacing:1.6px;text-transform:uppercase}
.page-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.page-section{position:relative;z-index:2;max-width:var(--max);margin:auto;padding:86px 22px}
.page-section.compact{padding-top:54px;padding-bottom:54px}
.section-kicker{display:block;color:#000000;font-size:12px;font-weight:900;letter-spacing:2px;text-transform:uppercase;margin-bottom:10px}
.section-heading{max-width:780px;margin:0 0 28px;color:#000000;font-size:clamp(30px,4vw,50px);line-height:1.06;letter-spacing:0}
.lead{max-width:790px;color:var(--muted);font-size:17px;line-height:1.85}
.feature-band{background:#fff}
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.feature-card,.profile-card,.initiative-card,.contact-card{background:#fff;border:1px solid var(--line);border-radius:8px;padding:26px;box-shadow:0 14px 34px rgba(0,0,0,.08);transition:.25s}
.feature-card:hover,.profile-card:hover,.initiative-card:hover,.contact-card:hover{transform:translateY(-6px);border-color:#000000;box-shadow:var(--shadow)}
.feature-card b,.initiative-card b{display:inline-grid;place-items:center;width:42px;height:42px;margin-bottom:18px;border-radius:50%;background:var(--green);color:#000000}
.feature-card h3,.profile-card h3,.initiative-card h3,.contact-card h3{margin:0 0 10px;color:#000000}
.feature-card p,.profile-card p,.initiative-card p,.contact-card p{margin:0;color:var(--muted);line-height:1.7}
.wide-panel{display:grid;grid-template-columns:1.05fr .95fr;gap:34px;align-items:center;background:#fff;border:1px solid var(--line);border-radius:8px;padding:28px;box-shadow:0 18px 42px rgba(0,0,0,.08)}
.wide-panel img{width:100%;height:430px;object-fit:cover;border-radius:7px}
.quote-strip{background: var(--green);color:#fff}
.quote-strip .page-section{display:grid;grid-template-columns:1fr auto;gap:28px;align-items:center}
.quote-strip h2{margin:0;max-width:780px;font-size:clamp(28px,4vw,48px);line-height:1.08;letter-spacing:0}
.quote-strip p{margin:12px 0 0;color:#FFFFFF;line-height:1.7}
.timeline{display:grid;gap:14px}
.timeline article{display:grid;grid-template-columns:96px 1fr auto;gap:18px;align-items:center;background:#fff;border:1px solid var(--line);border-radius:8px;padding:18px 20px;box-shadow:0 12px 30px rgba(0,0,0,.06);transition:.25s}
.timeline article:hover{border-color:#000000;transform:translateX(6px)}
.timeline h3{margin:0;color:#000000}
.timeline p{margin:5px 0 0;color:var(--muted);line-height:1.55}
.timeline .tag{color:#000000;font-weight:900;text-transform:uppercase;font-size:12px}
.event-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.event-card{position:relative;min-height:360px;display:flex;align-items:end;overflow:hidden;border-radius:8px;background:var(--green);box-shadow:var(--shadow)}
.event-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:.35s}
.event-card:after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.42)}
.event-card div{position:relative;z-index:1;padding:24px;color:#fff}
.event-card span{color:#000000;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:1px}
.event-card h3{margin:8px 0 8px;font-size:24px}
.event-card p{margin:0;color:#FFFFFF;line-height:1.55}
.event-card:hover img{transform:scale(1.06)}
.photo-mosaic{columns:3 260px;column-gap:18px}
.photo-mosaic figure{break-inside:avoid;margin:0 0 18px;position:relative;overflow:hidden;border-radius:8px;background:#fff;box-shadow:0 12px 30px rgba(0,0,0,.10)}
.photo-mosaic img{width:100%;height:auto}
.photo-mosaic figcaption{padding:12px 14px;color:#000000;font-weight:800;font-size:13px}
.photo-mosaic figcaption small{display:block;margin-top:4px;color:var(--muted);font-weight:700}

/* Achievements page */
.achievements-hero:after{content:"";position:absolute;inset:0;z-index:1;background:rgba(0,0,0,.42)}
.achievement-stats{margin-top:-38px;position:relative;z-index:4;background:#fff;border:1px solid var(--line);border-radius:8px;box-shadow:0 20px 48px rgba(0,0,0,.14)}
.achievement-stats .stat{background:#fff;border-color:rgba(249,115,22,.24)}
.achievements-intro{padding-top:76px}
.achievement-panel{overflow:hidden}
.achievement-panel .section-heading{max-width:840px}
.achievement-badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.achievement-badges span{display:inline-flex;align-items:center;min-height:38px;padding:9px 13px;border:1px solid rgba(249,115,22,.36);border-radius:999px;background:#FFFFFF;color:#000000;font-size:13px;font-weight:900}
.achievement-highlight-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.achievement-highlight{position:relative;min-height:250px;padding:28px 24px;border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:0 14px 34px rgba(0,0,0,.08);overflow:hidden;transition:.25s}
.achievement-highlight:before{content:"";position:absolute;inset:0 0 auto;height:5px;background:var(--gold)}
.achievement-highlight:hover{transform:translateY(-6px);border-color:#000000;box-shadow:var(--shadow)}
.achievement-highlight b{display:block;margin-bottom:34px;color:rgba(0,0,0,.13);font-size:54px;line-height:.8}
.achievement-highlight h3{margin:0 0 10px;color:#000000;font-size:22px}
.achievement-highlight p{margin:0;color:var(--muted);line-height:1.65}
.achievement-timeline article>span{display:grid;place-items:center;min-height:54px;border-radius:6px;background:var(--green);color:#000000;font-size:13px;font-weight:900;text-align:center}
.achievement-events .event-card{min-height:420px}
.achievement-mosaic img{filter:saturate(1.06) contrast(1.02)}
.achievement-gallery-section{padding-top:60px}
.achievement-cta .btn{white-space:nowrap}
@media (max-width:1100px){.achievement-highlight-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:600px){.achievement-stats{margin-top:0;border-radius:0;border-left:0;border-right:0}.achievement-highlight-grid{grid-template-columns:1fr}.achievement-highlight{min-height:0}.achievement-badges span{width:100%;justify-content:center}.achievement-events .event-card{min-height:360px}}
.gallery-tabs{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 26px}
.gallery-tabs a,.inline-link{display:inline-flex;align-items:center;width:fit-content;border-radius:6px;font-weight:900}
.gallery-tabs a{padding:10px 13px;border:1px solid var(--line);background:#fff;color:#000000}
.gallery-tabs a.active,.gallery-tabs a:hover{background:var(--green);color:#fff;border-color:#000000}
.inline-link{margin-top:8px;color:#000000;font-size:13px}
.inline-link:hover{color:#000000}
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.committee-sections{display:grid;gap:46px;margin-top:34px}
.committee-section-title{position:relative;margin:0 0 22px;padding-bottom:12px;color:#000000;font-size:clamp(22px,2.8vw,34px);line-height:1.15;text-align:center;letter-spacing:0}
.committee-section-title:after{content:"";position:absolute;left:50%;bottom:0;width:76px;height:3px;border-radius:999px;background:var(--gold);transform:translateX(-50%)}
.profile-card{min-height:178px;text-align:center}
.profile-photo{width:132px;height:132px;margin:0 auto 18px;border-radius:50%;object-fit:cover;object-position:top;background:#fff;border:5px solid #fff;box-shadow:0 0 0 2px var(--gold),0 12px 28px rgba(0,0,0,.16)}
.profile-card span{display:block;color:#000000;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:1px;margin-bottom:8px}
.profile-card h3{font-size:19px}
.initiative-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.initiative-card{display:grid;grid-template-columns:64px 1fr;gap:18px;align-items:start}
.initiative-card b{width:64px;height:64px;margin:0;font-size:22px}

/* Initiatives page */
.initiatives-hero:after{content:"";position:absolute;inset:0;z-index:1;background:rgba(0,0,0,.42)}
.initiatives-intro .lead{margin-bottom:34px}
.initiative-image-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.initiative-image-card{overflow:hidden;background:#fff;border:1px solid var(--line);border-radius:8px;box-shadow:0 16px 38px rgba(0,0,0,.10);transition:.25s}
.initiative-image-card:hover{transform:translateY(-7px);border-color:#000000;box-shadow:var(--shadow)}
.initiative-image-card img{width:100%;height:280px;object-fit:cover;object-position:center top;transition:.35s}
.initiative-image-card:hover img{transform:scale(1.045)}
.initiative-card-body{padding:26px}
.initiative-card-body span{display:block;margin-bottom:10px;color:#000000;font-size:12px;font-weight:900;letter-spacing:1.6px;text-transform:uppercase}
.initiative-card-body h3{margin:0 0 12px;color:#000000;font-size:26px;line-height:1.15}
.initiative-card-body p{margin:0;color:var(--muted);line-height:1.7}
.initiatives-process{background:#fff}
.initiative-step-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.initiative-step-grid article{min-height:220px;padding:24px;border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:0 14px 34px rgba(0,0,0,.08);transition:.25s}
.initiative-step-grid article:hover{transform:translateY(-6px);border-color:#000000;box-shadow:var(--shadow)}
.initiative-step-grid b{display:inline-grid;place-items:center;width:48px;height:48px;margin-bottom:18px;border-radius:50%;background:var(--green);color:#000000}
.initiative-step-grid h3{margin:0 0 10px;color:#000000;font-size:22px}
.initiative-step-grid p{margin:0;color:var(--muted);line-height:1.65}
.initiative-membership{align-items:stretch}
.initiative-membership>div{align-self:center}
.initiative-badges{display:flex;flex-wrap:wrap;gap:10px;margin:22px 0 4px}
.initiative-badges span{display:inline-flex;align-items:center;min-height:38px;padding:9px 13px;border:1px solid rgba(249,115,22,.36);border-radius:999px;background:#FFFFFF;color:#000000;font-size:13px;font-weight:900}
.initiative-membership img{height:100%;min-height:420px}
.contact-layout{display:grid;grid-template-columns:.85fr 1.15fr;gap:28px;align-items:start}
.contact-stack{display:grid;gap:16px}
.contact-card a{color:#000000;font-weight:800}
.form-shell{background:#fff;border:1px solid var(--line);border-radius:8px;padding:26px;box-shadow:0 14px 34px rgba(0,0,0,.08)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-shell label{display:grid;gap:7px;color:#000000;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:1px}
.form-shell input,.form-shell textarea{width:100%;border:1px solid var(--line);border-radius:6px;padding:13px 14px;color:var(--ink);background:#FFFFFF;outline:none}
.form-shell textarea{min-height:140px;resize:vertical}
.form-shell input:focus,.form-shell textarea:focus{border-color:#000000;box-shadow:0 0 0 3px rgba(249,115,22,.16)}
.form-shell .full{grid-column:1/-1}
.contact-form-alert{margin:0 0 16px;padding:12px 14px;border-radius:7px;background:#FFFFFF;color:#000000;font-weight:800}

/* Swasth Talk appointment page */
.swasth-hero:after{content:"";position:absolute;inset:0;z-index:1;background:rgba(0,0,0,.42)}
.swasth-intro{overflow:hidden}
.swasth-points{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.swasth-points span{display:inline-flex;align-items:center;min-height:38px;padding:9px 13px;border:1px solid rgba(249,115,22,.36);border-radius:999px;background:#FFFFFF;color:#000000;font-size:13px;font-weight:900}
.swasth-doctor-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.swasth-doctor-card{display:flex;flex-direction:column;overflow:hidden;background:#fff;border:1px solid var(--line);border-radius:8px;box-shadow:0 16px 38px rgba(0,0,0,.10);transition:.25s}
.swasth-doctor-card:hover{transform:translateY(-7px);border-color:#000000;box-shadow:var(--shadow)}
.swasth-doctor-card>img{width:100%;height:230px;object-fit:cover;object-position:top;background:#FFFFFF}
.swasth-doctor-content{display:flex;flex:1;flex-direction:column;padding:22px;text-align:center}
.swasth-doctor-content>span{display:block;margin-bottom:9px;color:#000000;font-size:12px;font-weight:900;letter-spacing:1.2px;text-transform:uppercase}
.swasth-doctor-content h3{margin:0 0 8px;color:#000000;font-size:23px;line-height:1.15}
.swasth-doctor-content p{margin:0 0 16px;color:var(--muted);line-height:1.55}
.swasth-doctor-content dl{display:grid;gap:10px;margin:0 0 20px;text-align:left}
.swasth-doctor-content dl div{padding:11px 12px;border-radius:7px;background:#FFFFFF;border:1px solid var(--line)}
.swasth-doctor-content dt{color:#000000;font-size:11px;font-weight:900;letter-spacing:.8px;text-transform:uppercase}
.swasth-doctor-content dd{margin:4px 0 0;color:var(--muted);font-size:14px;line-height:1.45}
.doctor-card-action{display:flex;justify-content:center;margin-top:auto}
.doctor-card-action .btn{width:100%;justify-content:center}
.swasth-booking-shell{display:grid;grid-template-columns:.82fr 1.18fr;gap:28px;align-items:start}
.swasth-booking-copy{position:sticky;top:120px}
.selected-doctor-note{display:grid;grid-template-columns:82px 1fr;gap:14px;align-items:center;margin-top:24px;padding:16px;border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:0 14px 34px rgba(0,0,0,.08)}
.selected-doctor-note img{width:82px;height:82px;object-fit:cover;object-position:top;border-radius:50%;border:4px solid #fff;box-shadow:0 0 0 2px var(--gold)}
.selected-doctor-note small{display:block;color:#000000;font-size:11px;font-weight:900;letter-spacing:1px;text-transform:uppercase}
.selected-doctor-note strong{display:block;margin:4px 0;color:#000000;font-size:20px}
.selected-doctor-note span{color:var(--muted);line-height:1.45}
.swasth-appointment-form h3{margin:0 0 10px;color:#000000;font-size:28px}
.swasth-appointment-form p{color:var(--muted);line-height:1.6}

/* Ayuransh Wellness Center page */
.wellness-hero:after{content:"";position:absolute;inset:0;z-index:1;background:rgba(0,0,0,.42)}
.wellness-hero img{object-position:center 30%}
.wellness-intro-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:34px;align-items:center}
.wellness-copy{padding-right:16px}
.wellness-info-cards{display:grid;grid-template-columns:1fr 1.2fr;gap:14px;margin-top:26px}
.wellness-info-cards article{padding:18px;border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:0 12px 30px rgba(0,0,0,.08)}
.wellness-info-cards strong{display:block;margin-bottom:8px;color:#000000;font-size:12px;font-weight:900;letter-spacing:1px;text-transform:uppercase}
.wellness-info-cards a,.wellness-info-cards span{color:#000000;font-weight:900;line-height:1.45}
.wellness-photo-stack{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:end}
.wellness-photo-stack img{width:100%;height:520px;object-fit:cover;object-position:top;border-radius:8px;box-shadow:var(--shadow)}
.wellness-photo-stack img:nth-child(2){height:430px}
.wellness-treatment-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.wellness-treatment-card{min-height:236px;padding:24px;border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:0 14px 34px rgba(0,0,0,.08);transition:.25s}
.wellness-treatment-card:hover{transform:translateY(-6px);border-color:#000000;box-shadow:var(--shadow)}
.wellness-treatment-card b{display:inline-grid;place-items:center;width:46px;height:46px;margin-bottom:20px;border-radius:50%;background:var(--green);color:#000000}
.wellness-treatment-card h3{margin:0 0 10px;color:#000000;font-size:21px;line-height:1.15}
.wellness-treatment-card p{margin:0;color:var(--muted);line-height:1.62}
.wellness-why-panel{overflow:hidden}
.wellness-check-list{display:grid;gap:12px}
.wellness-check-list p{position:relative;margin:0;padding:14px 16px 14px 44px;border:1px solid var(--line);border-radius:8px;background:#FFFFFF;color:#000000;font-weight:900;line-height:1.45}
.wellness-check-list p:before{content:"";position:absolute;left:16px;top:17px;width:14px;height:8px;border-left:3px solid var(--gold);border-bottom:3px solid var(--gold);transform:rotate(-45deg)}
.wellness-team-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.wellness-team-grid article{padding:22px;border:1px solid var(--line);border-radius:8px;background:#fff;text-align:center;box-shadow:0 14px 34px rgba(0,0,0,.08);transition:.25s}
.wellness-team-grid article:hover{transform:translateY(-6px);border-color:#000000;box-shadow:var(--shadow)}
.wellness-team-grid img{width:128px;height:128px;margin:0 auto 18px;border-radius:50%;object-fit:cover;object-position:top;background:#fff;border:5px solid #fff;box-shadow:0 0 0 2px var(--gold)}
.wellness-team-grid span{display:block;margin-bottom:8px;color:#000000;font-size:12px;font-weight:900;letter-spacing:1px;text-transform:uppercase}
.wellness-team-grid h3{margin:0 0 10px;color:#000000;font-size:20px;line-height:1.15}
.wellness-team-grid p{margin:0;color:var(--muted);line-height:1.6}
.wellness-vision-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.wellness-vision-grid article{padding:34px;border-radius:8px;background: var(--green);color:#fff;box-shadow:var(--shadow)}
.wellness-vision-grid h2{margin:0 0 14px;font-size:clamp(26px,3vw,38px);line-height:1.1;letter-spacing:0}
.wellness-vision-grid p{margin:0;color:#FFFFFF;line-height:1.75;font-size:17px}
.wellness-brochure-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.wellness-brochure-grid figure{margin:0;overflow:hidden;border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:0 14px 34px rgba(0,0,0,.08);transition:.25s}
.wellness-brochure-grid figure:hover{transform:translateY(-6px);border-color:#000000;box-shadow:var(--shadow)}
.wellness-brochure-grid img{width:100%;height:420px;object-fit:cover;object-position:top}
.wellness-brochure-grid figcaption{padding:13px 14px;color:#000000;font-size:14px;font-weight:900;text-align:center}
.wellness-contact-card{display:grid;grid-template-columns:1fr auto;gap:28px;align-items:center;padding:34px;border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:0 18px 42px rgba(0,0,0,.10)}
.wellness-contact-card .section-heading{margin-bottom:12px}
.wellness-contact-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.map-panel{min-height:360px;display:grid;place-items:center;padding:30px;border-radius:8px;background: var(--green);color:#fff;text-align:center}
.navbar .nav-links{gap:18px}
.map-panel h3{margin:0 0 10px;font-size:32px}
.map-panel p{max-width:540px;margin:0 0 18px;color:#FFFFFF;line-height:1.7}
@media (max-width:1200px){.wellness-treatment-grid,.wellness-team-grid,.wellness-brochure-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:1100px){.initiative-step-grid,.swasth-doctor-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:920px){.feature-grid,.event-cards,.team-grid{grid-template-columns:1fr 1fr}.wide-panel,.quote-strip .page-section,.contact-layout,.swasth-booking-shell,.wellness-intro-grid,.wellness-contact-card{grid-template-columns:1fr}.wide-panel img{height:330px}.initiative-grid,.initiative-image-grid{grid-template-columns:1fr}.initiative-membership img{min-height:0;height:330px}.swasth-booking-copy{position:static}.wellness-photo-stack img,.wellness-photo-stack img:nth-child(2){height:420px}.wellness-treatment-grid,.wellness-team-grid,.wellness-vision-grid,.wellness-brochure-grid{grid-template-columns:1fr 1fr}.wellness-contact-actions{justify-content:flex-start}}
@media (max-width:600px){.page-hero{min-height:60vh}.page-hero .page-hero-content{padding:86px 18px 44px}.page-section{padding:62px 18px}.feature-grid,.event-cards,.team-grid,.form-grid,.initiative-step-grid,.swasth-doctor-grid,.wellness-photo-stack,.wellness-treatment-grid,.wellness-team-grid,.wellness-vision-grid,.wellness-info-cards,.wellness-brochure-grid{grid-template-columns:1fr}.timeline article{grid-template-columns:72px 1fr}.timeline .tag{display:none}.initiative-card{grid-template-columns:1fr}.initiative-image-card img{height:230px}.initiative-card-body{padding:22px}.initiative-card-body h3{font-size:22px}.initiative-badges span,.swasth-points span{width:100%;justify-content:center}.selected-doctor-note{grid-template-columns:1fr;text-align:center;justify-items:center}.wellness-photo-stack img,.wellness-photo-stack img:nth-child(2){height:auto}.wellness-brochure-grid img{height:auto}.wellness-contact-card{padding:24px}.wellness-contact-actions .btn{width:100%;justify-content:center}.quote-strip .page-section{padding-top:54px;padding-bottom:54px}}

/* Header and footer polish */
.site-header {
  background: var(--green);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.10);
}
.site-header:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--green);
  opacity: 0.65;
}
.top-line {
  min-height: 42px;
  background: var(--green);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 7px;
  padding-bottom: 7px;
}
.top-contact {
  gap: 10px 18px;
}
.top-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}
.top-mini svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: var(--gold);
}
.top-mini:hover {
  color: #fff;
}
.top-social a {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}
.navbar {
  max-width: calc(var(--max) + 44px);
  min-height: 82px;
  padding: 12px 22px;
  gap: 18px;
}
.brand {
  gap: 13px;
  min-width: 220px;
}
.brand img {
  width: 58px;
  height: 58px;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.54), 0 12px 28px rgba(0, 0, 0, 0.13);
}
.brand span {
  line-height: 1.05;
}
.brand small {
  color: #000000;
  letter-spacing: 1px;
}
.nav-links {
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.nav-links a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 6px;
  color: #000000;
  font-size: 13px;
  line-height: 1.15;
  transition: 0.22s ease;
}
.nav-links > a:after,
.nav-item > a:after {
  display: none;
}
.nav-links a:hover,
.nav-links a.active,
.nav-item:hover > a,
.nav-item.active > a {
  background: rgba(249, 115, 22, 0.10);
  color: #000000;
}
.nav-links a.active,
.nav-item.active > a {
  box-shadow: inset 0 -2px 0 var(--gold);
}
.nav-item {
  padding: 0;
}
.nav-item > a:before {
  width: 6px;
  height: 6px;
  margin-left: 2px;
  opacity: 0.75;
}
.dropdown-menu {
  top: calc(100% + 12px);
  padding: 8px;
  border-radius: 8px;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
}
.dropdown-menu:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 24px;
  width: 14px;
  height: 14px;
  rotate: 45deg;
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.dropdown-menu a {
  position: relative;
  padding: 11px 12px;
  margin: 0;
}
.dropdown-menu a:hover {
  transform: none;
  background: rgba(249, 115, 22, 0.10);
}
.nav-btn {
  min-height: 42px;
  border-radius: 6px;
  background: var(--gold);
  color: #000000;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.22);
  white-space: nowrap;
}
.nav-btn:after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.menu-toggle {
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.site-footer {
  background: var(--green);
}
.site-footer:before {
  background: var(--green);
}
.footer-top {
  align-items: center;
  padding: 46px 22px 34px;
}
.footer-top h2 {
  max-width: 720px;
  font-size: clamp(26px, 3.5vw, 44px);
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.footer-btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}
.footer-btn.ghost:hover {
  background: #fff;
  color: #000000 !important;
}
.footer-main {
  grid-template-columns: minmax(260px, 1.25fr) minmax(230px, 0.95fr) minmax(250px, 0.9fr) minmax(220px, 0.8fr);
  gap: 30px;
  padding: 44px 22px 40px;
}
.footer-main:before {
  background: var(--green);
}
.footer-logo {
  align-items: center;
}
.footer-main .footer-logo img {
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--gold), 0 16px 34px rgba(0, 0, 0, 0.18);
}
.footer-pill-row span {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}
.footer-main .social-links a {
  border-radius: 7px;
}
.footer-main .contact-row {
  border-radius: 7px;
  padding: 9px 8px;
  background: rgba(255, 255, 255, 0.045);
  border-bottom: 0;
}
.footer-main .contact-row:hover {
  background: rgba(249, 115, 22, 0.11);
}
.footer-link-grid {
  gap: 9px;
}
.footer-link-grid a {
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-note p {
  font-size: 14px;
}
.copyright {
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
}
.copyright a {
  display: inline-flex;
}

@media (max-width: 1100px) {
  .navbar {
    min-height: 74px;
  }
  .brand {
    min-width: 0;
  }
  .navbar.open .nav-links {
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.14);
  }
  .navbar.open .nav-links a,
  .navbar.open .nav-item > a {
    justify-content: space-between;
    min-height: 42px;
    padding: 11px 12px;
  }
  .navbar.open .dropdown-menu:before {
    display: none;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .navbar {
    min-height: 70px;
    padding: 10px 16px;
  }
  .brand img {
    width: 50px;
    height: 50px;
  }
  .brand span {
    font-size: 18px;
  }
  .brand small {
    font-size: 9px;
  }
  .footer-top {
    padding: 38px 18px 26px;
  }
  .footer-actions {
    justify-content: flex-start;
    margin-top: 18px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    padding: 34px 18px 30px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-link-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Fully responsive navbar refinement */
.cursor-glow,
.leaf-field {
  opacity: 0.28;
}
.site-header {
  overflow: visible;
}
.navbar {
  position: relative;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  max-width: min(1680px, calc(100% - 32px));
  min-height: 86px;
  padding: 10px 0;
  column-gap: clamp(14px, 1.4vw, 26px);
}
.brand {
  min-width: 0;
  max-width: clamp(270px, 24vw, 420px);
  margin-right: 0;
  gap: 14px;
}
.brand img {
  flex: 0 0 auto;
  width: clamp(54px, 4.8vw, 74px);
  height: clamp(54px, 4.8vw, 74px);
}
.brand span {
  min-width: 0;
  font-size: clamp(21px, 1.8vw, 31px);
  letter-spacing: 0;
}
.brand small {
  max-width: 190px;
  color: #000000;
  font-size: clamp(9px, 0.72vw, 13px);
  line-height: 1.05;
}
.nav-links {
  min-width: 0;
  justify-self: center;
  width: 100%;
  max-width: 920px;
  justify-content: center;
  gap: clamp(1px, 0.32vw, 6px);
  padding: 7px;
  border-radius: 8px;
  overflow: visible;
}
.nav-links a,
.nav-item > a {
  justify-content: center;
  min-height: 44px;
  padding: 10px clamp(8px, 0.72vw, 13px);
  white-space: nowrap;
  font-size: clamp(12px, 0.76vw, 15px);
  font-weight: 800;
}
.nav-item > a:before {
  margin-left: 5px;
}
.nav-links a.active,
.nav-item.active > a {
  background: var(--green);
  box-shadow: inset 0 -2px 0 var(--gold);
}
.nav-btn {
  min-height: 50px;
  padding: 13px clamp(16px, 1.2vw, 24px);
  font-size: clamp(11px, 0.76vw, 14px);
}

@media (max-width: 1500px) {
  .navbar {
    max-width: calc(100% - 24px);
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    column-gap: 12px;
  }
  .brand {
    max-width: 315px;
  }
  .brand img {
    width: 58px;
    height: 58px;
  }
  .brand span {
    font-size: 24px;
  }
  .brand small {
    max-width: 155px;
    font-size: 10px;
  }
  .nav-links {
    max-width: 820px;
    padding: 6px;
  }
  .nav-links a,
  .nav-item > a {
    min-height: 40px;
    padding-left: 7px;
    padding-right: 7px;
    font-size: 12.5px;
  }
  .nav-btn {
    min-height: 44px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 11.5px;
  }
}

@media (max-width: 1240px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    max-width: none;
    width: 100%;
    padding: 11px 22px;
    min-height: 76px;
    gap: 14px;
  }
  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 64px);
  }
  .brand span {
    overflow: hidden;
  }
  .nav-links,
  .nav-btn {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    flex: 0 0 46px;
    margin-left: auto;
    width: 46px;
    height: 42px;
  }
  .menu-toggle span {
    width: 22px;
    margin-inline: auto;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .navbar.open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .navbar.open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .navbar.open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .navbar.open .nav-links {
    display: grid;
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 0 0 10px 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.14);
    max-height: min(72vh, 620px);
    overflow-y: auto;
  }
  .navbar.open .nav-links a,
  .navbar.open .nav-item > a {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    padding: 12px 13px;
    background: rgba(0, 0, 0, 0.045);
    font-size: 14px;
  }
  .navbar.open .nav-item {
    display: grid;
    gap: 8px;
  }
  .navbar.open .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    gap: 6px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    box-shadow: none;
  }
  .navbar.open .dropdown-menu:before {
    display: none;
  }
  .navbar.open .dropdown-menu a {
    min-height: 38px;
    padding: 9px 10px;
    font-size: 12.5px;
    line-height: 1.28;
  }
}

@media (max-width: 760px) {
  .top-line {
    display: none;
  }
  .navbar {
    min-height: 70px;
    padding: 10px 16px;
  }
  .brand {
    gap: 11px;
  }
  .brand img {
    width: 50px;
    height: 50px;
  }
  .brand span {
    font-size: 20px;
  }
  .brand small {
    max-width: 135px;
    font-size: 9px;
  }
  .menu-toggle {
    display: inline-flex !important;
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 60;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }
  .navbar.open .nav-links {
    position: fixed;
    top: 70px;
    left: 10px;
    right: 10px;
    width: auto;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 84px);
  }
}

@media (max-width: 420px) {
  .navbar {
    padding-inline: 12px;
    gap: 10px;
  }
  .brand {
    max-width: calc(100% - 52px);
  }
  .brand img {
    width: 46px;
    height: 46px;
  }
  .brand span {
    font-size: 18px;
  }
  .brand small {
    max-width: 112px;
    font-size: 8px;
  }
  .menu-toggle {
    flex-basis: 42px;
    width: 42px;
    height: 40px;
    right: auto;
    left: min(calc(100vw - 54px), 330px);
  }
}

/* Executive committee page: compact category-wise 4-card grid */
.executive-page .executive-committee-section {
  background: #fffaf6;
}

.executive-page .committee-sections {
  width: min(1500px, 100%);
  margin: 38px auto 0;
  gap: 34px;
}

.executive-page .committee-section {
  padding: 0;
}

.executive-page .committee-sections {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.executive-page .committee-section {
  grid-column: 1 / -1;
}

.executive-page .committee-section:nth-child(-n+3) {
  grid-column: auto;
}

.executive-page .committee-section:nth-child(-n+3) .committee-section-head {
  min-height: 88px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.executive-page .committee-section:nth-child(-n+3) .committee-section-head strong {
  display: none;
}

.executive-page .committee-section:nth-child(-n+3) .committee-section-title {
  flex: 0 0 auto;
  font-size: clamp(21px, 2vw, 28px);
}

.executive-page .committee-section:nth-child(-n+3) .executive-team-grid {
  grid-template-columns: 1fr;
}

.executive-page .committee-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(217, 91, 24, 0.22);
}

.executive-page .committee-section-head span,
.executive-page .committee-section-head strong {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.executive-page .committee-section-title {
  flex: 1;
  margin: 0;
  padding: 0;
  color: #000;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  text-align: left;
}

.executive-page .committee-section-title:after {
  display: none;
}

.executive-page .executive-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.executive-page .executive-member-card {
  position: relative;
  display: flex;
  min-height: 330px;
  padding: 24px 20px 22px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.executive-page .executive-member-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--green);
}

.executive-page .executive-member-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 91, 24, 0.48);
  box-shadow: 0 18px 44px rgba(217, 91, 24, 0.12);
}

.executive-page .profile-photo-frame {
  display: grid;
  width: 142px;
  height: 142px;
  margin: 10px auto 18px;
  place-items: center;
  border-radius: 50%;
  background: #fff7f0;
  border: 1px solid rgba(217, 91, 24, 0.24);
}

.executive-page .profile-photo {
  width: 126px;
  height: 126px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  background: #fff;
  box-shadow: none;
}

.executive-page .profile-category {
  display: inline-flex;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid rgba(217, 91, 24, 0.22);
  border-radius: 999px;
  background: #fff7f0;
  color: var(--green);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.25;
  text-transform: uppercase;
}

.executive-page .executive-member-card h3 {
  margin: 16px 0 9px;
  color: #000;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.executive-page .executive-member-card p {
  margin: 0;
  color: #555;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .executive-page .committee-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .executive-page .committee-section:nth-child(-n+3) {
    grid-column: auto;
  }

  .executive-page .executive-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .executive-page .committee-sections {
    grid-template-columns: 1fr;
  }

  .executive-page .committee-section,
  .executive-page .committee-section:nth-child(-n+3) {
    grid-column: 1 / -1;
  }

  .executive-page .committee-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .executive-page .executive-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .executive-page .executive-team-grid {
    grid-template-columns: 1fr;
  }

  .executive-page .executive-member-card {
    min-height: 0;
  }
}


/* Footer alignment: carousel/home content ke same edge par */
.site-footer {
  --footer-edge: max(28px, 6vw);
}
.footer-top,
.footer-main,
.copyright {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: var(--footer-edge);
  padding-right: var(--footer-edge);
}
.footer-main:before {
  left: var(--footer-edge);
  right: var(--footer-edge);
}
.site-footer .footer-main {
  min-height: 430px;
  padding-top: 76px;
  padding-bottom: 68px;
  align-items: start;
}

@media (max-width: 760px) {
  .site-footer {
    --footer-edge: 18px;
  }
  .footer-top {
    padding-left: var(--footer-edge);
    padding-right: var(--footer-edge);
  }
  .footer-main {
    padding-left: var(--footer-edge);
    padding-right: var(--footer-edge);
  }
  .site-footer .footer-main {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 44px;
  }
  .copyright {
    padding-left: var(--footer-edge);
    padding-right: var(--footer-edge);
  }
}

/* Inner pages alignment: hero aur sections same website edge follow karen */
:root {
  --page-edge: max(28px, 6vw);
}
.page-hero .page-hero-content,
.page-section {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: var(--page-edge);
  padding-right: var(--page-edge);
}
.page-hero .page-hero-content {
  width: auto;
}

@media (max-width: 760px) {
  :root {
    --page-edge: 18px;
  }
}

/* Professional footer refresh */
.site-footer {
  --footer-edge: max(28px, 6vw);
  background: var(--green);
}
.site-footer:before {
  background: var(--green);
}
.site-footer .footer-main {
  grid-template-columns: minmax(300px, 1.18fr) minmax(260px, 1fr) minmax(300px, 1fr) minmax(230px, 0.82fr);
  gap: 34px;
  min-height: auto;
  padding-top: 64px;
  padding-bottom: 56px;
}
.site-footer .footer-main:before {
  display: none;
}
.footer-brand,
.footer-contact,
.footer-links,
.footer-note {
  position: relative;
}
.footer-brand {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}
.footer-main .footer-logo {
  align-items: center;
  margin-bottom: 18px;
}
.footer-main .footer-logo img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #fff;
}
.footer-main .footer-logo h3 {
  font-size: 24px;
  line-height: 1.1;
}
.footer-brand p,
.footer-note p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.82);
}
.footer-pill-row {
  gap: 8px;
  margin-top: 20px;
}
.footer-pill-row span {
  border-radius: 5px;
  background: rgba(249, 115, 22, 0.12);
}
.footer-main h4 {
  margin-bottom: 22px;
  font-size: 18px;
}
.footer-main h4:after {
  width: 44px;
  height: 2px;
}
.footer-main .contact-row {
  min-height: 52px;
  margin-bottom: 12px !important;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}
.footer-main .contact-row span {
  background: rgba(249, 115, 22, 0.18);
}
.footer-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.footer-links a {
  margin: 0;
  padding: 11px 12px 11px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.84);
}
.footer-links a:before {
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
}
.footer-note {
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-note .whatsapp-link {
  width: auto;
  height: 48px;
  margin-top: 20px;
  padding: 0 18px;
  gap: 10px;
  border-radius: 8px;
}
.footer-note .whatsapp-link:after {
  content: "WhatsApp";
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.footer-note .whatsapp-link svg {
  width: 22px;
  height: 22px;
}
.footer-main .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.site-footer .copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.12);
}

@media (max-width: 1100px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-footer {
    --footer-edge: 18px;
  }
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 44px;
    padding-bottom: 36px;
  }
  .footer-brand,
  .footer-note {
    padding: 22px;
  }
  .footer-link-grid {
    grid-template-columns: 1fr;
  }
  .site-footer .copyright {
    display: block;
    text-align: center;
  }
  .site-footer .copyright span {
    display: block;
    margin: 5px 0;
  }
}

/* Top bar and copyright alignment fixes */
.top-line {
  padding-left: max(28px, 6vw);
  padding-right: max(28px, 6vw);
}
.top-contact {
  justify-content: flex-start;
  margin-right: 24px;
}
.top-social {
  flex: none;
}
.site-footer .copyright {
  min-height: 58px;
  align-items: center;
  padding-left: var(--footer-edge);
  padding-right: calc(var(--footer-edge) + 92px);
}
.site-footer .copyright > span:last-child {
  text-align: right;
}
.whatsapp-float {
  bottom: 76px;
}

@media (max-width: 760px) {
  .top-line {
    display: none;
  }
  .site-footer .copyright {
    padding-left: 18px;
    padding-right: 18px;
  }
  .whatsapp-float {
    bottom: 16px;
  }
}

/* Professional dropdown menu */
.nav-item .dropdown-menu {
  top: calc(100% + 14px);
  left: 50%;
  min-width: 320px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  background: var(--green);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  transform: translate(-50%, 12px);
}
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  transform: translate(-50%, 0);
}
.nav-item .dropdown-menu:before {
  left: 50%;
  top: -9px;
  width: 16px;
  height: 16px;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  transform: translateX(-50%) rotate(45deg);
}
.nav-links .dropdown-menu a,
.nav-item .dropdown-menu a {
  justify-content: flex-start;
  width: 100%;
  min-height: 46px;
  padding: 12px 14px 12px 42px;
  border-radius: 7px;
  color: #000000;
  font-size: 14px;
  font-weight: 850;
  text-align: left;
  white-space: normal;
  line-height: 1.25;
}
.nav-item .dropdown-menu a:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.14);
  transform: translateY(-50%);
}
.nav-item .dropdown-menu a:hover {
  background: rgba(249, 115, 22, 0.10);
  color: #000000;
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .navbar.open .nav-item .dropdown-menu {
    left: auto;
    min-width: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    transform: none;
    box-shadow: none;
  }
  .navbar.open .nav-links .dropdown-menu a,
  .navbar.open .nav-item .dropdown-menu a {
    min-height: 40px;
    padding: 10px 12px 10px 34px;
    font-size: 13px;
  }
  .navbar.open .nav-item .dropdown-menu a:before {
    left: 13px;
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
  }
}

/* Simple contact map */
.map-panel {
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
}
.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  height: 100%;
  border: 0;
}

@media (max-width: 600px) {
  .map-panel,
  .map-panel iframe {
    min-height: 340px;
  }
}

/* Simple event registration form */
.registration-page {
  background: var(--green);
}
.registration-shell {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0;
}
.registration-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}
.registration-head {
  display: grid;
  justify-items: center;
  padding: 34px 28px 28px;
  text-align: center;
  background: var(--green);
  color: #fff;
}
.registration-head img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 16px;
  padding: 7px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 0 1px var(--gold);
}
.registration-head span {
  color: #000000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.registration-head h1 {
  max-width: 640px;
  margin: 10px 0 10px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}
.registration-head p {
  margin: 0;
  color: #FFFFFF;
  line-height: 1.6;
}
.registration-desc {
  margin: 0;
  padding: 24px 30px 0;
  color: var(--muted);
  line-height: 1.75;
}
.registration-form {
  border: 0;
  box-shadow: none;
  padding: 30px;
}
.registration-form h3 {
  margin: 12px 0 8px;
  color: #000000;
  font-size: 26px;
}
.success-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.13);
  color: #000000;
  font-weight: 900;
}

@media (max-width: 600px) {
  .registration-shell {
    width: min(100% - 28px, 760px);
    padding: 42px 0;
  }
  .registration-head {
    padding: 28px 20px 24px;
  }
  .registration-desc,
  .registration-form {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* About page core focus */
.core-focus-section {
  background: var(--green);
}
.core-focus-section .page-section {
  padding-top: 96px;
  padding-bottom: 96px;
}
.core-focus-section .section-heading {
  max-width: 960px;
  margin-bottom: 38px;
}
.core-focus-grid {
  gap: 28px;
}
.core-focus-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  background: var(--green);
}
.core-focus-card:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--green);
}
.core-focus-card b {
  position: absolute;
  right: 26px;
  top: 26px;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.14);
  font-size: 54px;
  line-height: 1;
}
.focus-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.10);
  color: #000000;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.focus-icon svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}
.core-focus-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-size: 25px;
}
.core-focus-card p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  font-size: 17px;
}
.core-focus-card:hover {
  background: var(--green);
  color: #fff;
}
.core-focus-card:hover h3,
.core-focus-card:hover p {
  color: #fff;
}
.core-focus-card:hover .focus-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #000000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}
.core-focus-card:hover b {
  color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 600px) {
  .core-focus-section .page-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .core-focus-card {
    min-height: 0;
    padding: 26px;
  }
  .core-focus-card b {
    font-size: 42px;
  }
}

/* Final mobile safe-area fixes */
@media (max-width: 760px) {
  .site-header,
  .navbar {
    z-index: 90;
  }
  .navbar.open .nav-links {
    display: grid;
    position: fixed;
    top: 70px;
    left: 10px;
    right: 10px;
    bottom: auto;
    z-index: 80;
    width: auto;
    max-height: calc(100dvh - 92px);
    grid-template-columns: 1fr;
    overflow-y: auto;
    padding: 12px;
    gap: 8px;
    border-radius: 0 0 10px 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
    overscroll-behavior: contain;
  }
  .navbar.open .nav-links a,
  .navbar.open .nav-item > a {
    min-height: 40px;
    padding: 10px 12px;
  }
  .navbar.open .dropdown-menu {
    gap: 5px;
    padding: 7px;
  }
  .navbar.open .dropdown-menu a,
  .navbar.open .nav-item .dropdown-menu a {
    min-height: 35px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 12px;
  }
  .site-footer {
    padding-bottom: 0;
  }
  .site-footer .copyright {
    min-height: auto;
    display: grid;
    gap: 6px;
    padding: 20px 86px 24px 18px;
    text-align: center;
    line-height: 1.5;
  }
  .site-footer .copyright span,
  .site-footer .copyright > span:last-child {
    margin: 0;
    text-align: center;
  }
  .whatsapp-float {
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 380px) {
  .navbar.open .nav-links {
    padding: 10px;
    max-height: calc(100dvh - 88px);
  }
  .site-footer .copyright {
    padding-right: 66px;
    font-size: 11px;
  }
}

/* Premium orange polish */
body {
  background: #fff;
  color: #000;
}

.site-header,
.top-line,
.hero,
.ticker,
.quote-strip,
.cta,
.page-hero,
.site-footer,
.registration-head {
  background: var(--green);
}

.site-header:after,
.site-footer:before,
.carousel-panel:before,
.hero .shloka:after,
.committee-section-title:after,
.achievement-highlight:before,
.admin-top p:before {
  background: var(--gold);
}

.navbar,
.carousel-panel,
.hero-card,
.stat,
.feature-card,
.profile-card,
.initiative-card,
.contact-card,
.wide-panel,
.timeline article,
.achievement-stats,
.achievement-stats .stat,
.achievement-highlight,
.initiative-image-card,
.initiative-step-grid article,
.form-shell,
.swasth-doctor-card,
.selected-doctor-note,
.wellness-info-cards article,
.wellness-treatment-card,
.wellness-team-grid article,
.wellness-brochure-grid figure,
.wellness-contact-card,
.registration-card,
.map-panel,
.core-focus-card,
.voice-card {
  background: #fff;
  color: #000;
  border-color: var(--line);
}

.section-heading,
.section-title h2,
.feature-card h3,
.profile-card h3,
.initiative-card h3,
.contact-card h3,
.timeline h3,
.achievement-highlight h3,
.initiative-card-body h3,
.initiative-step-grid h3,
.swasth-doctor-content h3,
.swasth-doctor-content dt,
.selected-doctor-note strong,
.swasth-appointment-form h3,
.wellness-treatment-card h3,
.wellness-team-grid h3,
.wellness-brochure-grid figcaption,
.brand,
.nav-links a,
.nav-item > a,
.dropdown-menu a {
  color: #000;
}

.kicker,
.eyebrow,
.breadcrumb,
.section-kicker,
.stat span,
.timeline .tag,
.event-card span,
.profile-card span,
.initiative-card-body span,
.swasth-doctor-content > span,
.selected-doctor-note small,
.wellness-info-cards strong,
.wellness-team-grid span,
.footer-main h4,
.footer-logo small {
  color: var(--green);
}

.nav-btn,
.btn.primary,
.btn.light,
.hero-control:hover,
.gallery-tabs a.active,
.gallery-tabs a:hover,
.feature-card b,
.initiative-card b,
.initiative-step-grid b,
.achievement-timeline article > span,
.wellness-treatment-card b,
.footer-note .whatsapp-link,
.whatsapp-float {
  background: var(--gold);
  color: #000 !important;
  border-color: var(--gold);
}

.hero,
.page-hero,
.quote-strip,
.cta,
.site-footer,
.registration-head {
  color: #fff;
}

.hero h1,
.hero-text,
.hero .kicker,
.page-hero h1,
.page-hero p,
.quote-strip h2,
.quote-strip p,
.cta h2,
.cta p,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a,
.registration-head h1,
.registration-head p,
.registration-head span {
  color: #fff;
}

.shloka,
.hero .shloka,
.core-focus-card:hover,
.map-panel,
.wellness-vision-grid article,
.event-card {
  background: var(--green);
  color: #fff;
}

.event-card:after,
.page-hero:before,
.achievements-hero:after,
.initiatives-hero:after,
.swasth-hero:after,
.wellness-hero:after {
  background: rgba(169, 67, 13, 0.48);
}

.btn.ghost,
.hero-control {
  background: #fff;
  color: #000;
  border-color: var(--gold);
}

.site-header .top-line a,
.top-social a,
.footer-main .contact-row,
.footer-links a,
.copyright,
.copyright a {
  color: #fff;
}

/* Clean visual pass */
.cursor-glow,
.leaf-field,
.leaf-field span {
  display: none !important;
}

:root {
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

body {
  background: #fff;
}

section {
  background: #fff;
}

.site-header {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.navbar {
  min-height: 78px;
}

.brand img,
.footer-main .footer-logo img,
.registration-head img {
  box-shadow: 0 0 0 1px rgba(217, 91, 24, 0.22);
}

.hero:after,
.site-header:after,
.site-footer:before,
.carousel-panel:before {
  display: none;
}

.hero-card,
.carousel-panel,
.stat,
.card,
.feature-card,
.profile-card,
.initiative-card,
.contact-card,
.wide-panel,
.timeline article,
.achievement-stats,
.achievement-highlight,
.initiative-image-card,
.initiative-step-grid article,
.form-shell,
.swasth-doctor-card,
.selected-doctor-note,
.wellness-info-cards article,
.wellness-treatment-card,
.wellness-team-grid article,
.wellness-brochure-grid figure,
.wellness-contact-card,
.voice-card,
.registration-card,
.map-panel,
.core-focus-card {
  border: 1px solid rgba(217, 91, 24, 0.16);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-card:hover,
.profile-card:hover,
.initiative-card:hover,
.contact-card:hover,
.timeline article:hover,
.achievement-highlight:hover,
.initiative-image-card:hover,
.initiative-step-grid article:hover,
.swasth-doctor-card:hover,
.wellness-treatment-card:hover,
.wellness-team-grid article:hover,
.wellness-brochure-grid figure:hover,
.voice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 91, 24, 0.36);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.btn,
.nav-btn,
.gallery-tabs a,
.footer-links a,
.dropdown-menu a {
  box-shadow: none;
}

.nav-btn,
.btn.primary,
.footer-note .whatsapp-link {
  background: var(--green);
  color: #fff !important;
}

.btn.light,
.btn.ghost,
.gallery-tabs a {
  background: #fff;
  color: #000 !important;
  border-color: rgba(217, 91, 24, 0.28);
}

.section-heading,
.section-title {
  max-width: 900px;
}

.page-section,
.stats,
.split,
.events,
.gallery,
.experience,
.speakers {
  padding-top: 72px;
  padding-bottom: 72px;
}

.ticker-track {
  padding: 13px 0;
}

.hero-card,
.ticker-track,
.whatsapp-float,
.whatsapp-float.is-ready {
  animation: none !important;
}

.ticker-track {
  width: auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
}

/* Clean navbar redesign */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  overflow: visible;
  background: #fff;
  border-bottom: 1px solid rgba(217, 91, 24, 0.16);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.site-header:after {
  display: none;
}

.top-line {
  min-height: 8px;
  height: 8px;
  padding: 0;
  background: var(--green);
  border: 0;
}

.top-line .top-contact,
.top-line .top-social {
  display: none;
}

.navbar {
  width: min(100% - 40px, 1560px);
  max-width: none;
  min-height: 108px;
  margin: 0 auto;
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr) max-content;
  align-items: center;
  gap: clamp(18px, 2.2vw, 42px);
  background: #fff;
}

.brand {
  min-width: 0;
  max-width: none;
  gap: 16px;
  margin: 0;
  color: #000;
}

.brand img {
  width: 72px;
  height: 72px;
  padding: 5px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(217, 91, 24, 0.22);
}

.brand span {
  font-size: clamp(28px, 2.1vw, 38px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
  color: #000;
}

.brand small {
  margin-top: 7px;
  max-width: none;
  color: #000;
  font-size: clamp(11px, 0.9vw, 15px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.nav-links {
  justify-self: center;
  width: auto;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.4vw, 28px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav-item {
  padding: 0;
}

.nav-links a,
.nav-item > a {
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 0;
  color: #000;
  font-size: clamp(13px, 0.88vw, 16px);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
  background: transparent;
  box-shadow: none;
}

.nav-links > a:after,
.nav-item > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: 3px;
  width: 0;
  height: 2px;
  display: block;
  background: var(--green);
  transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-item:hover > a,
.nav-item.active > a {
  color: var(--green);
  background: transparent;
  box-shadow: none;
}

.nav-links > a:hover:after,
.nav-links > a.active:after,
.nav-item:hover > a:after,
.nav-item.active > a:after {
  width: 100%;
}

.nav-item > a:before {
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.75;
}

.nav-item .dropdown-menu {
  top: calc(100% + 18px);
  left: 50%;
  min-width: 285px;
  padding: 10px;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-top: 3px solid var(--green);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  transform: translate(-50%, 10px);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  transform: translate(-50%, 0);
}

.nav-item .dropdown-menu:before {
  display: none;
}

.nav-links .dropdown-menu a,
.nav-item .dropdown-menu a {
  min-height: 42px;
  width: 100%;
  padding: 11px 12px;
  border-radius: 6px;
  color: #000;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.nav-item .dropdown-menu a:before {
  display: none;
}

.nav-links .dropdown-menu a:hover,
.nav-item .dropdown-menu a:hover {
  background: rgba(217, 91, 24, 0.08);
  color: var(--green);
  transform: none;
}

.nav-btn {
  min-height: 62px;
  padding: 0 26px;
  border-radius: 6px;
  background: var(--green);
  color: #fff !important;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.8px;
  box-shadow: none;
}

.nav-btn:hover {
  background: var(--green-2);
  transform: translateY(-1px);
}

.nav-btn:after {
  width: 8px;
  height: 8px;
  margin-left: 12px;
}

.menu-toggle {
  border: 1px solid rgba(217, 91, 24, 0.22);
  background: #fff;
  box-shadow: none;
}

.menu-toggle span {
  background: #000;
}

@media (max-width: 1240px) {
  .navbar {
    width: calc(100% - 32px);
    min-height: 88px;
    display: flex;
    gap: 16px;
    padding: 12px 0;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 64px);
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .brand span {
    font-size: 28px;
  }

  .brand small {
    font-size: 11px;
  }

  .nav-links,
  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 46px;
  }

  .navbar.open .nav-links {
    display: grid;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(217, 91, 24, 0.18);
    border-radius: 0 0 8px 8px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  }

  .navbar.open .nav-links a,
  .navbar.open .nav-item > a {
    min-height: 42px;
    justify-content: flex-start;
    padding: 0 12px;
    border-radius: 6px;
  }

  .navbar.open .nav-links a:hover,
  .navbar.open .nav-links a.active,
  .navbar.open .nav-item.active > a {
    background: rgba(217, 91, 24, 0.08);
  }

  .navbar.open .nav-item .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 6px 0 0 12px;
    border: 0;
    box-shadow: none;
    transform: none;
  }
}

@media (max-width: 760px) {
  .top-line {
    display: block;
  }

  .navbar {
    width: calc(100% - 28px);
    min-height: 76px;
  }

  .brand {
    gap: 12px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand span {
    font-size: 23px;
  }

  .brand small {
    max-width: 150px;
    font-size: 9px;
    letter-spacing: 1.1px;
  }

  .menu-toggle {
    position: static;
    width: 44px;
    height: 40px;
  }

  .navbar.open .nav-links {
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    max-height: calc(100dvh - 92px);
  }
}

/* Hero carousel and highlight band redesign */
.hero {
  min-height: clamp(560px, calc(100vh - 116px), 760px);
  align-items: end;
  border-bottom: 0;
  background: #000;
}

.hero-img {
  object-position: center 42%;
  filter: saturate(1.02) contrast(1.02);
}

.hero-overlay {
  display: block;
  z-index: 1;
  background: rgba(0, 0, 0, 0.34);
}

.hero-content {
  z-index: 3;
  width: min(620px, calc(100% - 72px));
  max-width: 620px;
  margin: 0 0 122px max(28px, 6vw);
  padding: 28px 30px;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.hero-content .shloka:first-child {
  margin-top: 0;
}

.hero-content .hero-actions:last-child {
  margin-top: 22px;
}

.hero .kicker {
  margin-bottom: 10px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 2.4px;
}

.hero .kicker:before {
  background: var(--gold);
}

.shloka,
.hero .shloka {
  width: 100%;
  margin-bottom: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.38;
}

.hero .shloka:after {
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 14px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(38px, 5vw, 68px);
}

.hero-text {
  max-width: 560px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.2vw, 20px);
}

.hero-actions {
  gap: 12px;
}

.hero-actions .btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 6px;
  letter-spacing: 0.8px;
}

.hero-actions .btn.primary {
  background: var(--green);
  color: #fff !important;
}

.hero-actions .btn.ghost {
  background: #fff;
  color: #000 !important;
  border-color: #fff;
}

.carousel-panel {
  left: max(28px, 6vw);
  bottom: 28px;
  z-index: 4;
  width: min(650px, calc(100% - 72px));
  min-height: 82px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 91, 24, 0.20);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px);
}

.slide-label span {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 1.8px;
}

.slide-label strong {
  margin: 5px 0 4px;
  color: #000;
  font-size: clamp(18px, 1.45vw, 24px);
}

.slide-label small {
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
}

.carousel-actions {
  gap: 12px;
}

.hero-control {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 91, 24, 0.32);
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 24px;
}

.hero-control:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.hero-dots {
  gap: 8px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: none;
}

.hero-dots button.active {
  width: 28px;
  background: var(--green);
}

.ticker {
  padding: 20px max(24px, 6vw);
  background: #fff;
  color: #000;
  border-top: 1px solid rgba(217, 91, 24, 0.18);
  border-bottom: 1px solid rgba(217, 91, 24, 0.18);
}

.ticker-track {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0;
  display: block;
  white-space: nowrap;
  animation: none;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-right: 12px;
  padding: 8px 14px;
  border: 1px solid rgba(217, 91, 24, 0.22);
  border-radius: 999px;
  background: rgba(217, 91, 24, 0.07);
  color: #000;
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 900;
  letter-spacing: 1.7px;
}

.ticker span:after {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 130px;
    padding: 24px;
  }

  .carousel-panel {
    left: 18px;
    bottom: 24px;
    width: calc(100% - 36px);
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 760px;
  }

  .hero-content {
    margin-bottom: 170px;
    padding: 20px;
  }

  .hero .shloka {
    font-size: 18px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .carousel-panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .carousel-actions {
    justify-content: space-between;
  }

  .ticker {
    padding: 16px 18px;
  }

  .ticker-track {
    width: 100%;
  }

  .ticker span {
    width: auto;
    justify-content: flex-start;
  }
}

/* Navbar top strip restore */
.top-line {
  min-height: 34px;
  height: auto;
  padding: 7px max(20px, 6vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--green);
  color: #fff;
}

.top-line .top-contact,
.top-line .top-social {
  display: flex;
}

.top-contact {
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.top-mini {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.top-mini svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.top-social {
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.top-social a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  background: transparent;
}

.top-social a:hover {
  background: #fff;
  color: var(--green);
}

@media (max-width: 980px) {
  .top-line {
    display: none;
  }
}

/* Cleaner hero composition */
.hero {
  min-height: clamp(580px, calc(100vh - 120px), 740px);
  align-items: center;
  background: #000;
}

.hero-img {
  object-position: center 38%;
  filter: saturate(1.03) contrast(1.02);
}

.hero-overlay {
  display: block;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
}

.hero-content {
  width: min(620px, calc(100% - 80px));
  max-width: 620px;
  margin: 0 0 112px max(32px, 7vw);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-content:before {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin-bottom: 22px;
  background: var(--green);
  border-radius: 999px;
}

.shloka,
.hero .shloka {
  max-width: 620px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: clamp(24px, 3.15vw, 42px);
  line-height: 1.34;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}

.hero .shloka:after {
  display: none;
}

.hero-actions {
  margin-top: 24px;
  gap: 14px;
}

.hero-actions .btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 13px;
  box-shadow: none;
}

.hero-actions .btn.primary {
  background: var(--green);
  color: #fff !important;
}

.hero-actions .btn.ghost {
  background: #fff;
  color: #000 !important;
  border-color: #fff;
}

.carousel-panel {
  left: max(32px, 7vw);
  bottom: 30px;
  width: min(560px, calc(100% - 80px));
  min-height: 74px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.slide-label span {
  color: var(--green);
  font-size: 10px;
  letter-spacing: 1.8px;
}

.slide-label strong {
  margin: 4px 0 3px;
  color: #000;
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.15;
}

.slide-label small {
  color: rgba(0, 0, 0, 0.68);
  font-size: 13px;
}

.hero-control {
  width: 38px;
  height: 38px;
  background: #fff;
  color: #000;
  border-color: rgba(217, 91, 24, 0.32);
}

.hero-control:hover {
  background: var(--green);
  color: #fff;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.20);
}

.hero-dots button.active {
  width: 30px;
  background: var(--green);
}

@media (max-width: 900px) {
  .hero {
    min-height: 700px;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px 140px;
  }

  .carousel-panel {
    left: 20px;
    bottom: 24px;
    width: calc(100% - 40px);
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 720px;
  }

  .hero-content {
    margin-bottom: 172px;
  }

  .shloka,
  .hero .shloka {
    font-size: 25px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .carousel-panel {
    grid-template-columns: 1fr;
  }
}

/* Ayur Mahotsava inspired homepage sections */
.ayur-intro,
.ayur-experience,
.ayur-core,
.ayur-leaders,
.ayur-speakers,
.ayur-cta {
  padding: 82px max(24px, 6vw);
  background: #fff;
}

.ayur-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.ayur-copy p,
.ayur-experience .section-title p,
.ayur-leaders .section-title p,
.ayur-cta p {
  max-width: 760px;
  margin: 0;
  color: #000;
  font-size: 17px;
  line-height: 1.75;
}

.ayur-event-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) 1fr;
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.ayur-event-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.ayur-event-card div {
  padding: 30px;
}

.ayur-event-card span,
.ayur-cta span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.ayur-event-card h3,
.ayur-network h2,
.ayur-cta h2 {
  margin: 0 0 14px;
  color: #000;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.ayur-event-card p {
  margin: 0 0 24px;
  color: #000;
  line-height: 1.65;
}

.ayur-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding: 30px max(24px, 6vw);
  background: rgba(217, 91, 24, 0.06);
  border-top: 1px solid rgba(217, 91, 24, 0.18);
  border-bottom: 1px solid rgba(217, 91, 24, 0.18);
}

.ayur-stats article {
  min-height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px 12px;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 8px;
  background: #fff;
}

.ayur-stats strong {
  color: var(--green);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
}

.ayur-stats span {
  color: #000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ayur-experience .section-title,
.ayur-core .section-title,
.ayur-leaders .section-title,
.ayur-speakers .section-title {
  max-width: 980px;
  margin-bottom: 34px;
}

.ayur-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ayur-experience-grid article,
.ayur-core-grid article,
.ayur-person-grid article,
.ayur-speaker-list article {
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.ayur-experience-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.ayur-experience-grid div,
.ayur-core-grid article,
.ayur-speaker-list article {
  padding: 24px;
}

.ayur-experience-grid span,
.ayur-speaker-list span,
.ayur-core-grid b {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.ayur-experience-grid h3,
.ayur-core-grid h3,
.ayur-person-grid h3,
.ayur-speaker-list h3 {
  margin: 0 0 10px;
  color: #000;
  font-size: 22px;
  line-height: 1.16;
}

.ayur-experience-grid p,
.ayur-core-grid p,
.ayur-person-grid p,
.ayur-speaker-list p,
.ayur-network p,
.ayur-network li {
  margin: 0;
  color: #000;
  line-height: 1.65;
}

.ayur-core {
  background: rgba(217, 91, 24, 0.05);
}

.ayur-core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ayur-network {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: 44px;
  align-items: center;
  padding: 82px max(24px, 6vw);
  background: #fff;
}

.ayur-network figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(217, 91, 24, 0.18);
}

.ayur-network img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.ayur-network ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.ayur-network li {
  padding: 13px 15px;
  border-left: 4px solid var(--green);
  background: rgba(217, 91, 24, 0.07);
  border-radius: 6px;
  font-weight: 800;
}

.ayur-person-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ayur-person-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
  background: #fff;
}

.ayur-person-grid article {
  padding-bottom: 20px;
}

.ayur-person-grid h3,
.ayur-person-grid p {
  padding: 0 18px;
}

.ayur-person-grid h3 {
  margin-top: 18px;
}

.ayur-speaker-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ayur-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 30px;
  align-items: center;
  background: var(--green);
  color: #fff;
}

.ayur-cta span,
.ayur-cta h2,
.ayur-cta p {
  color: #fff;
}

.ayur-contact-box {
  min-width: 280px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: #fff;
  color: #000;
}

.ayur-contact-box b {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.ayur-contact-box a:not(.btn) {
  display: block;
  margin-bottom: 18px;
  color: #000;
  font-size: 24px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .ayur-intro,
  .ayur-network,
  .ayur-cta {
    grid-template-columns: 1fr;
  }

  .ayur-stats,
  .ayur-core-grid,
  .ayur-person-grid,
  .ayur-speaker-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .ayur-experience-grid,
  .ayur-stats,
  .ayur-core-grid,
  .ayur-person-grid,
  .ayur-speaker-list {
    grid-template-columns: 1fr 1fr;
  }

  .ayur-event-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ayur-intro,
  .ayur-experience,
  .ayur-core,
  .ayur-network,
  .ayur-leaders,
  .ayur-speakers,
  .ayur-cta {
    padding: 58px 18px;
  }

  .ayur-experience-grid,
  .ayur-stats,
  .ayur-core-grid,
  .ayur-person-grid,
  .ayur-speaker-list {
    grid-template-columns: 1fr;
  }

  .ayur-network img {
    min-height: 320px;
  }

  .ayur-contact-box {
    min-width: 0;
  }
}

/* Premium card and footer redesign */
@keyframes borderPulse {
  0%, 100% {
    border-color: rgba(217, 91, 24, 0.18);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  }
  50% {
    border-color: rgba(217, 91, 24, 0.72);
    box-shadow: 0 18px 42px rgba(217, 91, 24, 0.14);
  }
}

@keyframes borderLift {
  0%, 100% { outline-offset: 0; }
  50% { outline-offset: 6px; }
}

.ayur-intro,
.ayur-experience,
.ayur-core,
.ayur-network,
.ayur-leaders,
.ayur-speakers {
  padding-top: 96px;
  padding-bottom: 96px;
}

.ayur-core,
.ayur-speakers {
  background: #fff;
}

.ayur-intro,
.ayur-leaders {
  background: rgba(217, 91, 24, 0.035);
}

.ayur-intro {
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
}

.ayur-copy,
.ayur-experience .section-title,
.ayur-core .section-title,
.ayur-leaders .section-title,
.ayur-speakers .section-title {
  position: relative;
}

.ayur-copy:before,
.ayur-experience .section-title:before,
.ayur-core .section-title:before,
.ayur-leaders .section-title:before,
.ayur-speakers .section-title:before {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--green);
  border-radius: 999px;
}

.ayur-event-card,
.ayur-experience-grid article,
.ayur-core-grid article,
.ayur-person-grid article,
.ayur-speaker-list article,
.ayur-stats article,
.ayur-contact-box {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(217, 91, 24, 0.18);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.ayur-event-card:after,
.ayur-experience-grid article:after,
.ayur-core-grid article:after,
.ayur-person-grid article:after,
.ayur-speaker-list article:after,
.ayur-stats article:after,
.ayur-contact-box:after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border: 1px solid rgba(217, 91, 24, 0);
  border-radius: 8px;
  pointer-events: none;
  transition: inset 0.24s ease, border-color 0.24s ease;
}

.ayur-event-card:hover,
.ayur-experience-grid article:hover,
.ayur-core-grid article:hover,
.ayur-person-grid article:hover,
.ayur-speaker-list article:hover,
.ayur-stats article:hover,
.ayur-contact-box:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 91, 24, 0.72);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
  animation: borderPulse 1.8s ease-in-out infinite;
}

.ayur-event-card:hover:after,
.ayur-experience-grid article:hover:after,
.ayur-core-grid article:hover:after,
.ayur-person-grid article:hover:after,
.ayur-speaker-list article:hover:after,
.ayur-stats article:hover:after,
.ayur-contact-box:hover:after {
  inset: -7px;
  border-color: rgba(217, 91, 24, 0.34);
  animation: borderLift 1.8s ease-in-out infinite;
}

.ayur-stats {
  align-items: stretch;
  gap: 18px;
  padding-top: 42px;
  padding-bottom: 42px;
  background: #fff;
}

.ayur-stats article {
  min-height: 190px;
  overflow: hidden;
  align-content: end;
  place-items: stretch;
  padding: 0;
  text-align: left;
}

.ayur-stats article img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  filter: saturate(1.02);
}

.ayur-stats strong,
.ayur-stats span {
  padding-left: 16px;
  padding-right: 16px;
}

.ayur-stats strong {
  padding-top: 16px;
}

.ayur-stats span {
  padding-bottom: 16px;
}

.ayur-event-card img,
.ayur-experience-grid img,
.ayur-core-grid img,
.ayur-person-grid img,
.ayur-speaker-list img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.ayur-event-card:hover img,
.ayur-experience-grid article:hover img,
.ayur-core-grid article:hover img,
.ayur-person-grid article:hover img,
.ayur-speaker-list article:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.ayur-core-grid article,
.ayur-speaker-list article {
  padding: 0;
}

.ayur-core-grid article img,
.ayur-speaker-list article img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  background: #fff;
}

.ayur-core-grid article div,
.ayur-speaker-list article div {
  padding: 24px;
}

.ayur-experience-grid article {
  min-height: 100%;
}

.ayur-experience-grid img {
  height: 290px;
}

.ayur-person-grid img {
  height: 300px;
}

.ayur-person-grid h3,
.ayur-person-grid p {
  padding-left: 22px;
  padding-right: 22px;
}

.ayur-person-grid article {
  padding-bottom: 24px;
}

.ayur-network figure {
  position: relative;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
}

.ayur-network figure:after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  pointer-events: none;
}

.ayur-cta {
  background: #000;
  border-top: 5px solid var(--green);
}

.ayur-contact-box {
  border-color: rgba(217, 91, 24, 0.36);
}

.site-footer {
  background: #000;
  color: #fff;
}

.site-footer .footer-main {
  background: #000;
  gap: 30px;
}

.footer-brand,
.footer-note,
.footer-main .contact-row,
.footer-links a {
  border-color: rgba(217, 91, 24, 0.28);
  background: rgba(255, 255, 255, 0.055);
}

.footer-brand {
  box-shadow: inset 4px 0 0 var(--green);
}

.footer-main h4,
.footer-main .footer-logo h3,
.footer-brand p,
.footer-note p,
.site-footer p,
.site-footer a,
.site-footer .copyright {
  color: #fff;
}

.footer-main h4:after {
  background: var(--green);
}

.footer-pill-row span,
.footer-main .contact-row span,
.footer-main .social-links a,
.footer-note .whatsapp-link {
  background: var(--green);
  color: #fff !important;
}

.footer-links a:hover,
.footer-main .contact-row:hover {
  border-color: var(--green);
  background: rgba(217, 91, 24, 0.18);
  transform: translateX(4px);
}

.site-footer .copyright {
  background: #090909;
  border-top: 1px solid rgba(217, 91, 24, 0.28);
}

@media (max-width: 1100px) {
  .ayur-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ayur-stats article {
    min-height: 0;
  }

  .ayur-core-grid article img,
  .ayur-speaker-list article img,
  .ayur-experience-grid img,
  .ayur-person-grid img {
    height: 240px;
  }
}

/* Clean enquiry cards section */
.ayur-cta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 max(24px, 6vw) 42px;
  background: #fff;
  border-top: 0;
  color: #000;
}

.enquiry-card {
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.enquiry-card h3 {
  margin: 0;
  padding: 17px 18px;
  background: var(--green);
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
}

.enquiry-card div {
  display: grid;
  justify-items: center;
  gap: 13px;
  min-height: 106px;
  padding: 24px 18px;
}

.enquiry-card a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #000;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.3;
}

.enquiry-card span {
  color: #000;
  font-size: 18px;
  line-height: 1;
}

.enquiry-card:hover {
  border-color: rgba(217, 91, 24, 0.72);
  box-shadow: 0 18px 42px rgba(217, 91, 24, 0.12);
}

@media (max-width: 980px) {
  .ayur-cta {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }
}

/* Minimal clean footer */
.site-footer {
  background: #070707;
  color: #fff;
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(260px, 1fr) minmax(300px, 1fr) minmax(250px, 0.9fr);
  gap: clamp(28px, 4vw, 64px);
  padding: 72px max(24px, 6vw) 58px;
  background: #070707;
}

.footer-brand,
.footer-note,
.footer-main .contact-row,
.footer-links a {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand {
  box-shadow: none;
}

.footer-main .footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-main .footer-logo img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #fff;
}

.footer-main .footer-logo h3 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.footer-main .footer-logo small {
  display: block;
  margin-top: 7px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.footer-brand p,
.footer-note p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.footer-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.footer-pill-row span {
  padding: 8px 10px;
  border: 1px solid rgba(217, 91, 24, 0.34);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.footer-main h4 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 20px;
}

.footer-main h4:after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  background: var(--green);
  border-radius: 999px;
}

.footer-main .contact-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  min-height: auto;
  margin-bottom: 18px !important;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.footer-main .contact-row span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 91, 24, 0.16);
  color: var(--green);
}

.footer-main .contact-row svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.footer-links a {
  position: relative;
  margin: 0;
  padding: 0 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.footer-links a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.footer-links a:hover,
.footer-main .contact-row:hover {
  color: #fff;
  background: transparent;
  transform: translateX(3px);
}

.footer-note .whatsapp-link {
  width: fit-content;
  min-width: 0;
  height: 46px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--green);
  color: #fff !important;
}

.footer-main .social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-main .social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(217, 91, 24, 0.32);
  border-radius: 50%;
  background: transparent;
  color: #fff;
}

.footer-main .social-links a:hover {
  background: var(--green);
  border-color: var(--green);
}

.site-footer .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 20px max(24px, 6vw);
  border-top: 1px solid rgba(217, 91, 24, 0.24);
  background: #050505;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-footer .copyright a {
  color: #fff;
}

@media (max-width: 1100px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    padding: 52px 22px 42px;
  }

  .footer-link-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .copyright {
    display: grid;
    justify-items: start;
  }
}

/* Number-only stats redesign */
.ayur-stats {
  gap: 16px;
  padding: 44px max(24px, 6vw);
  background: #fff;
}

.ayur-stats article {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 26px 18px;
  text-align: center;
  border: 1px solid rgba(217, 91, 24, 0.20);
  border-radius: 8px;
  background: rgba(217, 91, 24, 0.045);
  box-shadow: none;
}

.ayur-stats article:before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 4px;
  background: var(--green);
  border-radius: 0 0 999px 999px;
}

.ayur-stats article:after {
  inset: 8px;
  border-color: rgba(217, 91, 24, 0);
}

.ayur-stats article:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 91, 24, 0.64);
  background: #fff;
  box-shadow: 0 16px 34px rgba(217, 91, 24, 0.12);
}

.ayur-stats article img {
  display: none;
}

.ayur-stats strong {
  padding: 0;
  color: var(--green);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.95;
  letter-spacing: 0;
}

.ayur-stats span {
  max-width: 170px;
  padding: 0;
  color: #000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .ayur-stats article {
    min-height: 132px;
  }
}

/* Clean image-content intro split */
.ayur-intro {
  display: block;
  padding: 90px max(24px, 6vw);
  background: rgba(217, 91, 24, 0.035);
}

.ayur-event-card {
  width: min(1500px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.ayur-event-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.ayur-event-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4.5vw, 70px);
}

.ayur-event-card span {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ayur-event-card h2 {
  max-width: 620px;
  margin: 0 0 20px;
  color: #000;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.ayur-event-card h3 {
  max-width: 560px;
  margin: 12px 0 16px;
  color: #000;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1.05;
}

.ayur-event-card p {
  max-width: 620px;
  margin: 0 0 24px;
  color: #000;
  font-size: 18px;
  line-height: 1.75;
}

.ayur-event-card p + span {
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(217, 91, 24, 0.20);
}

.ayur-event-card .btn {
  width: fit-content;
  min-height: 54px;
  padding: 0 26px;
}

@media (max-width: 980px) {
  .ayur-event-card {
    grid-template-columns: 1fr;
  }

  .ayur-event-card img {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .ayur-intro {
    padding: 58px 18px;
  }

  .ayur-event-card img {
    min-height: 280px;
  }

  .ayur-event-card div {
    padding: 26px 22px;
  }

  .ayur-event-card h2 {
    font-size: 34px;
  }
}

/* Slim premium stats strip */
.ayur-stats {
  width: min(1680px, calc(100% - 72px));
  margin: 0 auto;
  padding: 26px 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border-top: 1px solid rgba(217, 91, 24, 0.18);
  border-bottom: 1px solid rgba(217, 91, 24, 0.18);
}

.ayur-stats article {
  min-width: 0;
  min-height: 0;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: visible;
  border: 0;
  border-right: 1px solid rgba(217, 91, 24, 0.16);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  transform: none;
}

.ayur-stats article:last-child {
  border-right: 0;
}

.ayur-stats article:before,
.ayur-stats article:after {
  display: none;
}

.ayur-stats article:hover {
  transform: none;
  border-color: rgba(217, 91, 24, 0.16);
  background: rgba(217, 91, 24, 0.035);
  box-shadow: none;
}

.ayur-stats strong {
  max-width: 100%;
  color: var(--green);
  font-size: clamp(28px, 2.8vw, 46px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.ayur-stats span {
  max-width: 100%;
  color: #000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .ayur-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(920px, calc(100% - 44px));
  }

  .ayur-stats article:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .ayur-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 28px);
    padding: 18px 0;
  }

  .ayur-stats article:nth-child(3n) {
    border-right: 1px solid rgba(217, 91, 24, 0.16);
  }

  .ayur-stats article:nth-child(2n) {
    border-right: 0;
  }

  .ayur-stats strong {
    font-size: clamp(28px, 9vw, 40px);
  }
}

/* Refined intro split: clean content + controlled image */
.ayur-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  padding: 84px max(24px, 6vw);
  background: #fff;
}

.ayur-intro-copy {
  max-width: 680px;
}

.ayur-intro-copy .section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ayur-intro-copy .section-kicker:before {
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.ayur-intro-copy h2 {
  max-width: 620px;
  margin: 0 0 20px;
  color: #000;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

.ayur-intro-copy p {
  max-width: 640px;
  margin: 0;
  color: #000;
  font-size: 17px;
  line-height: 1.72;
}

.ayur-intro-copy .ayur-intro-lede {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.ayur-intro-copy .ayur-intro-note {
  width: fit-content;
  max-width: 680px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(217, 91, 24, 0.06);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.ayur-event-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 28px;
}

.ayur-event-meta div {
  padding: 18px 20px;
  border: 1px solid rgba(217, 91, 24, 0.20);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(217, 91, 24, 0.035);
}

.ayur-event-meta small {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1.35;
  text-transform: uppercase;
}

.ayur-event-meta strong {
  display: block;
  color: #000;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.25;
}

.ayur-intro-copy .btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 6px;
}

.ayur-intro-media {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.24);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.10);
}

.ayur-intro-media:before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
}

.ayur-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.ayur-intro-poster {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fffaf0, #fff3df);
}

.ayur-intro-poster img {
  height: 100%;
  max-height: 660px;
  object-fit: contain;
  object-position: center;
  background: #fffaf0;
}

.ayur-intro-media figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.ayur-intro-media figcaption b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 16px;
}

.ayur-intro-media figcaption span {
  max-width: 160px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .ayur-intro {
    grid-template-columns: 1fr;
  }

  .ayur-intro-copy {
    max-width: 760px;
  }

  .ayur-intro-media,
  .ayur-intro-media img {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .ayur-intro {
    padding: 58px 18px;
    gap: 28px;
  }

  .ayur-intro-copy h2 {
    font-size: 34px;
  }

  .ayur-event-meta {
    grid-template-columns: 1fr;
  }

  .ayur-intro-media,
  .ayur-intro-media img {
    min-height: 300px;
  }

  .ayur-intro-media figcaption {
    left: 14px;
    bottom: 14px;
  }
}

/* Community stats section like the reference */
.ayur-stats {
  width: 100%;
  margin: 0;
  padding: 86px max(24px, 7vw) 78px;
  display: block;
  background: rgba(217, 91, 24, 0.045);
  border: 0;
}

.stat-section-head {
  max-width: 1040px;
  margin: 0 auto 34px;
  text-align: center;
}

.stat-section-head span {
  display: block;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  line-height: 1.35;
  text-transform: uppercase;
}

.stat-section-head h2 {
  margin: 0;
  color: #000;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.stat-section-head i {
  position: relative;
  display: block;
  width: 150px;
  height: 18px;
  margin: 24px auto 22px;
}

.stat-section-head i:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(217, 91, 24, 0.38);
}

.stat-section-head i:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 12px #fff7f3;
  transform: translate(-50%, -50%);
}

.stat-section-head p {
  max-width: 860px;
  margin: 0 auto;
  color: #000;
  font-size: 18px;
  line-height: 1.55;
}

.stat-section-head p strong {
  color: #000;
}

.stat-card-grid {
  width: min(1640px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ayur-stats .stat-card-grid article {
  min-height: 128px;
  min-width: 0;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 31, 0.88);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  transform: none;
  transition: border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.ayur-stats .stat-card-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 18px 34px rgba(217, 91, 24, 0.12);
}

.ayur-stats .stat-card-grid article:before,
.ayur-stats .stat-card-grid article:after {
  display: none;
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: #000;
  background: #fff;
  flex: none;
}

.stat-icon svg {
  width: 52px;
  height: 52px;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.ayur-stats .stat-card-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: clamp(26px, 2.2vw, 32px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.ayur-stats .stat-card-grid span:not(.stat-icon) {
  display: block;
  max-width: 100%;
  color: #000;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: left;
  text-transform: none;
}

@media (max-width: 1100px) {
  .stat-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ayur-stats {
    padding: 62px 18px;
  }

  .stat-section-head span {
    font-size: 11px;
  }

  .stat-section-head p {
    font-size: 16px;
  }

  .stat-card-grid {
    grid-template-columns: 1fr;
  }

  .ayur-stats .stat-card-grid article {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    min-height: 110px;
    padding: 20px;
    border-radius: 8px;
  }

  .stat-icon {
    width: 64px;
    height: 64px;
  }

  .stat-icon svg {
    width: 42px;
    height: 42px;
  }
}

/* Clean single-line highlight ticker */
.ticker {
  overflow: hidden;
  padding: 0 max(18px, 6vw);
  background: #fff;
  border-top: 1px solid rgba(217, 91, 24, 0.18);
  border-bottom: 1px solid rgba(217, 91, 24, 0.18);
  color: #000;
}

.ticker-inner {
  width: min(1640px, 100%);
  min-height: 62px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 26px;
}

.ticker-inner > strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 26px;
  border-right: 1px solid rgba(217, 91, 24, 0.28);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-inner > strong:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.ticker-track {
  display: block;
  width: 100%;
  padding: 0;
  color: #000;
  white-space: nowrap;
  animation: none;
}

.ticker-track span,
.ticker span {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #000;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.7px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
}

.ticker-track span:before,
.ticker span:before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 16px;
  border-radius: 50%;
  background: var(--green);
}

.ticker-track span:after,
.ticker span:after {
  display: none;
}

@media (max-width: 720px) {
  .ticker {
    padding: 0 16px;
  }

  .ticker-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 76px;
    padding: 14px 0;
  }

  .ticker-inner > strong {
    width: fit-content;
    padding-right: 0;
    border-right: 0;
    font-size: 11px;
  }

  .ticker-track span,
  .ticker span {
    margin-right: 28px;
    font-size: 13px;
  }
}

/* Ayur Mahotsava style dignitary and speaker cards */
.ayur-leaders,
.ayur-speakers {
  padding: 82px max(24px, 6vw);
  background: #fff;
}

.ayur-speakers {
  background: rgba(217, 91, 24, 0.045);
}

.ayur-leaders .section-title,
.ayur-speakers .section-title {
  max-width: 1040px;
  margin: 0 auto 34px;
  text-align: center;
}

.ayur-leaders .section-title:before,
.ayur-speakers .section-title:before {
  display: none;
}

.ayur-leaders .section-title .eyebrow,
.ayur-speakers .section-title .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  letter-spacing: 2px;
}

.ayur-leaders .section-title h2,
.ayur-speakers .section-title h2 {
  max-width: 100%;
  margin: 0;
  color: #000;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.12;
}

.ayur-leaders .section-title h2:after,
.ayur-speakers .section-title h2:after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  margin: 22px auto 20px;
  background: var(--green);
  border-radius: 999px;
}

.ayur-leaders .section-title p,
.ayur-speakers .section-title p {
  max-width: 760px;
  margin: 0 auto;
  color: #000;
  font-size: 17px;
  line-height: 1.65;
}

.ayur-person-grid,
.ayur-speaker-list {
  width: min(1640px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ayur-person-grid article,
.ayur-speaker-list article {
  min-height: 100%;
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
  transform: none;
}

.ayur-person-grid article:before,
.ayur-person-grid article:after,
.ayur-speaker-list article:before,
.ayur-speaker-list article:after {
  display: none;
}

.ayur-person-grid article:hover,
.ayur-speaker-list article:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 20px 40px rgba(217, 91, 24, 0.14);
}

.ayur-person-grid img,
.ayur-speaker-list img {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ayur-person-grid article:hover img,
.ayur-speaker-list article:hover img {
  transform: none;
  filter: none;
}

.ayur-person-grid h3,
.ayur-speaker-list h3 {
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  color: #000;
  font-size: 20px;
  line-height: 1.25;
}

.ayur-person-grid h3:after,
.ayur-speaker-list h3:after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  margin: 14px auto 0;
  background: var(--green);
}

.ayur-person-grid p,
.ayur-person-grid small,
.ayur-speaker-list p,
.ayur-speaker-list h4 {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 14px;
  line-height: 1.55;
}

.ayur-person-grid small,
.ayur-speaker-list p {
  margin-top: 6px;
  color: rgba(0, 0, 0, 0.68);
}

.ayur-speaker-list div {
  width: 100%;
  padding: 0;
}

.ayur-speaker-list h4 {
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 800;
}

.ayur-speaker-list span {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  margin-top: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(217, 91, 24, 0.22);
  border-radius: 999px;
  background: rgba(217, 91, 24, 0.06);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

@media (max-width: 1180px) {
  .ayur-person-grid,
  .ayur-speaker-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .ayur-person-grid,
  .ayur-speaker-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .ayur-leaders,
  .ayur-speakers {
    padding: 58px 18px;
  }

  .ayur-person-grid,
  .ayur-speaker-list {
    grid-template-columns: 1fr;
  }
}

/* Cleaner featured speaker cards */
.ayur-speakers {
  padding-top: 76px;
  background: #fff;
}

.ayur-speakers .section-title {
  margin-bottom: 38px;
}

.ayur-speaker-list {
  gap: 22px;
}

.ayur-speaker-list article {
  position: relative;
  min-height: 360px;
  padding: 28px 22px 22px;
  justify-content: flex-start;
  border-color: rgba(217, 91, 24, 0.18);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

.ayur-speaker-list article:before {
  content: "";
  display: block;
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 4px;
  background: var(--green);
  border-radius: 0 0 999px 999px;
}

.ayur-speaker-list article img {
  width: 142px;
  height: 142px;
  margin: 0 auto 20px;
  border: 4px solid #fff;
  outline: 1px solid rgba(217, 91, 24, 0.30);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.ayur-speaker-list h3 {
  min-height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.22;
}

.ayur-speaker-list h3:after {
  width: 54px;
  height: 2px;
  margin-top: 12px;
}

.ayur-speaker-list h4 {
  min-height: 34px;
  margin: 0;
  color: var(--green);
  font-size: 15px;
  line-height: 1.45;
}

.ayur-speaker-list p {
  display: none;
  min-height: 0;
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.ayur-speaker-list span {
  min-height: 0;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--green);
  font-size: 13px;
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .ayur-speaker-list article {
    min-height: 350px;
  }
}

@media (max-width: 560px) {
  .ayur-speaker-list article {
    min-height: 0;
  }

  .ayur-speaker-list h3,
  .ayur-speaker-list h4,
  .ayur-speaker-list p {
    min-height: 0;
  }
}

/* Proper content-driven hero slider */
.hero {
  min-height: clamp(620px, calc(100vh - 92px), 790px);
  display: grid;
  align-items: center;
  background: #000;
  border-bottom: 0;
}

.hero:after {
  display: none;
}

.hero-img {
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.hero-img.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-overlay {
  display: block;
  z-index: 1;
  background: rgba(0, 0, 0, 0.32);
}

.hero.hero-light .hero-overlay {
  background: rgba(255, 255, 255, 0.18);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 80px));
  max-width: 760px;
  margin: 0 0 104px max(36px, 4vw);
  padding: 28px 30px;
  border-left: 5px solid var(--green);
  background: rgba(0, 0, 0, 0.38);
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
  color: #fff;
}

.hero-content:before {
  display: none;
}

.hero-kicker {
  display: block;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-text {
  max-width: 690px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
}

.hero.hero-light .hero-kicker {
  color: var(--green);
}

.hero.hero-light h1,
.hero.hero-light .hero-text {
  color: #000;
  text-shadow: none;
}

.hero-actions {
  margin-top: 24px;
  gap: 12px;
}

.hero-actions .btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.hero-actions .btn:after {
  content: "↗";
  margin-left: 14px;
  font-size: 20px;
  line-height: 1;
}

.hero-actions .btn.primary,
.hero-actions .btn.ghost {
  background: var(--green);
  color: #fff !important;
  border: 0;
}

.hero:not(.hero-light) .hero-actions .btn.primary,
.hero:not(.hero-light) .hero-actions .btn.ghost {
  background: var(--green);
}

.carousel-panel {
  z-index: 5;
  left: max(36px, 4vw);
  bottom: 30px;
  width: min(680px, calc(100% - 72px));
  min-height: 78px;
  border-left: 5px solid var(--green);
}

.hero.hero-light .carousel-panel {
  border-left-color: var(--green);
}

.hero.hero-light .slide-label span {
  color: var(--green);
}

.hero.hero-light .hero-dots button.active {
  background: var(--green);
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 130px;
    padding: 24px 22px;
  }

  .hero-kicker {
    font-size: clamp(16px, 5vw, 24px);
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .hero-actions .btn {
    min-height: 52px;
    padding: 0 20px;
    font-size: 14px;
  }

  .carousel-panel {
    left: 18px;
    width: calc(100% - 36px);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 760px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* Business networking section from Ayur Mahotsava */
.ayur-network {
  padding: 88px max(24px, 5.2vw);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  background: #fff;
}

.network-copy {
  max-width: 850px;
}

.ayur-network .section-kicker {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ayur-network .section-kicker:before {
  display: none;
}

.ayur-network h2 {
  max-width: 820px;
  margin: 0;
  color: #000;
  font-size: clamp(36px, 4.1vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
}

.ayur-network h2 span {
  color: var(--green);
}

.ayur-network h2:after {
  content: "";
  display: block;
  width: min(100%, 640px);
  height: 2px;
  margin: 30px 0 34px;
  background: var(--green);
  border-radius: 999px;
}

.ayur-network p {
  max-width: 820px;
  margin: 0;
  color: rgba(0, 0, 0, 0.64);
  font-size: clamp(17px, 1.28vw, 21px);
  font-weight: 500;
  line-height: 1.45;
}

.network-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 40px 0 30px;
}

.network-meta article {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 0 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.18);
}

.network-meta article:first-child {
  padding-left: 0;
}

.network-meta article:last-child {
  padding-right: 0;
  border-right: 0;
}

.network-meta b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--green);
}

.network-meta svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.network-meta span {
  color: #000;
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 500;
  line-height: 1.35;
}

.network-btn {
  min-height: 60px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--green);
  color: #fff !important;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.network-btn:after {
  content: "↗";
  margin-left: 14px;
  font-size: 20px;
}

.network-media {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-left: 4px solid rgba(217, 91, 24, 0.38);
  border-radius: 220px 0 0 220px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.10);
}

.network-media:before {
  content: "";
  position: absolute;
  inset: 0 0 0 18px;
  z-index: 1;
  pointer-events: none;
  border-left: 2px solid rgba(217, 91, 24, 0.34);
  border-radius: 220px 0 0 220px;
}

.network-media:after {
  display: none;
}

.network-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1120px) {
  .ayur-network {
    grid-template-columns: 1fr;
  }

  .network-media,
  .network-media img {
    min-height: 430px;
  }
}

@media (max-width: 720px) {
  .ayur-network {
    padding: 62px 18px;
  }

  .network-meta {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .network-meta article {
    padding: 0;
    border-right: 0;
  }

  .network-media {
    min-height: 310px;
    border-radius: 8px;
  }

  .network-media:before {
    display: none;
  }

  .network-media img {
    min-height: 310px;
  }
}

/* Compact business networking section */
.ayur-network {
  padding: 64px max(24px, 5vw);
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 4vw, 54px);
}

.ayur-network .section-kicker {
  margin-bottom: 14px;
  font-size: 15px;
}

.ayur-network h2 {
  max-width: 720px;
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.14;
}

.ayur-network h2:after {
  width: min(100%, 560px);
  margin: 22px 0 24px;
}

.ayur-network p {
  max-width: 720px;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.55;
}

.network-meta {
  margin: 28px 0 24px;
}

.network-meta article {
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  padding: 0 14px;
}

.network-meta b {
  width: 26px;
  height: 26px;
}

.network-meta svg {
  width: 23px;
  height: 23px;
}

.network-meta span {
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.3;
}

.network-btn {
  min-height: 50px;
  padding: 0 24px;
  font-size: 15px;
}

.network-media {
  min-height: 410px;
  border-radius: 150px 8px 8px 150px;
}

.network-media:before {
  border-radius: 150px 8px 8px 150px;
}

.network-media img {
  min-height: 410px;
}

@media (max-width: 1120px) {
  .ayur-network {
    grid-template-columns: 1fr;
  }

  .network-media,
  .network-media img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .ayur-network {
    padding: 50px 18px;
  }

  .ayur-network h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .network-media,
  .network-media img {
    min-height: 280px;
  }
}

/* Hide hero carousel info panel */
.hero .carousel-panel {
  display: none !important;
}

.hero-content {
  margin-bottom: 0;
}

/* Site-wide inner page redesign aligned with home page */
main:not(#home) {
  background: #fff;
}

main:not(#home) .page-hero {
  min-height: clamp(430px, 56vh, 600px);
  display: grid;
  align-items: end;
  background: #000;
  border-bottom: 5px solid var(--green);
}

main:not(#home) .page-hero:before,
main:not(#home) .achievements-hero:after,
main:not(#home) .initiatives-hero:after,
main:not(#home) .swasth-hero:after,
main:not(#home) .wellness-hero:after {
  background: rgba(0, 0, 0, 0.36);
}

main:not(#home) .page-hero img {
  top: 0;
  height: 100%;
  opacity: 0.92;
  filter: saturate(1.04) contrast(1.02);
}

main:not(#home) .page-hero .page-hero-content {
  width: min(1180px, 100%);
  padding: 104px max(22px, 6vw) 58px;
  color: #fff;
}

main:not(#home) .breadcrumb {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-left: 4px solid var(--green);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.30);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

main:not(#home) .page-hero h1 {
  max-width: 880px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.03;
  letter-spacing: 0;
}

main:not(#home) .page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.65;
}

main:not(#home) .page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

main:not(#home) .btn,
main:not(#home) .nav-btn {
  border-radius: 6px;
}

main:not(#home) .btn.primary {
  background: var(--green);
  color: #fff !important;
}

main:not(#home) .btn.ghost {
  border: 1px solid rgba(217, 91, 24, 0.34);
  background: #fff;
  color: #000 !important;
}

main:not(#home) .btn.light {
  background: #fff;
  color: #000 !important;
}

main:not(#home) .page-section,
main:not(#home) .split,
main:not(#home) .experience,
main:not(#home) .events,
main:not(#home) .speakers,
main:not(#home) .gallery,
main:not(#home) .cta {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 76px max(22px, 6vw);
}

main:not(#home) .page-section.compact {
  padding-top: 58px;
  padding-bottom: 58px;
}

main:not(#home) .feature-band {
  background: rgba(217, 91, 24, 0.04);
  border-top: 1px solid rgba(217, 91, 24, 0.14);
  border-bottom: 1px solid rgba(217, 91, 24, 0.14);
}

main:not(#home) .section-kicker,
main:not(#home) .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  line-height: 1.3;
  text-transform: uppercase;
}

main:not(#home) .section-kicker:before,
main:not(#home) .eyebrow:before {
  content: "";
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

main:not(#home) .section-heading,
main:not(#home) .copy h2,
main:not(#home) .section-title h2,
main:not(#home) .cta h2 {
  max-width: 920px;
  margin: 0 0 22px;
  color: #000;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: 0;
}

main:not(#home) .lead,
main:not(#home) .copy p,
main:not(#home) .section-title p,
main:not(#home) .card p,
main:not(#home) .event-list p,
main:not(#home) .speaker-grid p,
main:not(#home) .cta p {
  max-width: 780px;
  color: #000;
  font-size: 17px;
  line-height: 1.7;
}

main:not(#home) .wide-panel,
main:not(#home) .contact-layout,
main:not(#home) .swasth-booking-shell,
main:not(#home) .wellness-intro-grid,
main:not(#home) .wellness-contact-card,
main:not(#home) .wellness-vision-grid,
main:not(#home) .map-panel {
  width: min(1500px, 100%);
  margin: 0 auto;
}

main:not(#home) .wide-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

main:not(#home) .wide-panel > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

main:not(#home) .mini-grid,
main:not(#home) .feature-grid,
main:not(#home) .event-cards,
main:not(#home) .team-grid,
main:not(#home) .initiative-step-grid,
main:not(#home) .swasth-doctor-grid,
main:not(#home) .wellness-treatment-grid,
main:not(#home) .wellness-team-grid,
main:not(#home) .wellness-info-cards,
main:not(#home) .wellness-brochure-grid {
  width: min(1500px, 100%);
  margin-left: auto;
  margin-right: auto;
  gap: 22px;
}

main:not(#home) .feature-card,
main:not(#home) .core-focus-card,
main:not(#home) .event-card,
main:not(#home) .contact-card,
main:not(#home) .initiative-step-grid article,
main:not(#home) .wellness-treatment-card,
main:not(#home) .wellness-team-grid article,
main:not(#home) .wellness-vision-grid article,
main:not(#home) .wellness-info-cards article,
main:not(#home) .swasth-doctor-card,
main:not(#home) .form-shell,
main:not(#home) .timeline article {
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

main:not(#home) .feature-card:hover,
main:not(#home) .core-focus-card:hover,
main:not(#home) .event-card:hover,
main:not(#home) .contact-card:hover,
main:not(#home) .initiative-step-grid article:hover,
main:not(#home) .wellness-treatment-card:hover,
main:not(#home) .wellness-team-grid article:hover,
main:not(#home) .wellness-vision-grid article:hover,
main:not(#home) .swasth-doctor-card:hover,
main:not(#home) .timeline article:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 91, 24, 0.48);
  box-shadow: 0 20px 42px rgba(217, 91, 24, 0.12);
}

main:not(#home) .feature-card b,
main:not(#home) .core-focus-card b,
main:not(#home) .initiative-step-grid b,
main:not(#home) .wellness-treatment-card b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 14px;
}

main:not(#home) .feature-card h3,
main:not(#home) .event-card h3,
main:not(#home) .contact-card h3,
main:not(#home) .initiative-step-grid h3,
main:not(#home) .wellness-treatment-card h3,
main:not(#home) .wellness-team-grid h3,
main:not(#home) .swasth-doctor-card h3,
main:not(#home) .timeline h3 {
  color: #000;
  letter-spacing: 0;
}

main:not(#home) .event-card img,
main:not(#home) .initiative-image-card img,
main:not(#home) .swasth-doctor-card img,
main:not(#home) .wellness-team-grid img,
main:not(#home) .wellness-brochure-grid img {
  border-radius: 8px 8px 0 0;
  object-fit: cover;
  object-position: center;
}

main:not(#home) .initiative-image-grid {
  width: min(1500px, 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

main:not(#home) .initiative-image-card {
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

main:not(#home) .initiative-image-card img {
  width: 100%;
  height: 280px;
}

main:not(#home) .initiative-card-body {
  padding: 26px;
}

main:not(#home) .timeline {
  width: min(1300px, 100%);
  margin: 28px auto 0;
}

main:not(#home) .timeline article {
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  padding: 20px;
  margin-bottom: 16px;
}

main:not(#home) .timeline time {
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}

main:not(#home) .tag,
main:not(#home) .gallery-tabs a,
main:not(#home) .initiative-badges span,
main:not(#home) .swasth-points span {
  border: 1px solid rgba(217, 91, 24, 0.24);
  border-radius: 999px;
  background: rgba(217, 91, 24, 0.055);
  color: #000;
  font-weight: 800;
}

main:not(#home) .gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 34px;
}

main:not(#home) .gallery-tabs a.active,
main:not(#home) .gallery-tabs a:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

main:not(#home) .photo-mosaic {
  width: min(1500px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

main:not(#home) .photo-mosaic figure {
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

main:not(#home) .photo-mosaic img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

main:not(#home) .photo-mosaic figcaption {
  padding: 14px 16px;
  color: #000;
  font-weight: 800;
}

/* Events page gallery-style redesign */
.events-page .events-hero {
  min-height: clamp(500px, 62vh, 680px);
}

.events-page .events-hero:before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.36) 58%, rgba(0, 0, 0, 0.18));
}

.events-page .events-hero img {
  object-position: center center;
}

.events-page .events-hero .page-hero-content {
  padding-bottom: 74px;
}

.events-page .events-hero h1 {
  max-width: 760px;
  text-transform: uppercase;
}

.events-page .event-stats {
  width: min(1180px, calc(100% - 44px));
  margin-top: -46px;
  padding: 0;
  position: relative;
  z-index: 4;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.events-page .event-stats .stat {
  border: 0;
  border-right: 1px solid rgba(217, 91, 24, 0.14);
  border-radius: 0;
  box-shadow: none;
}

.events-page .event-stats .stat:last-child {
  border-right: 0;
}

.event-category-panel {
  padding-top: 88px !important;
}

.event-category-grid {
  width: min(1500px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 34px auto 0;
}

.event-category-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
  isolation: isolate;
}

.event-category-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.72));
}

.event-category-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.event-category-card span,
.event-category-card strong {
  margin-left: 28px;
  margin-right: 28px;
}

.event-category-card span {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.event-category-card strong {
  width: fit-content;
  margin-bottom: 28px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.event-category-card:hover img {
  transform: scale(1.06);
}

.event-showcase-section {
  border-top: 1px solid rgba(217, 91, 24, 0.12);
}

.event-past-section {
  background: rgba(217, 91, 24, 0.04);
}

.event-showcase-grid {
  width: min(1500px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 34px auto 0;
}

.event-showcase-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.event-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 91, 24, 0.45);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
}

.event-showcase-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #111;
}

.event-showcase-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28));
}

.event-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.event-showcase-card:hover .event-showcase-image img {
  transform: scale(1.055);
}

.event-showcase-image time {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  min-width: 72px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.event-showcase-image time b {
  color: var(--green);
}

.event-showcase-body {
  display: flex;
  min-height: 280px;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.event-showcase-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.event-showcase-meta strong,
.event-showcase-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.event-showcase-meta strong {
  background: var(--green);
  color: #fff;
}

.event-showcase-meta span {
  border: 1px solid rgba(217, 91, 24, 0.18);
  background: rgba(217, 91, 24, 0.06);
  color: #000;
}

.event-showcase-card h3 {
  margin: 0 0 10px;
  color: #000;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: 0;
}

.event-showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.event-showcase-card .event-venue {
  margin-bottom: 12px;
  color: #000;
  font-weight: 800;
}

.event-showcase-card .inline-link {
  margin-top: auto;
  padding-top: 18px;
}

.event-empty {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px dashed rgba(217, 91, 24, 0.32);
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1100px) {
  .event-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .events-page .events-hero {
    min-height: 470px;
  }

  .events-page .events-hero:before {
    background: rgba(0, 0, 0, 0.52);
  }

  .events-page .event-stats {
    width: 100%;
    margin-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .events-page .event-stats .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(217, 91, 24, 0.12);
  }

  .event-category-panel {
    padding-top: 54px !important;
  }

  .event-category-grid,
  .event-showcase-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-category-card {
    min-height: 260px;
  }

  .event-category-card span,
  .event-category-card strong {
    margin-left: 20px;
    margin-right: 20px;
  }

  .event-category-card span {
    font-size: 30px;
  }

  .event-category-card strong {
    margin-bottom: 20px;
  }

  .event-showcase-image {
    aspect-ratio: 4 / 3;
  }

  .event-showcase-body {
    min-height: 0;
    padding: 20px;
  }
}

main:not(#home) .quote-strip {
  background: #000;
  color: #fff;
}

main:not(#home) .quote-strip h2,
main:not(#home) .quote-strip p {
  color: #fff;
}

main:not(#home) input,
main:not(#home) textarea,
main:not(#home) select {
  border: 1px solid rgba(217, 91, 24, 0.22);
  border-radius: 6px;
  background: #fff;
  color: #000;
}

main:not(#home) input:focus,
main:not(#home) textarea:focus,
main:not(#home) select:focus {
  outline: 2px solid rgba(217, 91, 24, 0.22);
  border-color: var(--green);
}

main:not(#home) .contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

main:not(#home) .contact-stack {
  display: grid;
  gap: 14px;
}

main:not(#home) .contact-card {
  padding: 24px;
}

main:not(#home) .map-panel {
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

main:not(#home) .map-panel iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 980px) {
  main:not(#home) .wide-panel,
  main:not(#home) .contact-layout,
  main:not(#home) .wellness-intro-grid,
  main:not(#home) .swasth-booking-shell {
    grid-template-columns: 1fr;
  }

  main:not(#home) .initiative-image-grid,
  main:not(#home) .photo-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  main:not(#home) .wide-panel > img {
    height: 330px;
  }
}

@media (max-width: 640px) {
  main:not(#home) .page-hero {
    min-height: 430px;
  }

  main:not(#home) .page-hero .page-hero-content {
    padding: 86px 18px 42px;
  }

main:not(#home) .page-hero h1 {
    font-size: 36px;
  }

  main:not(#home) .page-hero p {
    font-size: 16px;
  }

  main:not(#home) .page-section,
  main:not(#home) .split,
  main:not(#home) .experience,
  main:not(#home) .events,
  main:not(#home) .speakers,
  main:not(#home) .gallery,
  main:not(#home) .cta {
    padding: 54px 18px;
  }

  main:not(#home) .wide-panel {
    padding: 22px;
  }

  main:not(#home) .initiative-image-grid,
  main:not(#home) .photo-mosaic {
    grid-template-columns: 1fr;
  }

  main:not(#home) .timeline article {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  main:not(#home) .timeline .tag {
    display: none;
  }
}

/* Premium readable typography */
body,
input,
textarea,
select,
button {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.nav-links a,
.nav-item > a,
.nav-btn,
.btn,
.section-heading,
.page-hero h1,
.hero h1,
.hero-kicker,
.stat-section-head h2,
.ayur-network h2,
.ayur-speaker-list h3,
.ayur-person-grid h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

p,
li,
small,
label,
input,
textarea,
select,
.lead,
.hero-text,
.page-hero p,
.section-title p,
.slide-label small,
.contact-row,
.footer-main p {
  font-family: var(--font-body);
}

p,
.lead,
.hero-text,
.page-hero p,
main:not(#home) .lead,
main:not(#home) .page-hero p {
  font-weight: 500;
}

.nav-links a,
.nav-item > a,
.btn,
.nav-btn {
  font-weight: 800;
}

.brand span,
.footer-logo h3 {
  font-weight: 900;
}

/* Balanced navbar typography */
.nav-links {
  gap: 24px;
}

.nav-links a,
.nav-item > a {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.dropdown-menu a {
  font-size: 14px;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a,
  .nav-item > a {
    font-size: 15px;
  }
}

/* Final responsive safety layer for all devices */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

table {
  max-width: 100%;
}

.site-header,
.navbar,
main,
section,
footer {
  max-width: 100%;
}

@media (min-width: 1600px) {
  .navbar,
  main:not(#home) .page-hero .page-hero-content,
  .footer-main {
    max-width: 1640px;
  }

  .navbar,
  .footer-main {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1320px) {
  .navbar {
    gap: 16px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .brand img {
    width: 74px;
    height: 74px;
  }

  .brand span {
    font-size: 32px;
  }

  .brand small {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a,
  .nav-item > a {
    font-size: 14px;
  }

  .nav-btn {
    min-height: 50px;
    padding: 0 18px;
    font-size: 13px;
  }
}

@media (max-width: 1240px) {
  .nav-links,
  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar {
    position: relative;
    min-height: 96px;
  }

  .navbar.open .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(217, 91, 24, 0.20);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  }

  .navbar.open .nav-links a,
  .navbar.open .nav-item > a {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    padding: 12px;
    border: 1px solid rgba(217, 91, 24, 0.14);
    border-radius: 6px;
    background: #fff;
    color: #000;
    font-size: 14px;
  }

  .navbar.open .nav-links a.active,
  .navbar.open .nav-item.active > a {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
  }

  .navbar.open .nav-item {
    display: grid;
    padding: 0;
  }

  .navbar.open .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: calc(100% - 36px);
    max-width: none;
    margin-left: 18px;
    margin-right: 18px;
  }

  .ayur-intro,
  .ayur-network {
    grid-template-columns: 1fr;
  }

  .ayur-intro-media,
  .network-media {
    order: -1;
  }

  .ayur-event-meta,
  .stat-card-grid,
  .ayur-person-grid,
  .ayur-speaker-list,
  .ayur-core-grid,
  .ayur-experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-main,
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .top-line {
    display: none;
  }

  .navbar {
    min-height: 82px;
    padding: 10px 16px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand span {
    font-size: 24px;
    line-height: 1;
  }

  .brand small {
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .navbar.open .nav-links {
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(640px, calc(100svh - 82px));
    align-items: end;
  }

  .hero-content {
    width: calc(100% - 40px);
    max-width: 420px;
    margin: 0 20px 26px;
    padding: 16px 16px 18px;
    border-left-width: 4px;
    background: rgba(0, 0, 0, 0.46);
  }

  .hero h1 {
    font-size: clamp(25px, 7.4vw, 34px);
    line-height: 1.08;
  }

  .hero-kicker {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .hero-text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 16px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero-actions .btn:after {
    margin-left: 10px;
    font-size: 17px;
  }

  .hero-actions [hidden] {
    display: none !important;
  }

  .ticker-inner {
    grid-template-columns: 1fr;
    min-height: 76px;
    gap: 10px;
    padding: 14px 0;
  }

  .ayur-intro,
  .ayur-experience,
  .ayur-core,
  .ayur-leaders,
  .ayur-speakers,
  .ayur-cta,
  .ayur-network,
  .ayur-stats {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ayur-event-meta,
  .stat-card-grid,
  .ayur-person-grid,
  .ayur-speaker-list,
  .ayur-core-grid,
  .ayur-experience-grid,
  .enquiry-card-grid,
  .ayur-cta {
    grid-template-columns: 1fr;
  }

  .ayur-event-card,
  .ayur-event-card img,
  .ayur-intro-media,
  .ayur-intro-media img,
  .network-media,
  .network-media img {
    min-height: 280px;
  }

  .network-media {
    border-radius: 8px;
  }

  .network-media:before {
    display: none;
  }

  main:not(#home) .feature-grid,
  main:not(#home) .event-cards,
  main:not(#home) .team-grid,
  main:not(#home) .initiative-step-grid,
  main:not(#home) .swasth-doctor-grid,
  main:not(#home) .wellness-treatment-grid,
  main:not(#home) .wellness-team-grid,
  main:not(#home) .wellness-vision-grid,
  main:not(#home) .wellness-brochure-grid,
  main:not(#home) .form-grid,
  main:not(#home) .mini-grid,
  main:not(#home) .wellness-info-cards {
    grid-template-columns: 1fr;
  }

  main:not(#home) .page-actions,
  .wellness-contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  main:not(#home) .page-actions .btn,
  .wellness-contact-actions .btn {
    width: 100%;
  }

  main:not(#home) .wide-panel > img,
  main:not(#home) .initiative-image-card img,
  main:not(#home) .photo-mosaic img {
    height: 250px;
  }

  .site-footer .footer-main,
  .footer-main,
  .footer-link-grid,
  .site-footer .copyright {
    grid-template-columns: 1fr;
  }

  .site-footer .copyright {
    display: grid;
    gap: 10px;
    justify-items: start;
  }
}

@media (max-width: 420px) {
  .brand span {
    font-size: 21px;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .hero {
    min-height: min(620px, calc(100svh - 82px));
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
    margin-bottom: 22px;
    padding: 14px 14px 16px;
  }

  .hero h1 {
    font-size: 27px;
  }

  main:not(#home) .page-hero h1,
  .section-heading,
  main:not(#home) .section-heading {
    font-size: 26px;
  }

  .hero-text {
    font-size: 13.5px;
  }

  .hero-actions .btn {
    min-height: 40px;
    font-size: 12.5px;
  }

  main:not(#home) .page-hero p,
  main:not(#home) .lead {
    font-size: 15px;
  }

  .ayur-stats .stat-card-grid article,
  .ayur-speaker-list article,
  .ayur-person-grid article,
  main:not(#home) .wide-panel,
  main:not(#home) .form-shell,
  main:not(#home) .contact-card {
    padding: 18px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

/* Mobile footer polish: keep copyright centered and lift WhatsApp above it */
@media (max-width: 760px) {
  .site-footer .copyright {
    min-height: auto;
    display: grid;
    justify-items: center;
    gap: 7px;
    padding: 18px 22px calc(22px + env(safe-area-inset-bottom));
    text-align: center;
    line-height: 1.45;
  }

  .site-footer .copyright span,
  .site-footer .copyright > span:last-child {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .site-footer .copyright #footerYear {
    display: inline;
    width: auto;
  }

  .site-footer .copyright a {
    display: inline-flex;
    justify-content: center;
  }

  .whatsapp-float {
    right: 18px;
    bottom: calc(104px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
}

.dropdown-toggle {
  display: none;
}

@media (max-width: 1240px) {
  .navbar.open .nav-dropdown {
    position: relative;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 8px;
  }

  .navbar.open .nav-dropdown > a {
    grid-column: 1;
    padding-right: 52px;
    justify-content: center;
  }

  .navbar.open .nav-dropdown > a:before {
    display: none;
  }

  .navbar.open .dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-grid;
    place-items: center;
    min-height: 44px;
    width: 48px;
    padding: 0;
    border: 0;
    border-left: 1px solid rgba(217, 91, 24, 0.16);
    border-radius: 0 6px 6px 0;
    background: transparent;
    color: #000;
    cursor: pointer;
  }

  .navbar.open .dropdown-toggle span {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(-1px, -1px);
    transition: transform 0.2s ease;
  }

  .navbar.open .nav-dropdown.submenu-open .dropdown-toggle {
    background: transparent;
    color: #fff;
    border-left-color: rgba(255, 255, 255, 0.34);
  }

  .navbar.open .nav-dropdown.active .dropdown-toggle {
    color: #fff;
    border-left-color: rgba(255, 255, 255, 0.34);
  }

  .navbar.open .nav-dropdown.submenu-open .dropdown-toggle span {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .navbar.open .nav-dropdown .dropdown-menu {
    grid-column: 1 / -1;
    display: none !important;
    opacity: 0;
    visibility: hidden;
  }

  .navbar.open .nav-dropdown.submenu-open .dropdown-menu {
    display: grid !important;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 760px) {
  .navbar.open .nav-links {
    left: 50%;
    right: auto;
    width: min(280px, calc(100vw - 44px));
    transform: translateX(-50%);
  }
}

/* Normal mobile menu */
@media (max-width: 1240px) {
  .navbar.open .nav-links {
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    transform: none;
    gap: 0;
    padding: 8px 18px 10px;
    border: 0;
    border-top: 1px solid rgba(217, 91, 24, 0.14);
    border-radius: 0 0 10px 10px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.13);
  }

  .navbar.open .nav-links > a,
  .navbar.open .nav-item > a {
    min-height: 46px;
    justify-content: flex-start;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(217, 91, 24, 0.12);
    border-radius: 0;
    background: transparent;
    color: #000;
    text-align: left;
    box-shadow: none;
  }

  .navbar.open .nav-links > a.active,
  .navbar.open .nav-item.active > a {
    background: transparent;
    color: var(--green);
    border-color: rgba(217, 91, 24, 0.12);
    box-shadow: none;
  }

  .navbar.open .nav-dropdown {
    gap: 0;
  }

  .navbar.open .nav-dropdown > a {
    padding-right: 46px;
  }

  .navbar.open .dropdown-toggle {
    right: 0;
    min-height: 46px;
    width: 42px;
    border: 0;
    border-bottom: 1px solid rgba(217, 91, 24, 0.12);
    border-radius: 0;
    background: transparent;
    color: #000;
  }

  .navbar.open .nav-dropdown.active .dropdown-toggle,
  .navbar.open .nav-dropdown.submenu-open .dropdown-toggle {
    color: var(--green);
    border-left: 0;
    border-bottom-color: rgba(217, 91, 24, 0.12);
  }

  .navbar.open .nav-dropdown .dropdown-menu {
    margin: 0;
    padding: 4px 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .navbar.open .nav-dropdown .dropdown-menu a,
  .navbar.open .nav-item .dropdown-menu a {
    min-height: 38px;
    justify-content: flex-start;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(217, 91, 24, 0.08);
    border-radius: 0;
    background: transparent;
    color: rgba(0, 0, 0, 0.78);
    font-size: 13px;
    text-align: left;
  }

  .navbar.open .nav-links > a:last-child {
    border-bottom: 0;
  }
}

/* Homepage event popup */
body.popup-open {
  overflow: hidden;
}

.event-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.event-popup.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.event-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(5px);
}

.event-popup-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(280px, 1fr);
  width: min(980px, 100%);
  max-height: min(88vh, 760px);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.24s ease;
}

.event-popup.show .event-popup-dialog {
  transform: translateY(0) scale(1);
}

.event-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.event-popup-media {
  min-height: 520px;
  margin: 0;
  padding: 18px;
  background: #fff7e8;
}

.event-popup-media img {
  width: 100%;
  height: 100%;
  max-height: calc(88vh - 36px);
  object-fit: contain;
  border-radius: 6px;
}

.event-popup-content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 46px 42px;
}

.event-popup-kicker {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217, 91, 24, 0.12);
  color: #a9430d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.event-popup-content h2 {
  margin: 0;
  color: #000;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

.event-popup-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-popup-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(217, 91, 24, 0.22);
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 800;
}

.event-popup-content p {
  margin: 0;
  color: #000;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.65;
  text-transform: uppercase;
}

.event-popup-btn {
  width: fit-content;
}

@media (max-width: 760px) {
  .event-popup {
    align-items: start;
    padding: 16px;
    overflow-y: auto;
  }

  .event-popup-dialog {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }

  .event-popup-media {
    min-height: 0;
    padding: 12px;
  }

  .event-popup-media img {
    max-height: 58vh;
  }

  .event-popup-content {
    gap: 14px;
    padding: 24px 20px 26px;
  }

  .event-popup-content h2 {
    font-size: 32px;
  }

  .event-popup-meta span,
  .event-popup-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .event-popup {
    padding: 10px;
  }

  .event-popup-content h2 {
    font-size: 28px;
  }

  .event-popup-content p {
    font-size: 14px;
  }
}

/* About page hero */
main:not(#home) .about-hero:before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.32) 48%, rgba(0, 0, 0, 0.08));
}

main:not(#home) .about-hero > img {
  object-position: center center;
  opacity: 1;
}

main:not(#home) .about-hero .about-hero-logo {
  position: static;
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 0 18px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  object-fit: contain;
  opacity: 1;
  filter: none;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
}

.about-title-with-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.about-title-with-logo img {
  width: 76px;
  height: 76px;
  flex: none;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.about-title-with-logo .section-heading {
  margin-bottom: 0;
}

.about-title-with-logo.about-title-text-only {
  display: block;
}

.about-logo-feature {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 420px;
  padding: 42px 34px;
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 138, 31, 0.18), transparent 34%),
    linear-gradient(145deg, #fffdf8, #fff5e7);
  text-align: center;
}

.about-logo-feature:before,
.about-logo-feature:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(217, 91, 24, 0.16);
  border-radius: 50%;
}

.about-logo-feature:before {
  width: 360px;
  height: 360px;
}

.about-logo-feature:after {
  width: 250px;
  height: 250px;
  border-color: rgba(16, 96, 58, 0.14);
}

.about-logo-orbit {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 176px;
  height: 176px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
}

.about-logo-orbit span {
  position: absolute;
  inset: -12px;
  border: 2px dashed rgba(217, 91, 24, 0.34);
  border-radius: 50%;
}

.about-logo-orbit img {
  position: relative;
  z-index: 1;
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.about-logo-feature h3,
.about-logo-feature p,
.about-logo-points {
  position: relative;
  z-index: 1;
}

.about-logo-feature h3 {
  margin: 0;
  color: #000;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
}

.about-logo-feature p {
  max-width: 430px;
  margin: 14px 0 0;
  color: #000;
  font-size: 16px;
  line-height: 1.7;
}

.about-logo-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.about-logo-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(217, 91, 24, 0.24);
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 900;
}

main:not(#home) .wide-panel > img.founder-note-photo {
  object-fit: contain;
  object-position: center top;
  background: #fff;
}

main:not(#home) .core-focus-section .core-focus-card:hover {
  background: #fff;
  color: #000;
}

main:not(#home) .core-focus-section .core-focus-card:hover h3,
main:not(#home) .core-focus-section .core-focus-card:hover p {
  color: #000;
}

main:not(#home) .core-focus-section .core-focus-card:hover b {
  background: var(--green);
  color: #fff;
}

main:not(#home) .core-focus-section .core-focus-card:hover .focus-icon {
  background: rgba(217, 91, 24, 0.08);
  color: #000;
  box-shadow: inset 0 0 0 1px rgba(217, 91, 24, 0.18);
}

.vision-mission-section {
  background: linear-gradient(180deg, #fff, rgba(217, 91, 24, 0.04));
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  width: min(1500px, 100%);
  margin: 8px auto 0;
}

.vision-card,
.mission-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.vision-card {
  display: grid;
  align-content: end;
  min-height: 430px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 31, 0.22), transparent 32%),
    linear-gradient(145deg, #fff, #fff7eb);
}

.vision-card:before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(217, 91, 24, 0.18);
  border-radius: 50%;
}

.vision-card span,
.mission-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217, 91, 24, 0.10);
  color: #a9430d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.vision-card h3 {
  position: relative;
  margin: 0 0 16px;
  color: #000;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.vision-card p {
  position: relative;
  max-width: 680px;
  margin: 0;
  color: #000;
  font-size: 17px;
  line-height: 1.75;
}

.mission-card {
  padding: 34px;
}

.mission-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mission-card li {
  position: relative;
  min-height: 48px;
  padding: 12px 14px 12px 48px;
  border: 1px solid rgba(217, 91, 24, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #000;
  font-size: 16px;
  line-height: 1.55;
}

.mission-card li:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #fff;
}

@media (max-width: 920px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .vision-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .vision-card,
  .mission-card {
    padding: 24px;
  }

  .mission-card li {
    padding-right: 12px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  main:not(#home) .about-hero:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
  }

  main:not(#home) .about-hero > img {
    object-position: 63% center;
  }

  main:not(#home) .about-hero .about-hero-logo {
    width: 74px;
    height: 74px;
    margin-bottom: 14px;
  }

  .about-title-with-logo {
    align-items: flex-start;
    gap: 12px;
  }

  .about-title-with-logo img {
    width: 58px;
    height: 58px;
  }

  .about-logo-feature {
    min-height: 330px;
    padding: 32px 18px;
  }

  .about-logo-orbit {
    width: 138px;
    height: 138px;
  }

  .about-logo-orbit img {
    width: 102px;
    height: 102px;
  }
}

/* Events page reference layout */
.events-page .events-hero-kicker {
  display: block;
  margin: 18px 0 12px;
  color: #f5b83b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.events-page .events-hero h1 {
  max-width: 820px;
  margin-top: 0;
  font-size: clamp(34px, 4vw, 58px);
  text-transform: none;
}

.events-page .page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.events-page.events-page .event-showcase-section {
  padding-top: clamp(74px, 8vw, 112px);
  padding-bottom: clamp(74px, 8vw, 112px);
  border-top: 0;
}

.events-page.events-page .event-past-section {
  background: #f3f7f2;
}

.events-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(24, 82, 50, 0.16);
}

.events-section-heading .section-heading {
  margin: 7px 0 0;
}

.events-section-heading > p {
  max-width: 480px;
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.7;
}

.events-page.events-page .event-showcase-grid {
  gap: 28px;
  margin-top: 38px;
}

.events-page.events-page .event-showcase-card {
  border-color: rgba(24, 82, 50, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(16, 45, 29, 0.08);
}

.events-page.events-page .event-showcase-card:hover {
  border-color: rgba(217, 91, 24, 0.4);
  box-shadow: 0 24px 54px rgba(16, 45, 29, 0.14);
}

.events-page.events-page .event-showcase-image {
  aspect-ratio: 16 / 10;
}

.events-page.events-page .event-showcase-image time {
  left: 20px;
  bottom: 20px;
  min-width: 66px;
  border-radius: 12px;
  text-align: center;
}

.events-page.events-page .event-showcase-image time b {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.events-page.events-page .event-showcase-body {
  min-height: 300px;
  padding: 26px;
}

.events-page.events-page .event-showcase-meta strong {
  background: #185232;
}

.events-page.events-page .event-showcase-card h3 {
  font-size: clamp(22px, 2vw, 28px);
}

.events-page.events-page .event-showcase-card .inline-link {
  color: #d95b18;
  font-weight: 900;
}

@media (max-width: 760px) {
  .events-page.events-page .events-hero {
    min-height: 520px;
  }

  .events-page.events-page .events-hero:before {
    background: linear-gradient(0deg, rgba(10, 28, 18, 0.9), rgba(10, 28, 18, 0.4));
  }

  .events-section-heading {
    display: block;
  }

  .events-section-heading > p {
    margin-top: 15px;
  }

  .events-page.events-page .event-showcase-grid {
    margin-top: 28px;
  }

  .events-page.events-page .event-showcase-card {
    border-radius: 14px;
  }

  .events-page.events-page .event-showcase-body {
    min-height: 0;
    padding: 21px;
  }
}

/* Home hero readability overlay */
#home .hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.34) 36%, rgba(0, 0, 0, 0.12) 64%, rgba(0, 0, 0, 0.02) 100%);
}

#home .hero-content,
#home .carousel-panel {
  z-index: 3;
}

#home .hero-content {
  border-left: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#home .hero-kicker,
#home .hero h1,
#home .hero-text {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.56);
}

/* Events hero compact overlay */
.events-page.events-page .events-hero {
  min-height: clamp(360px, 46vh, 470px);
}

.events-page.events-page .events-hero:before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.42) 38%, rgba(0, 0, 0, 0.16) 68%, rgba(0, 0, 0, 0.02) 100%);
}

.events-page.events-page .events-hero .page-hero-content {
  padding-top: 64px;
  padding-bottom: 34px;
}

@media (max-width: 760px) {
  .events-page.events-page .events-hero {
    min-height: 370px;
  }

  .events-page.events-page .events-hero:before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.44) 60%, rgba(0, 0, 0, 0.12) 100%);
  }
}

/* Header overlap fix */
.navbar {
  width: 100%;
  max-width: min(1500px, 100%);
  gap: 12px;
}

.brand {
  flex: 0 1 240px;
  min-width: 0;
  margin-right: clamp(8px, 1vw, 18px);
}

.nav-links {
  flex: 0 1 auto;
  gap: 8px;
}

.nav-links a,
.nav-item > a {
  white-space: nowrap;
}

.nav-btn {
  flex: 0 0 auto;
  padding: 0 15px;
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 1320px) and (min-width: 1241px) {
  .navbar {
    gap: 9px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    flex-basis: 218px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand span {
    font-size: 24px;
  }

  .brand small {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .nav-links {
    gap: 3px;
    padding: 5px;
  }

  .nav-links a,
  .nav-item > a {
    min-height: 34px;
    padding: 7px 7px;
    font-size: 12px;
  }

  .nav-btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 10px;
  }
}
