/* Neevalay Brand Overrides
   Load this AFTER assets/css/kidearn.css
   Brand palette:
   - Soft Aqua:       #5CCCCC
   - Warm Gold:       #F9C764
   - Soft Off-White:  #F8F9F5
   - Clay Terracotta: #D77A61
   - Sage Slate:      #6D8478
   Typography:
   - Headings: Nunito
   - Body:     Nunito Sans
*/

/* Neevalay Brand Overrides (Template-compatible)
   Your website uses the Kidearn template, so many variables/classes start with kidearn-.
   That’s OK — they are just identifiers the template expects.

   ✅ Best practice: keep kidearn identifiers and override the values.
   This file defines Neevalay variables first, then maps template variables (--kidearn-*) to Neevalay.

   Load order:
   1) assets/css/kidearn.css
   2) assets/css/neevalay-brand.css  (this file)
*/

:root{
  --neevalay-head: var(--neevalay-heading-font);
  /* === Neevalay variables (use these for NEW custom CSS) === */
  --neevalay-aqua: #5CCCCC;
  --neevalay-gold: #F9C764;
  --neevalay-offwhite: #F8F9F5;
  --neevalay-terracotta: #D77A61;
  --neevalay-sage: #6D8478;

  --neevalay-heading-font: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --neevalay-body-font: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* === Template mappings (kidearn.css expects these) === */
  --kidearn-font: var(--neevalay-body-font);
  --kidearn-heading-font: var(--neevalay-heading-font);
  --kidearn-special-font: var(--neevalay-heading-font);

  --kidearn-base: var(--neevalay-aqua);
  --kidearn-base-rgb: 92, 204, 204;

  --kidearn-secondary: var(--neevalay-gold);
  --kidearn-secondary-rgb: 249, 199, 100;

  --kidearn-primary: var(--neevalay-terracotta);
  --kidearn-primary-rgb: 215, 122, 97;

  --kidearn-gray: var(--neevalay-offwhite);
  --kidearn-gray-rgb: 248, 249, 245;

  --kidearn-text: var(--neevalay-sage);
  --kidearn-text-rgb: 109, 132, 120;

  --kidearn-black: #0B2038;
  --kidearn-black-rgb: 11, 32, 56;

  --kidearn-border-color: rgba(109,132,120,.18);
  --kidearn-border-color-rgb: 109, 132, 120;
}

/* Background + text smoothing */
body{
  background-color: var(--kidearn-gray);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Links */
a{ color: var(--kidearn-base); }
a:hover, a:focus{ color: var(--kidearn-primary); }

/* Headings (slightly tighter for “premium” look) */
h1,h2,h3,h4,h5,h6{
  letter-spacing: -0.01em;
}

/* Buttons: make CTAs match brand and reduce “template-y” contrast */
.kidearn-btn{
  background-color: var(--kidearn-base);
  color: var(--kidearn-black);
}
.kidearn-btn:before,
.kidearn-btn:after{
  background-color: var(--kidearn-primary);
}
.kidearn-btn:hover{
  color: #fff;
}

/* Slider dots: use Warm Gold for active */
.kidearn-owl__carousel--basic-nav .owl-dots .owl-dot:hover span,
.kidearn-owl__carousel--basic-nav .owl-dots .owl-dot.active span{
  background-color: var(--kidearn-secondary);
}

/* Preloader: match your off-white instead of deep navy */
.preloader{
  background-color: var(--kidearn-gray);
}

/* Scroll-to-top */
.scroll-top{
  box-shadow: inset 0 0 0 2px rgba(109,132,120,.35);
}
.scroll-top__circle path{
  stroke: var(--kidearn-base);
}
.scroll-top::after{
  color: var(--kidearn-black);
}

/* “Right side buttons” (currently hard-coded in kidearn.css) */
.right-btn{
  color: var(--kidearn-black) !important;
  font-family: var(--kidearn-heading-font);
  letter-spacing: 0.02em;
}
.btn-contact{ background: var(--kidearn-base) !important; }
.btn-register{ background: var(--kidearn-secondary) !important; }
.right-btn:hover{ opacity: 0.92; transform: translateX(-2px); }

/* Reduce overly loud shape blend mode in footer (optional premium tweak) */
.main-footer__shape-1, .main-footer__shape-2, .main-footer__shape-3, .main-footer__shape-4{
  mix-blend-mode: normal;
  opacity: 0.12;
}

/* Neevalay Premium Add-ons */
/* Header CTA */
.neevalay-header-cta{
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--kidearn-heading-font);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(11,32,56,.10);
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.main-header__right{
  gap: 10px;
}

/* Hero */
.main-slider-one__shape1,
.main-slider-one__shape2,
.main-slider-one__shape3,
.main-slider-one__shape4,
.main-slider-one__shape5{
  opacity: .25;
  filter: saturate(.9);
}
.neevalay-hero-ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.kidearn-btn.kidearn-btn--outline{
  background: transparent !important;
  color: var(--kidearn-black) !important;
  box-shadow: inset 0 0 0 2px rgba(109,132,120,.30);
}
.kidearn-btn.kidearn-btn--outline:hover{
  color: #fff !important;
  box-shadow: none;
}

/* Trust strip */
.neevalay-trust-strip{
  padding: 18px 0;
  background: rgba(92,204,204,.10);
  border-top: 1px solid rgba(109,132,120,.12);
  border-bottom: 1px solid rgba(109,132,120,.12);
}
.neevalay-trust-strip__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.neevalay-trust-strip__item{
  background: rgba(248,249,245,.80);
  border: 1px solid rgba(109,132,120,.16);
  border-radius: 18px;
  padding: 14px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 22px rgba(11,32,56,.06);
  min-height: 58px;
}
.neevalay-trust-strip__icon{
  width: 36px; height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(249,199,100,.35);
  color: var(--kidearn-black);
  flex: 0 0 auto;
}
.neevalay-trust-strip__text{
  margin: 0;
  font-weight: 700;
  color: var(--kidearn-black);
  font-family: var(--kidearn-heading-font);
  font-size: 14px;
  line-height: 1.2;
}
.neevalay-trust-strip__sub{
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(11,32,56,.70);
}
@media (max-width: 991px){
  .neevalay-trust-strip__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 575px){
  .neevalay-trust-strip__grid{ grid-template-columns: 1fr; }
}

/* Premium enquiry card */
.neevalay-enquiry{
  padding: 70px 0;
  background: var(--kidearn-gray);
}
.neevalay-enquiry__wrap{
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(109,132,120,.18);
  background: #fff;
  box-shadow: 0 18px 40px rgba(11,32,56,.08);
}
.neevalay-enquiry__title{
  font-family: var(--kidearn-heading-font);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--kidearn-black);
}
.neevalay-enquiry__hint{
  margin: 0 0 18px;
  color: rgba(11,32,56,.72);
}
.neevalay-enquiry .form-one__control input,
.neevalay-enquiry .form-one__control select,
.neevalay-enquiry .form-one__control textarea{
  border-radius: 16px;
  border-color: rgba(109,132,120,.22);
}

/* Programs comparison */
.neevalay-compare{
  padding: 60px 0;
  background: #fff;
}
.neevalay-compare__table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(109,132,120,.18);
  box-shadow: 0 16px 34px rgba(11,32,56,.06);
}
.neevalay-compare__table th{
  background: rgba(92,204,204,.14);
  font-family: var(--kidearn-heading-font);
  font-weight: 800;
  color: var(--kidearn-black);
  padding: 14px 14px;
  border-bottom: 1px solid rgba(109,132,120,.18);
}
.neevalay-compare__table td{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(109,132,120,.14);
  color: rgba(11,32,56,.78);
  background: #fff;
}
.neevalay-compare__table tr:last-child td{ border-bottom: 0; }

/* FAQ (Programme Enquiries) */
.neevalay-faq{
  padding: 60px 0;
  background: #F8F9F5; /* brand neutral */
}

.neevalay-faq__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

@media (max-width: 991px){
  .neevalay-faq__grid{ grid-template-columns: 1fr; }
}

.neevalay-faq details{
  border: 1px solid rgba(109,132,120,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  padding: 14px 16px;
  box-shadow: 0 12px 26px rgba(11,32,56,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.neevalay-faq details:hover{
  border-color: rgba(92,204,204,.42);
  box-shadow: 0 16px 34px rgba(11,32,56,.08);
  transform: translateY(-1px);
}

.neevalay-faq summary{
  cursor: pointer;
  font-family: var(--kidearn-heading-font);
  font-weight: 800;
  color: var(--kidearn-black);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  outline: none;
}

.neevalay-faq summary::-webkit-details-marker{ display:none; }

.neevalay-faq summary:focus-visible{
  outline: 3px solid rgba(92,204,204,.35);
  outline-offset: 4px;
  border-radius: 12px;
}

.neevalay-faq__icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(92,204,204,.35);
  background: rgba(92,204,204,.12);
  flex: 0 0 auto;
  position: relative;
}

.neevalay-faq__icon::before,
.neevalay-faq__icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(11,32,56,.70);
  transform: translate(-50%,-50%);
  border-radius: 2px;
}

.neevalay-faq__icon::after{
  transform: translate(-50%,-50%) rotate(90deg);
}

.neevalay-faq details[open] .neevalay-faq__icon::after{
  display: none; /* turns + into – */
}

.neevalay-faq__body{
  margin-top: 10px;
  color: rgba(11,32,56,.76);
  line-height: 1.7;
}

.neevalay-faq__body a{
  color: #5CCCCC;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* WhatsApp floating button + mobile bar */
.neevalay-wa-fab{
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 18px 34px rgba(11,32,56,.18);
  transition: transform .15s ease, opacity .15s ease;
}
.neevalay-wa-fab:hover{ transform: translateY(-2px); opacity: .95; color: #fff; }

.neevalay-mobile-bar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: rgba(248,249,245,.96);
  border-top: 1px solid rgba(109,132,120,.18);
  backdrop-filter: blur(10px);
  display: none;
}
.neevalay-mobile-bar__inner{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px;
  padding: 10px 12px;
}
.neevalay-mobile-bar a{
  border-radius: 14px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--kidearn-heading-font);
  font-weight: 800;
  font-size: 13px;
  color: var(--kidearn-black);
  border: 1px solid rgba(109,132,120,.18);
  background: #fff;
}
.neevalay-mobile-bar a.primary{
  background: var(--kidearn-base);
  border-color: transparent;
}
.neevalay-mobile-bar a.primary:hover{ opacity: .95; }
@media (max-width: 991px){
  .neevalay-mobile-bar{ display: block; }
  /* Prevent content being hidden behind the bar */
  body{ padding-bottom: 76px; }
}

/* === Premium polish (safe overrides) === */

body{ background-color: var(--neevalay-offwhite); }

/* Buttons feel premium */
.kidearn-btn{ border-radius: 14px; box-shadow: 0 10px 24px rgba(11,32,56,.10); }
.kidearn-btn--outline{ border-radius: 14px; }

/* Hide any dead placeholder login links */
a[href="#"]{ scroll-behavior: smooth; }
.topbar-one__info__item a[href="#"]{ display:none !important; }

/* Reduced motion support */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}



/* ====================================================================
   Neevalay Conversions & Premium UI Components
   ==================================================================== */

/* Header CTAs */
.main-header__right{
  display: flex;
  align-items: center;
  gap: 12px;
}
.neevalay-header-cta{
  white-space: nowrap;
}
.neevalay-header-icon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(92,204,204,.35);
  background: rgba(248,249,245,.85);
  box-shadow: var(--neevalay-shadow-s);
  color: rgba(11,32,56,.86);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.neevalay-header-icon:hover{
  transform: translateY(-2px);
  box-shadow: var(--neevalay-shadow-m);
  background: rgba(92,204,204,.12);
  color: rgba(11,32,56,.92);
}
@media (max-width: 991px){
  .neevalay-header-cta{ display: none; } /* keep mobile simple */
  .neevalay-header-icon{ display: none; }
}

/* Sticky mobile CTA bar */
.neevalay-sticky-cta{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(248,249,245,.86);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(109,132,120,.18);
  box-shadow: var(--neevalay-shadow-m);
}
.neevalay-sticky-cta__item{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 999px;
  border: 1px solid rgba(109,132,120,.18);
  background: rgba(255,255,255,.88);
  color: rgba(11,32,56,.86);
  font-weight: 800;
  letter-spacing: .01em;
}
.neevalay-sticky-cta__item--primary{
  background: var(--neevalay-aqua);
  border-color: rgba(92,204,204,.35);
  color: var(--neevalay-ink);
}
.neevalay-sticky-cta__item:hover{
  transform: translateY(-2px);
  box-shadow: var(--neevalay-shadow-s);
}
.neevalay-sticky-cta__icon i{ font-size: 16px; }
.neevalay-sticky-cta__label{ font-size: 14px; }

@media (max-width: 991px){
  .neevalay-sticky-cta{ display: flex; }
  body{ padding-bottom: 92px; } /* prevent overlap */
}

/* Floating WhatsApp (desktop) */
.neevalay-fab-whatsapp{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92,204,204,.92);
  color: rgba(11,32,56,.92);
  border: 1px solid rgba(92,204,204,.35);
  box-shadow: var(--neevalay-shadow-m);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.neevalay-fab-whatsapp:hover{
  transform: translateY(-3px);
  box-shadow: var(--neevalay-shadow-l);
  background: rgba(215,122,97,.92);
  color: #fff;
}
@media (max-width: 991px){
  .neevalay-fab-whatsapp{ display: none; }
}

/* Contact cards (Admissions page) */
.neevalay-contact-cards{
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.neevalay-contact-card{
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  padding: 14px 14px;
  border-radius: var(--neevalay-radius-m);
  border: 1px solid rgba(109,132,120,.18);
  background: rgba(255,255,255,.85);
}
.neevalay-contact-card__icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92,204,204,.10);
  color: rgba(11,32,56,.88);
}
.neevalay-contact-card__label{
  font-weight: 800;
  color: rgba(11,32,56,.86);
}
.neevalay-contact-card__value{
  color: rgba(11,32,56,.68);
  font-size: 14px;
  grid-column: 2 / 3;
}

/* Consent + status */
.neevalay-form-consent{
  margin: 8px 0 12px;
  font-size: 14px;
  color: rgba(11,32,56,.70);
}
.neevalay-form-consent label{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.neevalay-form-consent input{ margin-top: 4px; }

.neevalay-form-status{
  font-size: 14px;
  color: rgba(11,32,56,.70);
}
.neevalay-form-status.is-success{ color: rgba(109,132,120,.95); }
.neevalay-form-status.is-error{ color: rgba(215,122,97,.95); }

/* Premium FAQ (details/summary) */
.neevalay-faq-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 991px){
  .neevalay-faq-grid{ grid-template-columns: 1fr; }
}
details.neevalay-faq{
  border-radius: var(--neevalay-radius-m);
  border: 1px solid rgba(109,132,120,.18);
  background: rgba(255,255,255,.88);
  box-shadow: var(--neevalay-shadow-s);
  overflow: hidden;
}
details.neevalay-faq > summary{
  list-style: none;
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 800;
  color: rgba(11,32,56,.90);
  position: relative;
}
details.neevalay-faq > summary::-webkit-details-marker{ display: none; }
details.neevalay-faq > summary::after{
  content: "+";
  position: absolute;
  right: 16px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92,204,204,.10);
  color: rgba(11,32,56,.86);
}
details.neevalay-faq[open] > summary::after{ content: "–"; }
.neevalay-faq__body{
  padding: 0 16px 16px;
  color: rgba(11,32,56,.72);
  line-height: 1.7;
}



/* =========================================================
   Neevalay Premium Hero (single image)
   ========================================================= */
.neevalay-hero{
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(72px, 8vw, 120px) 0 clamp(56px, 7vw, 96px);
}
.neevalay-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(248,249,245,.92) 0%, rgba(248,249,245,.72) 45%, rgba(248,249,245,.10) 100%);
}
.neevalay-hero .container{ position:relative; z-index:1; }
.neevalay-hero__content{
  max-width: 720px;
}
.neevalay-hero__eyebrow{
  color: var(--neevalay-sage, #6D8478);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 700;
  font-family: var(--neevalay-heading-font);
}
.neevalay-hero__title{
  margin: 0 0 14px;
  color: #1c2a24;
  font-weight: 800;
  line-height: 1.06;
  font-family: var(--neevalay-heading-font);
  font-size: clamp(34px, 4.4vw, 56px);
}
.neevalay-hero__subtitle{
  margin: 0 0 24px;
  color: rgba(28,42,36,.78);
  font-size: 18px;
  line-height: 1.65;
  max-width: 60ch;
}
.neevalay-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap: 16px;
  align-items:center;
}

.neevalay-btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-family: var(--neevalay-heading-font);
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration:none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}
.neevalay-btn i{ font-size: 16px; }
.neevalay-btn--primary{
  background: var(--neevalay-aqua, #5CCCCC);
  color: #083a3a;
  border: 1px solid rgba(92,204,204,.65);
}
.neevalay-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
}
.neevalay-btn--outline{
  background: rgba(248,249,245,.72);
  color: #1c2a24;
  border: 1px solid rgba(109,132,120,.35);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}
.neevalay-btn--outline:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

/* remove extra spacing where slider used to be */
.main-slider-one{ display:none !important; }

/* =========================================================
   Neevalay Home CTA (below hero)
   ========================================================= */
.neevalay-home-cta{
  background: var(--neevalay-offwhite, #F8F9F5);
  padding: 24px 0 10px;
}
.neevalay-home-cta__inner{
  display:flex;
  gap: 24px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
}
.neevalay-btn--lg{
  padding: 18px 28px;
  font-size: 16px;
}
@media (max-width: 575px){
  .neevalay-home-cta__inner{ gap: 14px; }
  .neevalay-btn--lg{ width:100%; justify-content:center; }
}


/* =========================================================
   Neevalay Premium Button System (consistent site-wide)
   ========================================================= */
:root{
  --neevalay-radius-pill: 999px;
  --neevalay-shadow-soft: 0 10px 22px rgba(0,0,0,.10);
  --neevalay-shadow-hover: 0 14px 28px rgba(0,0,0,.14);
}

/* Base button (used by custom CTAs) */
.neevalay-btn,
a.neevalay-btn,
button.neevalay-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--neevalay-radius-pill);
  font-family: var(--neevalay-heading-font);
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration:none;
  border: 1px solid transparent;
  box-shadow: var(--neevalay-shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.neevalay-btn i{ font-size: 16px; }

/* Primary */
.neevalay-btn--primary{
  background: var(--neevalay-aqua);
  color: #083a3a;
  border-color: rgba(92,204,204,.65);
}
.neevalay-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: var(--neevalay-shadow-hover);
}

/* Outline */
.neevalay-btn--outline{
  background: rgba(248,249,245,.78);
  color: #1c2a24;
  border-color: rgba(109,132,120,.35);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}
.neevalay-btn--outline:hover{
  transform: translateY(-1px);
  box-shadow: var(--neevalay-shadow-hover);
}

/* Large */
.neevalay-btn--lg{ padding: 18px 30px; font-size: 16px; }

/* Make template buttons match (kidearn-btn/thm-btn) */
.kidearn-btn,
a.kidearn-btn,
button.kidearn-btn,
.thm-btn,
a.thm-btn,
button.thm-btn{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 16px 26px !important;
  border-radius: var(--neevalay-radius-pill) !important;
  font-family: var(--neevalay-heading-font) !important;
  font-weight: 800 !important;
  letter-spacing: .01em;
  border: 1px solid rgba(92,204,204,.65) !important;
  background: var(--neevalay-aqua) !important;
  color: #083a3a !important;
  box-shadow: var(--neevalay-shadow-soft) !important;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}

/* Disable template overlay pseudo-elements that cause inconsistent hover */
.kidearn-btn:before, .kidearn-btn:after,
.thm-btn:before, .thm-btn:after{
  display:none !important;
}

.kidearn-btn:hover,
.thm-btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--neevalay-shadow-hover) !important;
}

/* Outline variant helper (use on <a class="kidearn-btn kidearn-btn--outline"> ) */
.kidearn-btn--outline,
.thm-btn--outline{
  background: rgba(248,249,245,.78) !important;
  color: #1c2a24 !important;
  border-color: rgba(109,132,120,.35) !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.08) !important;
}

/* =========================================================
   Hero actions (keep CTAs inside hero; premium spacing)
   ========================================================= */
.neevalay-hero__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.neevalay-hero__actions .neevalay-btn,
.neevalay-hero__actions .kidearn-btn,
.neevalay-hero__actions a{
  min-height: 54px;
}
@media (max-width: 575px){
  .neevalay-hero__actions{
    flex-direction: column;
    align-items: stretch;
  }
  .neevalay-hero__actions a{
    width: 100%;
    justify-content:center;
  }
}


/* Gradient headline (fallback keeps brand-safe color) */
.neevalay-hero__title{
  color: var(--neevalay-sage) !important; /* fallback */
  background: linear-gradient(90deg,
    var(--neevalay-aqua) 0%,
    var(--neevalay-gold) 45%,
    var(--neevalay-terracotta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

/* Hero subtitle calmer + premium */
.neevalay-hero__subtitle{
  color: rgba(109,132,120,.92) !important;
  max-width: 56ch;
  line-height: 1.65;
}

/* Hero action buttons - match designer sample */
.neevalay-hero__actions .neevalay-btn--primary{
  background: var(--neevalay-terracotta) !important;
  border-color: rgba(215,122,97,.55) !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(215,122,97,.22) !important;
}
.neevalay-hero__actions .neevalay-btn--primary:hover{
  box-shadow: 0 16px 34px rgba(215,122,97,.30) !important;
}

/* Secondary CTA resembles a light pill */
.neevalay-hero__actions .neevalay-btn--outline{
  background: rgba(248,249,245,.86) !important;
  border-color: rgba(92,204,204,.40) !important;
  color: #1c2a24 !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.08) !important;
}
.neevalay-hero__actions .neevalay-btn--outline:hover{
  border-color: rgba(92,204,204,.65) !important;
  box-shadow: 0 14px 28px rgba(0,0,0,.12) !important;
}

/* Icon bubble on secondary CTA (closer to sample) */
.neevalay-hero__actions .neevalay-btn--outline i{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(92,204,204,.18);
}

/* Ensure primary icon stays subtle */
.neevalay-hero__actions .neevalay-btn--primary i{
  width: 0;
  height: 0;
  display: inline;
}

/* When OS forces colors, don't rely on gradient */
@media (forced-colors: active){
  .neevalay-hero__title{
    -webkit-text-fill-color: ButtonText !important;
    background: none !important;
    color: ButtonText !important;
  }
}


/* =========================================================
   Hero headline: 2-tone (exact brand colors, per designer sample)
   ========================================================= */
.neevalay-hero__title{
  background: none !important;
  -webkit-text-fill-color: initial !important;
  text-fill-color: initial !important;
}
.neevalay-hero__title .hero-line{
  display:block;
  line-height: 1.02;
}
.neevalay-hero__title .hero-line--aqua{ color: var(--neevalay-aqua) !important; }
.neevalay-hero__title .hero-line--gold{ color: var(--neevalay-gold) !important; }

/* Calm subtitle */
.neevalay-hero__subtitle{
  color: rgba(109,132,120,.92) !important;
  max-width: 56ch;
  line-height: 1.65;
}

/* =========================================================
   Button consistency (use brand primary everywhere)
   - Primary = Aqua
   - Secondary/Outline = Off-white pill
   ========================================================= */
.neevalay-btn--primary{
  background: var(--neevalay-aqua) !important;
  border-color: rgba(92,204,204,.65) !important;
  color: #083a3a !important;
}
.neevalay-btn--primary:hover{
  box-shadow: 0 16px 34px rgba(0,0,0,.14) !important;
  transform: translateY(-1px);
}
.neevalay-btn--outline{
  background: rgba(248,249,245,.90) !important;
  border-color: rgba(109,132,120,.30) !important;
  color: #1c2a24 !important;
}

/* Make template buttons match Neevalay system */
.kidearn-btn,
.thm-btn{
  background: var(--neevalay-aqua) !important;
  border-color: rgba(92,204,204,.65) !important;
  color: #083a3a !important;
}
.kidearn-btn--outline,
.thm-btn--outline{
  background: rgba(248,249,245,.90) !important;
  border-color: rgba(109,132,120,.30) !important;
  color: #1c2a24 !important;
}

/* Icon alignment inside pill buttons (fix calendar icon overflow) */
.neevalay-btn i,
.kidearn-btn i,
.thm-btn i{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  flex: 0 0 34px;
}
.neevalay-btn--primary i,
.kidearn-btn i,
.thm-btn i{
  background: rgba(255,255,255,.22);
}
.neevalay-btn{
  overflow: hidden; /* prevents any icon glyph shift from spilling outside */
}

/* Hero buttons spacing */
.neevalay-hero__actions{
  margin-top: 22px;
}


/* =========================================================
   Button-only Theme Override (keep base accents; change buttons)
   Primary buttons = Terracotta (#D77A61)
   ========================================================= */
.neevalay-btn--primary,
a.neevalay-btn--primary,
button.neevalay-btn--primary,
.kidearn-btn,
a.kidearn-btn,
button.kidearn-btn,
.thm-btn,
a.thm-btn,
button.thm-btn,
.neevalay-header-cta.kidearn-btn{
  background: var(--neevalay-terracotta) !important;
  border-color: rgba(215,122,97,.65) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(215,122,97,.22) !important;
}
.neevalay-btn--primary:hover,
.kidearn-btn:hover,
.thm-btn:hover,
.neevalay-header-cta.kidearn-btn:hover{
  box-shadow: 0 16px 34px rgba(215,122,97,.30) !important;
  transform: translateY(-1px);
}

/* Keep outline buttons calm */
.neevalay-btn--outline,
.kidearn-btn--outline,
.thm-btn--outline{
  background: rgba(248,249,245,.90) !important;
  border-color: rgba(109,132,120,.30) !important;
  color: #1c2a24 !important;
}

/* Icon bubble inside buttons (looks good on terracotta) */
.neevalay-btn--primary i,
.kidearn-btn i,
.thm-btn i{
  background: rgba(255,255,255,.22) !important;
}


/* =========================================================
   Hero CTA icon alignment + hover (Terracotta -> Aqua)
   ========================================================= */

/* Make primary icon bubble visible + aligned */
.neevalay-hero__actions .neevalay-btn--primary i{
  background: rgba(255,255,255,.22) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.16) !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  transform: translateY(0);
}

/* Ensure outline icon bubble matches */
.neevalay-hero__actions .neevalay-btn--outline i{
  box-shadow: 0 8px 18px rgba(0,0,0,.10) !important;
}

/* Hover state: all primary buttons become Aqua */
.neevalay-btn--primary:hover,
.kidearn-btn:hover,
.thm-btn:hover,
.neevalay-header-cta.kidearn-btn:hover{
  background: var(--neevalay-aqua) !important;
  border-color: rgba(92,204,204,.65) !important;
  color: #083a3a !important;
}

/* Hover icon bubble adapts */
.neevalay-btn--primary:hover i,
.kidearn-btn:hover i,
.thm-btn:hover i,
.neevalay-header-cta.kidearn-btn:hover i{
  background: rgba(255,255,255,.24) !important;
  border-color: rgba(255,255,255,.25) !important;
}

/* =========================================================
   Topbar announcement ticker (replaces email)
   ========================================================= */
.topbar-one__notice{
  display:flex;
  align-items:center;
  gap: 10px;
}
.neevalay-ticker{
  display:flex;
  align-items:center;
  gap: 8px;
  max-width: 520px;
  overflow:hidden;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(248,249,245,.10);
  border: 1px solid rgba(255,255,255,.14);
}
.neevalay-ticker__label{
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
  opacity: .95;
}
.neevalay-ticker__track{
  position: relative;
  overflow:hidden;
  white-space: nowrap;
  flex: 1 1 auto;
}
.neevalay-ticker__text{
  display:inline-block;
  padding-left: 14px;
  will-change: transform;
  animation: neevalay-marquee 16s linear infinite;
  opacity: .95;
}
.neevalay-ticker:hover .neevalay-ticker__text,
.neevalay-ticker:focus-within .neevalay-ticker__text{
  animation-play-state: paused;
}

@keyframes neevalay-marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-55%); }
}

@media (prefers-reduced-motion: reduce){
  .neevalay-ticker__text{ animation: none; }
}
@media (max-width: 767px){
  .neevalay-ticker{ max-width: 72vw; }
}


/* =========================================================
   Fix: Hero CTA icon alignment (calendar vs cap)
   IMPORTANT: Font Awesome icons render via i::before.
   We must NOT disable ::before; only disable divider pseudo elements.
   ========================================================= */

.neevalay-hero__actions .neevalay-btn{
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
}

/* Identical icon container for BOTH buttons */
.neevalay-hero__actions .neevalay-btn i{
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  position: relative !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.12) !important;
}

/* Keep Font Awesome glyph visible (it lives in ::before) */
.neevalay-hero__actions .neevalay-btn i::before{
  display: inline-block !important;
  line-height: 1 !important;
}

/* Remove only the divider line some templates add (usually ::after) */
.neevalay-hero__actions .neevalay-btn i::after{
  content: none !important;
  display: none !important;
}

/* Visuals: Primary icon bubble + Outline icon bubble */
.neevalay-hero__actions .neevalay-btn--primary i{
  background: rgba(255,255,255,.22) !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  color: #ffffff !important;
}
.neevalay-hero__actions .neevalay-btn--outline i{
  background: rgba(92,204,204,.18) !important;
  border: 1px solid rgba(92,204,204,.22) !important;
  color: #1c2a24 !important;
}

.neevalay-hero__actions .neevalay-btn span{
  display: inline-block;
  line-height: 1.15;
}



/* Make each column stretch its card to equal height */
.program-page .row.gutter-y-30 > [class*="col-"]{
  display: flex;
}

/* Card becomes a flex column so content can auto-fit */
.program-page .program-three__item{
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Ensure image sits on top */
.program-page .program-three__item__image{
  flex: 0 0 auto;
}

/* Content takes remaining height; bottom actions stick to bottom */
.program-page .program-three__item__content{
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

/* If a card has a button/arrow link, push it to the bottom */
.program-page .program-three__item__btn,
.program-page .program-three__item a.program-three__item__btn,
.program-page .program-three__item .program-three__item__link{
  margin-top: auto;
}


/* =========================================================
   Card grid fixes (v2)
   - Hide empty spacer columns (e.g., col-xl-1 used for spacing)
   - Center incomplete rows (2–3 cards)
   - Enforce consistent card heights via text line-clamp
   ========================================================= */
.program-page .row.gutter-y-30{
  justify-content: center !important;
}

/* Remove empty grid spacer columns that break centering */
.program-page .row.gutter-y-30 > div:empty{
  display: none !important;
}

/* Equal-height columns/cards */
.program-page .row.gutter-y-30 > [class*="col-"]{
  display: flex;
}

.program-page .program-three__item{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.program-page .program-three__item__content{
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

/* Keep description height consistent across all cards (premium alignment) */
.program-page .program-three__item__text{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;  /* adjust if you want more/less text */
  overflow: hidden;
}

/* Push the arrow/button to the bottom */
.program-page .program-three__item__rm,
.program-page .program-three__item__btn,
.program-page .program-three__item .program-three__item__link{
  margin-top: auto;
}


/* =========================================================
   Homepage program grid: 3x2 layout on desktop (xl=4),
   equal-height cards and clean alignment.
   ========================================================= */
.section-programs .row.gutter-y-30,
.program-three .row.gutter-y-30,
.program-three__wrapper .row.gutter-y-30,
.program-three__grid .row.gutter-y-30{
  justify-content: center;
}
.section-programs .row.gutter-y-30 > [class*="col-"],
.program-three .row.gutter-y-30 > [class*="col-"],
.program-three__wrapper .row.gutter-y-30 > [class*="col-"],
.program-three__grid .row.gutter-y-30 > [class*="col-"]{
  display: flex;
}
.section-programs .program-three__item,
.program-three .program-three__item,
.program-three__wrapper .program-three__item,
.program-three__grid .program-three__item{
  height: 100%;
  display: flex;
  flex-direction: column;
}
.section-programs .program-three__item__content,
.program-three .program-three__item__content,
.program-three__wrapper .program-three__item__content,
.program-three__grid .program-three__item__content{
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.section-programs .program-three__item__btn,
.program-three .program-three__item__btn{
  margin-top: auto;
}




/* ==========================================================
   Premium sizing: keep Programs cards centered and not too wide
   (prevents "edge-to-edge" look on large screens)
   ========================================================== */
.program-three .container{
  max-width: 1120px;
}
.program-three .row{
  justify-content: center;
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}
.program-three__item{
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1400px){
  .program-three .container{ max-width: 1120px; }
  .program-three__item{ max-width: 360px; }
}



/* === Premium polish (requested) === */

/* Soft-corner buttons (not pill) */
:root{
  --neevalay-radius-btn: 14px;
}

/* Primary/outline buttons */
.neevalay-btn,
.neevalay-header-cta,
.thm-btn,
.kidearn-btn,
.theme-btn{
  border-radius: var(--neevalay-radius-btn) !important;
}

/* Keep icon-only circles circular */
.neevalay-btn--icon,
.neevalay-fab,
.float-btngroup a,
.scroll-to-top{
  border-radius: 999px !important;
}

/* Enrichment CTA row */
.neevalay-section-cta{
  display:flex;
  gap:16px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  margin-top: 24px;
}

/* Top bar: reduce empty gap between timing and announcement */
.topbar-one__inner{
  justify-content: flex-start !important;
  gap: 20px !important;
}
.topbar-one__info{
  margin-left: 0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
}


/* Fix: keep topbar content left-aligned on tablet (template centers it below 992px) */
@media (min-width: 768px) and (max-width: 991.98px){
  .topbar-one__inner{
    align-items: stretch !important;
  }
  .topbar-one__left,
  .topbar-one__info{
    justify-content: flex-start !important;
  }
}

/* === Neevalay Global Button Shape Override === */
/* Make ALL primary CTAs consistently rounded (pill) without touching circular icon-only controls */
:root {
  /* If you ever want softer corners, change this from 999px to 14px/16px */
  --neevalay-radius-pill: 999px;
}

/* CTA-style buttons across templates */
.neevalay-btn,
.kidearn-btn,
.thm-btn,
.theme-btn,
.main-menu__btn,
.footer-one__btn,
.contact-one__btn,
.form-one__btn,
button[type="submit"],
button[type="button"],
input[type="submit"],
input[type="button"],
a.btn,
button.btn,
.btn {
  border-radius: var(--neevalay-radius-pill) !important;
}

/* Keep small circular action controls circular */
.program-three__item__btn,
.program-three__item__rm,
.scroll-top,
.scroll-top *,
.neevalay-wa-fab,
.neevalay-fab-whatsapp,
.social-links a {
  border-radius: 50% !important;
}


/* Founder page: small circular portrait near sign-off */
.neevalay-founder-signoff{
  display: flex;
  align-items: center;
  gap: 14px;
}

.neevalay-founder-avatar{
  width: 92px;
  height: 92px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid rgba(109, 132, 120, 0.25);
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
  background: #F8F9F5;
}

.neevalay-founder-signoff__text p{
  margin: 0;
}

@media (max-width: 576px){
  .neevalay-founder-avatar{
    width: 78px;
    height: 78px;
  }
}



/* Founder page quote */
.neevalay-founder-quote{
  margin-top: 14px;
  padding: 16px 18px;
  background: rgba(249, 199, 100, 0.16);
  border: 1px solid rgba(249, 199, 100, 0.35);
  border-radius: 16px;
}
.neevalay-founder-quote em{
  color: #6D8478;
  font-style: italic;
}


/* =========================================================
   Vision & Mission (Premium layout)
   ========================================================= */
.neevalay-vm{
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(248,249,245,1) 0%, rgba(248,249,245,1) 55%, rgba(255,255,255,1) 100%);
}

.neevalay-vm__intro{
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.neevalay-vm__title{
  margin: 0 0 10px;
  font-family: var(--neevalay-heading-font);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--kidearn-black);
  font-size: 42px;
}

.neevalay-vm__subtitle{
  margin: 0 auto 14px;
  max-width: 760px;
  color: rgba(11,32,56,.72);
  font-size: 18px;
  line-height: 1.6;
}

.neevalay-vm__quote{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(92,204,204,.10);
  border: 1px solid rgba(92,204,204,.18);
  color: var(--neevalay-sage);
  font-family: var(--neevalay-heading-font);
  font-weight: 700;
}

.neevalay-vm__quote-mark{
  color: var(--neevalay-aqua);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

/* Cards */
.neevalay-card{
  --accent: var(--neevalay-aqua);
  position: relative;
  height: 100%;
  padding: 28px 26px;
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(109,132,120,.18);
  box-shadow: 0 18px 45px rgba(11,32,56,.08);
  overflow: hidden;
}

.neevalay-card::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: var(--accent);
}

.neevalay-card::after{
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -60px;
  background: radial-gradient(circle at 30% 30%, rgba(92,204,204,.18), rgba(92,204,204,0) 60%);
  pointer-events: none;
}

.neevalay-card--vision{ --accent: var(--neevalay-aqua); }
.neevalay-card--mission{ --accent: var(--neevalay-terracotta); }

.neevalay-card--mission::after{
  background: radial-gradient(circle at 30% 30%, rgba(215,122,97,.16), rgba(215,122,97,0) 60%);
}

.neevalay-card__head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.neevalay-card__icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92,204,204,.12);
  border: 1px solid rgba(92,204,204,.20);
  flex: 0 0 auto;
}

.neevalay-card--mission .neevalay-card__icon{
  background: rgba(215,122,97,.10);
  border-color: rgba(215,122,97,.22);
}

.neevalay-card__icon i{
  color: var(--accent);
  font-size: 18px;
}

.neevalay-card__title{
  margin: 0;
  font-family: var(--neevalay-heading-font);
  font-weight: 800;
  font-size: 24px;
  color: var(--kidearn-black);
}

.neevalay-card__body{
  position: relative;
  z-index: 1;
}

.neevalay-card__body p{
  margin: 0 0 12px;
  color: rgba(11,32,56,.74);
  line-height: 1.75;
}

.neevalay-card__body p:last-child{ margin-bottom: 0; }

/* Checklist */
.neevalay-checklist{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.neevalay-checklist li{
  position: relative;
  padding-left: 28px;
  color: rgba(11,32,56,.78);
  line-height: 1.6;
}

.neevalay-checklist li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: rgba(92,204,204,.18);
  border: 1px solid rgba(92,204,204,.32);
  box-shadow: 0 10px 18px rgba(92,204,204,.12);
}

.neevalay-card--mission .neevalay-checklist li::before{
  background: rgba(215,122,97,.14);
  border-color: rgba(215,122,97,.26);
  box-shadow: 0 10px 18px rgba(215,122,97,.12);
}

.neevalay-checklist li::after{
  content: "✓";
  position: absolute;
  left: 4px;
  top: 2px;
  font-size: 12px;
  font-weight: 900;
  color: var(--accent);
}

@media (max-width: 991.98px){
  .neevalay-vm{ padding: 60px 0; }
  .neevalay-vm__title{ font-size: 34px; }
}

@media (max-width: 576px){
  .neevalay-vm__title{ font-size: 30px; }
  .neevalay-vm__subtitle{ font-size: 16px; }
  .neevalay-vm__quote{ font-size: 14px; }
  .neevalay-card{ border-radius: 22px; padding: 22px 18px; }
}


/* -----------------------------------------------------------
   Premium Forms (Campus Visit + Admission)
----------------------------------------------------------- */
.neevalay-form-premium .neevalay-label{
  display:block;
  font-family: var(--kidearn-heading-font);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .01em;
  color: rgba(11,32,56,.78);
  margin: 0 0 6px;
}
.neevalay-form-premium .neevalay-label span[aria-hidden="true"]{ color: rgba(215,122,97,.90); }

.neevalay-form-premium .form-one__control input,
.neevalay-form-premium .form-one__control select,
.neevalay-form-premium .form-one__control textarea{
  background: rgba(248,249,245,.65);
  border-color: rgba(109,132,120,.22);
  border-radius: 16px;
}
.neevalay-form-premium .form-one__control textarea{ min-height: 120px; }
.neevalay-form-premium .form-one__control input:focus,
.neevalay-form-premium .form-one__control select:focus,
.neevalay-form-premium .form-one__control textarea:focus{
  outline: none;
  border-color: rgba(92,204,204,.70);
  box-shadow: 0 0 0 4px rgba(92,204,204,.18);
}

.neevalay-form-head{
  border-radius: 16px;
  border: 1px solid rgba(109,132,120,.18);
  background: rgba(92,204,204,.08);
  padding: 12px 14px;
}
.neevalay-form-head__hint{
  margin: 0;
  font-size: 14px;
  color: rgba(11,32,56,.74);
}

.neevalay-note-card{
  border-radius: 24px;
  border: 1px solid rgba(109,132,120,.18);
  background: rgba(255,255,255,.90);
  box-shadow: 0 18px 40px rgba(11,32,56,.08);
}

/* Stepper (Admission Form) */
.neevalay-stepper{ margin: 4px 0 16px; }
.neevalay-stepper__top{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.neevalay-stepper__pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(109,132,120,.12);
  color: rgba(11,32,56,.74);
}
.neevalay-stepper__bar{
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(109,132,120,.14);
}
.neevalay-stepper__bar > span{
  display:block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: rgba(92,204,204,.90);
  transition: width .25s ease;
}

.neevalay-step{ display:none; border: 0; padding: 0; margin: 0; }
.neevalay-step.is-active{ display:block; animation: neevalayFadeUp .20s ease; }
.neevalay-step__title{
  font-family: var(--kidearn-heading-font);
  font-weight: 900;
  margin: 0 0 12px;
  color: rgba(11,32,56,.92);
}
.neevalay-form-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
  margin-top: 8px;
}
@keyframes neevalayFadeUp{
  from{ opacity: 0; transform: translateY(6px); }
  to{ opacity: 1; transform: translateY(0); }
}


/* Program detail pages */
.neevalay-program{
  padding: 70px 0;
  background: #F8F9F5;
}
.neevalay-program__meta{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 20px;
}
@media (max-width: 991px){
  .neevalay-program__meta{ grid-template-columns: 1fr; }
}
.neevalay-meta-card{
  border: 1px solid rgba(109,132,120,.18);
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 14px 30px rgba(11,32,56,.06);
}
.neevalay-meta-card__label{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(109,132,120,.92);
  margin: 0 0 6px;
}
.neevalay-meta-card__value{
  font-family: var(--kidearn-heading-font);
  font-weight: 900;
  font-size: 18px;
  margin: 0;
  color: rgba(11,32,56,.92);
}
.neevalay-meta-card__note{
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(11,32,56,.65);
}

.neevalay-program__layout{
  display: grid;
  grid-template-columns: 1.45fr .85fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 991px){
  .neevalay-program__layout{ grid-template-columns: 1fr; }
}

.neevalay-panel{
  border: 1px solid rgba(109,132,120,.18);
  background: rgba(255,255,255,.94);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(11,32,56,.06);
}

.neevalay-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(92,204,204,.35);
  background: rgba(92,204,204,.12);
  color: rgba(11,32,56,.78);
  font-size: 13px;
}

.neevalay-domain-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 575px){
  .neevalay-domain-grid{ grid-template-columns: 1fr; }
}
.neevalay-domain{
  border-radius: 18px;
  border: 1px solid rgba(109,132,120,.16);
  background: rgba(248,249,245,.70);
  padding: 16px;
}
.neevalay-domain__title{
  font-family: var(--kidearn-heading-font);
  font-weight: 900;
  margin: 0 0 6px;
  font-size: 16px;
  color: rgba(11,32,56,.92);
}
.neevalay-domain__text{
  margin: 0;
  color: rgba(11,32,56,.72);
  font-size: 14px;
  line-height: 1.6;
}

.neevalay-schedule{
  margin: 0;
  padding: 0;
  list-style: none;
}
.neevalay-schedule li{
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px dashed rgba(109,132,120,.20);
}
.neevalay-schedule li:first-child{
  border-top: 0;
  padding-top: 0;
}
.neevalay-schedule__time{
  min-width: 130px;
  font-weight: 800;
  color: rgba(11,32,56,.86);
}
@media (max-width: 575px){
  .neevalay-schedule__time{ min-width: 96px; }
}
.neevalay-schedule__activity{
  color: rgba(11,32,56,.74);
}

.neevalay-callout{
  border-left: 4px solid rgba(249,199,100,.92);
  background: rgba(249,199,100,.12);
  border-radius: 16px;
  padding: 14px 16px;
}

/* =========================================================
   PEOPLE PHILOSOPHY PAGE - BRAND-ALIGNED DESIGN
   ========================================================= */

/* Section Spacing */
.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.mb-6 {
    margin-bottom: 4rem !important;
}

/* People Philosophy Specific Overrides */
.people-hero .page-header__title {
    font-family: var(--neevalay-heading-font);
    font-weight: 900;
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    line-height: 1.1;
    color: white !important;
    margin-bottom: 0.75rem;
}

.people-hero .page-header__subtitle {
    font-family: var(--neevalay-body-font);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.6;
    color: white !important;
    max-width: 700px;
    margin: 0 auto;
}

/* Brand-aligned Section Eyebrow */
.section-eyebrow {
    font-family: var(--neevalay-heading-font);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neevalay-aqua);
    margin-bottom: 1rem;
    display: block;
}

/* Brand-aligned Section Titles */
.section-title {
    font-family: var(--neevalay-heading-font);
    font-weight: 900;
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.2;
    color: var(--kidearn-black);
    margin-bottom: 1.5rem;
}

/* Brand-aligned Body Text */
.section-description {
    font-family: var(--neevalay-body-font);
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(11, 32, 56, 0.8);
    margin-bottom: 2rem;
}

/* Brand-aligned Card Design */
.brand-card {
    background: white;
    border: 1px solid rgba(109, 132, 120, 0.12);
    border-radius: 1rem;
    padding: 1.75rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neevalay-aqua) 0%, var(--neevalay-terracotta) 100%);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(11, 32, 56, 0.1);
    border-color: rgba(92, 204, 204, 0.25);
}

/* Brand-aligned Icons */
.brand-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: rgba(92, 204, 204, 0.1);
    border: 1px solid rgba(92, 204, 204, 0.2);
    color: var(--neevalay-aqua);
    font-size: 1.5rem;
}

/* Brand-aligned Process Timeline */
.brand-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.brand-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--neevalay-aqua), var(--neevalay-terracotta));
    opacity: 0.2;
}

.brand-timeline-step {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2.5rem;
}

.brand-timeline-step:last-child {
    margin-bottom: 0;
}

.brand-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--neevalay-heading-font);
    font-weight: 900;
    font-size: 1.125rem;
    color: white;
    background: linear-gradient(135deg, var(--neevalay-aqua) 0%, rgba(92, 204, 204, 0.9) 100%);
    border: 3px solid white;
    box-shadow: 0 10px 25px rgba(92, 204, 204, 0.25);
    z-index: 2;
}

/* Brand-aligned Stats - ALL IN CLAY TERRACOTTA (#D77A61) */
.brand-stat-number,
.stat-number,
.commitment-stats .stat-number {
    font-family: var(--neevalay-heading-font);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    color: #D77A61 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #D77A61 !important;
    background-clip: initial !important;
    margin-bottom: 0.5rem;
}

/* Specific override for any gradient backgrounds */
.brand-stat-number {
    background: linear-gradient(135deg, #D77A61 0%, rgba(215, 122, 97, 0.9) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Brand-aligned Avatar */
.brand-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    border: 3px solid rgba(92, 204, 204, 0.2);
    box-shadow: 0 10px 25px rgba(92, 204, 204, 0.15);
}

/* Brand-aligned Gradients */
.brand-gradient-aqua {
    background: linear-gradient(135deg, var(--neevalay-aqua) 0%, rgba(92, 204, 204, 0.9) 100%);
}

.brand-gradient-aqua-light {
    background: linear-gradient(135deg, rgba(92, 204, 204, 0.1) 0%, rgba(215, 122, 97, 0.1) 100%);
}

/* Brand-aligned Backgrounds */
.bg-brand-offwhite {
    background-color: var(--neevalay-offwhite) !important;
}

.bg-brand-aqua-light {
    background-color: rgba(92, 204, 204, 0.1) !important;
}

/* Brand-aligned Text Colors */
.text-brand-aqua {
    color: var(--neevalay-aqua) !important;
}

.text-brand-gold {
    color: var(--neevalay-gold) !important;
}

.text-brand-terracotta {
    color: var(--neevalay-terracotta) !important;
}

.text-brand-sage {
    color: var(--neevalay-sage) !important;
}

/* Brand-aligned Borders */
.border-brand-aqua {
    border-color: rgba(92, 204, 204, 0.3) !important;
}

.border-brand-gold {
    border-color: rgba(249, 199, 100, 0.3) !important;
}

/* Responsive Adjustments for People Philosophy */
@media (max-width: 768px) {
    .people-hero .page-header__title {
        font-size: 2.25rem;
    }
    
    .people-hero .page-header__subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .brand-timeline-step {
        padding-left: 3.5rem;
    }
    
    .brand-step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .brand-stat-number,
    .stat-number,
    .commitment-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .brand-avatar {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .people-hero .page-header__title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .brand-timeline::before {
        left: 20px;
    }
    
    .brand-timeline-step {
        padding-left: 3rem;
    }
    
    .brand-step-number {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .brand-card {
        padding: 1.25rem;
    }
    
    .brand-stat-number,
    .stat-number,
    .commitment-stats .stat-number {
        font-size: 2rem;
    }
}

/* Animation for People Philosophy Page */
@keyframes brandFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.brand-float {
    animation: brandFloat 3s ease-in-out infinite;
}

/* Ensure all stat numbers on the People Philosophy page use Terracotta */
.commitment-stats .stat-card .stat-number,
.selection-process + section .stat-number,
[class*="stats"] .stat-number {
    color: #D77A61 !important;
    background: none !important;
    -webkit-text-fill-color: #D77A61 !important;
}
/* =========================================================
   FIX: Philosophy CTA buttons not clickable
   Cause: ::before overlay blocking pointer events
   ========================================================= */

/* Ensure CTA section establishes a stacking context */
.philosophy-cta{
  position: relative;
}

/* Decorative overlay must not capture clicks */
.philosophy-cta::before{
  pointer-events: none;
}

/* Bring actual CTA content above overlay */
.philosophy-cta .container{
  position: relative;
  z-index: 1;
}

/* Extra safety: buttons always receive pointer events */
.philosophy-cta a,
.philosophy-cta .neevalay-btn{
  pointer-events: auto;
}

/* ===============================
   Global Side Floating Actions
================================ */

.neevalay-side-actions {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.neevalay-side-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 16px 14px;
  font-family: var(--neevalay-heading-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #000;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.neevalay-side-btn--contact {
  background: #5CCCCC; /* Soft Aqua */
}

.neevalay-side-btn--handbook {
  background: #F9C764; /* Warm Gold */
}

.neevalay-side-btn:hover {
  transform: translateX(-4px);
}

/* ===================================================
   Neevalay – Parent Zone Brand Layer
   =================================================== */

:root {
  --neevalay-aqua: #5CCCCC;
  --neevalay-gold: #F9C764;
  --neevalay-offwhite: #F8F9F5;
  --neevalay-terracotta: #D77A61;
  --neevalay-text: #6D8478;
}

/* Typography */
.neevalay-heading {
  font-family: var(--neevalay-heading-font);
  font-weight: 800;
}

.neevalay-subheading {
  font-family: var(--neevalay-heading-font);
  font-weight: 700;
}

.neevalay-text {
  color: var(--neevalay-text);
}

/* Icons */
.neevalay-icon {
  font-size: 2rem;
  color: var(--neevalay-aqua);
}

/* Backgrounds */
.neevalay-bg-soft {
  background-color: var(--neevalay-offwhite);
}

/* Accordion */
.neevalay-accordion .accordion-item {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  border: none;
}

.neevalay-accordion .accordion-button {
  font-weight: 700;
  background: var(--neevalay-offwhite);
}

.neevalay-accordion .accordion-button:not(.collapsed) {
  background: var(--neevalay-aqua);
  color: #fff;
}

/* Testimonials */
.neevalay-testimonial {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

/* Parent Dashboard UI */
.neevalay-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.neevalay-muted {
  font-size: 0.85rem;
  color: #9AAFA5;
}


.neevalay-awards-bar {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

.award-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 160px;
}

.award-bar-icon {
  font-size: 36px; /* 🔥 visible & confident */
  color: #FFAA23;
  flex-shrink: 0;
}

.award-bar-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
  text-align: left;
  white-space: nowrap;
}

/* =========================================================
   Neevalay Awards Recognition Strip (FINAL – Professional)
   ========================================================= */

.neevalay-awards {
  background: #ffffff;
  border-top: 1px solid rgba(109,132,120,.18);
  border-bottom: 1px solid rgba(109,132,120,.18);
  padding: 22px 0;
}

/* Force clean layout – no inheritance */
.neevalay-awards * {
  box-sizing: border-box;
}

.neevalay-awards__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* Each award */
.neevalay-awards__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 170px;
}

/* Icon bubble (explicit – no :first-child hacks) */
.neevalay-awards__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 999px;
  background: rgba(249,199,100,.28); /* Warm Gold */
  display: flex;
  align-items: center;
  justify-content: center;
}

.neevalay-awards__icon i {
  font-size: 26px;
  color: var(--kidearn-black);
  line-height: 1;
}

/* Text */
.neevalay-awards__text {
  font-family: var(--neevalay-heading-font);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  color: rgba(11,32,56,.92);
  white-space: nowrap;
}

.neevalay-awards__text strong {
  font-weight: 900;
}

/* Tablet: allow wrap */
@media (max-width: 991px) {
  .neevalay-awards__row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobile: slightly tighter */
@media (max-width: 576px) {
  .neevalay-awards__item {
    min-width: 150px;
  }
}

/* =========================================
   ICON COLOR FIX – Brand Locked
   ========================================= */

/* Footer "Get In Touch" icons */
.footer-widget__info i {
  color: #f5b335 !important; /* Neevalay gold */
}

/* Footer social icons */
.footer-widget__social i {
  color: #ffffff !important;
}

/* Awards trophy icon */
.neevalay-awards__icon span {
  color: #f5b335 !important; /* Same gold for consistency */
}

/* Topbar social icons (safety override) */
.topbar-one__social i {
  color: #ffffff !important;
}

/* === Accessibility: visible focus styles (keyboard) === */
:root{
  --neevalay-focus-ring: 0 0 0 .25rem rgba(92, 204, 204, .35);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible{
  outline: 2px solid rgba(92, 204, 204, .65);
  outline-offset: 3px;
  box-shadow: var(--neevalay-focus-ring);
}

/* ===== NV front-of-house polish 2026-07-24 (marker: nv-foh-0724) ===== */
/* Right-side vertical tabs: KEEP the brand aqua/gold backgrounds; fix only the
   text colour (was navy #0B2038 -> read as odd "blue") and the weight/font. */
.right-btn {
  font-family: var(--neevalay-heading-font) !important;
  font-weight: 800 !important; font-size: 15px !important; letter-spacing: .3px;
  color: #0E3B37 !important;
}
/* Header "Neevalay Nest" login button (moved out of the main menu). A secondary
   ghost pill next to Enroll Now; collapses to an icon on phones (beside the hamburger). */
.nv-nest-btn { display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  margin-right: 10px; vertical-align: middle; font-family: var(--neevalay-heading-font);
  font-weight: 800; font-size: 14px; color: #0E3B37; border: 1.5px solid #cfe6e2;
  border-radius: 999px; padding: 8px 16px; background: #fff; white-space: nowrap;
  transition: background .15s, border-color .15s, transform .15s; }
.nv-nest-btn:hover { border-color: #5CCCCC; background: #F3FAF9; color: #0E3B37; transform: translateY(-1px); }
.nv-nest-btn svg { width: 16px; height: 16px; flex: 0 0 16px; }
@media (max-width: 767px) { .nv-nest-btn span { display: none; } .nv-nest-btn { padding: 9px; border-radius: 12px; margin-right: 8px; } }

/* Top-bar announcement ticker sat squeezed at the far right (520px cap). Widen it
   on desktop so it extends left into the empty gap; right edge stays put. */
@media (min-width: 1200px) { .neevalay-ticker { min-width: 680px; max-width: 760px; } }

/* Hero CTA buttons: trim to sensible proportions (were ~72px tall, 38px icons).
   High-specificity selectors so the icon shrink beats .neevalay-btn--primary i. */
.neevalay-hero__actions .neevalay-btn--lg { padding: 12px 24px !important; font-size: 15px !important; }
.neevalay-hero__actions .neevalay-btn--primary i,
.neevalay-hero__actions .neevalay-btn--outline i,
.neevalay-hero__actions .neevalay-btn i {
  width: 26px !important; min-width: 26px !important; max-width: 26px !important;
  height: 26px !important; flex: 0 0 26px !important; font-size: 13px !important;
}
.neevalay-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; }
@media (min-width: 600px) { .neevalay-hero__actions .neevalay-btn--lg { width: auto !important; } }
/* Parent Handbook page (id 83): center + constrain the intro copy (banner photo left as-is). */
body.page-id-83 .about-three p { text-align: center; max-width: 680px;
  margin-left: auto; margin-right: auto; color: var(--neevalay-sage); font-size: 16px; }

/* ============ Homepage responsive cleanup ============ */
/* Kill horizontal overflow on every device (mobile was rendering ~705px too wide,
   which cascaded into the whole "messy" look). clip keeps position:sticky working. */
html, body { overflow-x: clip; }
.owl-carousel, .owl-stage-outer { overflow: hidden; }
/* Scroll-reveal safety net: WOW.js was leaving whole sections stuck at
   visibility:hidden when it didn't fire (empty teal programs / empty bands).
   Guarantee content is always shown; keep it motion-free so there's no flash. */
.wow { visibility: visible !important; animation-name: none !important; }

@media (max-width: 767px) {
  /* Vertical side tabs overlapped the hero on phones; the bottom Call/WhatsApp/Book
     bar already covers mobile CTAs, so hide the tabs here. */
  .right-side-buttons { display: none !important; }
  /* Lift the Ask Amma launcher ABOVE the bottom sticky bar (it was overlapping). */
  #nv-chat { bottom: 86px !important; }
  /* Header "Enroll Now" overflowed ~70px off-screen next to the hamburger; hide it
     on phones (the hamburger holds nav, the bottom bar has "Book Visit"). */
  .neevalay-header-cta.kidearn-btn { display: none !important; }
  /* Hero CTAs: compact, left-aligned pills that hug their content and line up with
     the left-aligned hero text (full-width stretched them with too much empty space). */
  .neevalay-hero__actions { width: 100%; max-width: 100%; flex-direction: column; align-items: flex-start; }
  .neevalay-hero__actions .neevalay-btn--lg {
    width: auto !important; max-width: 100% !important; box-sizing: border-box !important;
    justify-content: flex-start !important;
  }
}


/* ================= Neevalay blog article design system (marker: nv-blog-styles) =================
   All post content is wrapped in <div class="nv-article">, so these styles apply to every post
   without depending on the theme's content wrapper. Brand: aqua #5CCCCC, gold #F9C764,
   clay #D77A61, deep teal #0E3B37/#17514A, sage #6D8478, ink #3B4A44. */
.nv-article { font-family: var(--neevalay-body-font);
  color: #3B4A44; font-size: 17px; line-height: 1.78; }
.nv-article p { margin: 0 0 1.15em; }
.nv-article .nv-lead { font-size: 20px; line-height: 1.7; color: #52635a; font-weight: 600; margin-bottom: 1.4em; }
.nv-article > h2:first-child, .nv-article > h3:first-child { margin-top: .2em; }

.nv-article h2 { font-family: var(--neevalay-heading-font); font-weight: 800; font-size: 27px;
  color: #0E3B37; margin: 1.9em 0 .55em; padding-left: 16px; position: relative; line-height: 1.2; }
.nv-article h2::before { content: ""; position: absolute; left: 0; top: .14em; bottom: .14em; width: 6px;
  border-radius: 6px; background: linear-gradient(180deg, #5CCCCC, #F9C764); }
.nv-article h3 { font-family: var(--neevalay-heading-font); font-weight: 800; font-size: 20px;
  color: #17514A; margin: 1.5em 0 .4em; }
.nv-article a { color: #c15f47; font-weight: 700; text-decoration: none; border-bottom: 1.5px solid rgba(215,122,97,.32); }
.nv-article a:hover { border-bottom-color: #c15f47; }
.nv-article strong { color: #2b3a34; font-weight: 800; }
.nv-article em { color: #4a5a52; }

.nv-article ul { list-style: none; padding-left: 2px; margin: 0 0 1.3em; }
.nv-article ul li { position: relative; padding-left: 30px; margin: .55em 0; }
.nv-article ul li::before { content: ""; position: absolute; left: 4px; top: .58em; width: 11px; height: 11px;
  border-radius: 50%; background: #5CCCCC; }
.nv-article ul li:nth-child(even)::before { background: #F9C764; }
.nv-article ol { padding-left: 1.35em; margin: 0 0 1.3em; }
.nv-article ol li { margin: .5em 0; padding-left: 6px; }
.nv-article ol li::marker { color: #D77A61; font-weight: 800; }

/* Callout / key-takeaway boxes */
.nv-callout { background: #EAF7F7; border: 1px solid #cfeeee; border-left: 5px solid #5CCCCC;
  border-radius: 12px; padding: 16px 22px; margin: 1.7em 0; }
.nv-callout__label { display: block; font-family: var(--neevalay-heading-font); font-weight: 800; font-size: 12.5px;
  letter-spacing: .6px; text-transform: uppercase; color: #3E9B8E; margin-bottom: 5px; }
.nv-callout p { margin: 0; color: #2b3a34; font-size: 16.5px; line-height: 1.65; }
.nv-callout--gold { background: #FDF6E7; border-color: #f0dca6; border-left-color: #F9C764; }
.nv-callout--gold .nv-callout__label { color: #a9822a; }
.nv-callout--clay { background: #FBEEE9; border-color: #f0cfc3; border-left-color: #D77A61; }
.nv-callout--clay .nv-callout__label { color: #c15f47; }

/* Tables */
.nv-table-wrap { overflow-x: auto; margin: 1.7em 0; -webkit-overflow-scrolling: touch; }
.nv-article table { border-collapse: collapse; width: 100%; min-width: 460px; font-size: 15.5px;
  border-radius: 12px; overflow: hidden; box-shadow: 0 2px 14px rgba(14,59,55,.06); }
.nv-article thead th { background: linear-gradient(135deg, #0E3B37 0%, #17514A 100%); color: #fff;
  font-family: var(--neevalay-heading-font); font-weight: 800; text-align: left; padding: 12px 16px; font-size: 14.5px; }
.nv-article tbody td { padding: 11px 16px; border-top: 1px solid #E6EAE3; vertical-align: top; }
.nv-article tbody tr:nth-child(even) { background: #F8F9F5; }

/* Stat cards row */
.nv-stats { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.8em 0; }
.nv-stat { flex: 1 1 150px; background: #fff; border: 1px solid #E6EAE3; border-radius: 16px;
  padding: 18px 16px; text-align: center; box-shadow: 0 4px 16px rgba(59,74,68,.05); }
.nv-stat__num { font-family: var(--neevalay-heading-font); font-weight: 800; font-size: 34px; line-height: 1; color: #0E3B37; }
.nv-stat--gold .nv-stat__num { color: #C9932E; } .nv-stat--clay .nv-stat__num { color: #C15F47; }
.nv-stat--aqua .nv-stat__num { color: #3E9B8E; }
.nv-stat__label { display: block; font-size: 13px; color: #6D8478; margin-top: 8px; line-height: 1.4; }

/* Labelled bar chart (pure HTML, always renders) */
.nv-bars { margin: 1.7em 0; display: grid; gap: 12px; }
.nv-bar { }
.nv-bar__top { display: flex; justify-content: space-between; font-size: 14.5px; font-weight: 700; color: #3B4A44; margin-bottom: 5px; }
.nv-bar__track { height: 16px; background: #EAF0EC; border-radius: 999px; overflow: hidden; }
.nv-bar__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, #5CCCCC, #3E9B8E); }
.nv-bar__fill--gold { background: linear-gradient(90deg, #F9C764, #D9A441); }
.nv-bar__fill--clay { background: linear-gradient(90deg, #E39179, #D77A61); }

/* Green flags / red flags two-column */
.nv-flags { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 1.8em 0; }
.nv-flags__col { border-radius: 16px; padding: 6px 20px 16px; }
.nv-flags__col--good { background: #EAF7F3; border: 1px solid #cfebe2; }
.nv-flags__col--bad { background: #FBEEE9; border: 1px solid #f0cfc3; }
.nv-flags__head { font-family: var(--neevalay-heading-font); font-weight: 800; font-size: 16px; margin: 14px 0 8px; }
.nv-flags__col--good .nv-flags__head { color: #2f8f6f; } .nv-flags__col--bad .nv-flags__head { color: #c15f47; }
.nv-flags ul { margin: 0; } .nv-flags ul li { padding-left: 24px; font-size: 15px; }
.nv-flags__col--good ul li::before { background: #3E9B8E; } .nv-flags__col--bad ul li::before { background: #D77A61; }

/* NEP stage boxes */
.nv-stages { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.7em 0; }
.nv-stage { flex: 1 1 120px; border-radius: 14px; padding: 14px; color: #fff; text-align: center; }
.nv-stage__yrs { font-family: var(--neevalay-heading-font); font-weight: 800; font-size: 22px; }
.nv-stage__name { font-size: 12.5px; opacity: .95; margin-top: 4px; line-height: 1.3; }

/* Figures / inline SVG */
.nv-figure { margin: 1.9em 0; }
.nv-figure--card { background: #fff; border: 1px solid #E6EAE3; border-radius: 16px; padding: 22px;
  box-shadow: 0 4px 18px rgba(59,74,68,.05); }
.nv-figure svg { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.nv-figure figcaption { font-size: 13.5px; color: #6D8478; margin-top: 12px; text-align: center; font-style: italic; }

/* Source box */
.nv-source { margin-top: 2.2em; padding: 14px 18px; background: #F8F9F5; border: 1px dashed #cbd6ce;
  border-radius: 10px; font-size: 14px; color: #6D8478; line-height: 1.55; }
.nv-source strong { color: #3B4A44; }

@media (max-width: 600px) {
  .nv-article { font-size: 16px; } .nv-article h2 { font-size: 23px; } .nv-article h3 { font-size: 18px; }
  .nv-flags { grid-template-columns: 1fr; } .nv-stat__num { font-size: 28px; }
}

/* nv-blog-extra: hide featured cover on single posts + Mermaid styling */
body.single-post .neevalay-post-card__thumb { display: none !important; }
.nv-article .mermaid { margin: 1.9em auto; text-align: center; background: #fff; border: 1px solid #E6EAE3; border-radius: 16px; padding: 20px; box-shadow: 0 4px 18px rgba(59,74,68,.05); overflow-x: auto; }
.nv-article .mermaid svg { max-width: 100%; height: auto; }

/* nv-comments start */
/* ===== NV blog comment form (brand-aligned) ===== */
.single-post .comment-respond,
.single-post .comments-area { max-width: 720px; }
.single-post .comment-respond { margin-top: 30px; }
.single-post #commentform, .single-post .comment-form { margin-top: 6px; }

.single-post .comment-reply-title {
  font-family: var(--neevalay-heading-font);
  font-weight: 800; font-size: 26px; color: #0E3B37; margin: 0 0 8px; line-height: 1.2;
}
.single-post .comment-reply-title small { font-size: 14px; font-weight: 700; margin-left: 12px; }
.single-post .comment-reply-title small a { color: #D77A61; text-decoration: none; }

.single-post .comment-form .comment-notes { color: #6D8478; font-size: 14px; margin: 0 0 20px; }
.single-post .comment-form .required { color: #D77A61; }

.single-post .comment-form label {
  display: block; font-family: var(--neevalay-heading-font);
  font-weight: 700; font-size: 14px; color: #3B4A44; margin: 0 0 6px;
}

.single-post .comment-form input[type="text"],
.single-post .comment-form input[type="email"],
.single-post .comment-form input[type="url"],
.single-post .comment-form textarea {
  width: 100%; box-sizing: border-box; display: block;
  font-family: var(--neevalay-body-font); font-size: 15px; color: #3B4A44;
  background: #ffffff; border: 1.5px solid #D9E2DC; border-radius: 12px;
  padding: 12px 14px; transition: border-color .15s, box-shadow .15s;
}
.single-post .comment-form textarea { min-height: 165px; resize: vertical; line-height: 1.6; }
.single-post .comment-form input:focus,
.single-post .comment-form textarea:focus {
  outline: none; border-color: #5CCCCC; box-shadow: 0 0 0 3px rgba(92,204,204,.20);
}

.single-post .comment-form-comment,
.single-post .comment-form-author,
.single-post .comment-form-email,
.single-post .comment-form-url { margin: 0 0 18px; }

.single-post .comment-form-cookies-consent {
  display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 22px;
}
.single-post .comment-form-cookies-consent input {
  width: 16px; height: 16px; margin: 3px 0 0; accent-color: #5CCCCC; flex: 0 0 16px;
}
.single-post .comment-form-cookies-consent label {
  margin: 0; font-weight: 600; color: #6D8478; font-size: 13.5px; line-height: 1.5;
}

.single-post .comment-form .form-submit { margin: 4px 0 0; }
.single-post .comment-form #submit,
.single-post .comment-form input[type="submit"] {
  font-family: var(--neevalay-heading-font); font-weight: 800; font-size: 15px;
  color: #ffffff; background: #D77A61; border: none; border-radius: 999px;
  padding: 12px 32px; cursor: pointer; width: auto;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(215,122,97,.28);
}
.single-post .comment-form #submit:hover,
.single-post .comment-form input[type="submit"]:hover {
  background: #c6674f; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(215,122,97,.34);
}

.single-post .comment-list { list-style: none; padding: 0; margin: 0 0 34px; }
.single-post .comment-list .comment-author .fn,
.single-post .comment-list cite.fn {
  color: #0E3B37; font-weight: 800; font-family: var(--neevalay-heading-font); font-style: normal;
}
.single-post .comment-list .comment-body { border-bottom: 1px solid #E2E8E4; padding: 16px 0; }
.single-post .comments-title, .single-post .comment-reply-title { clear: both; }

@media (max-width: 600px) {
  .single-post .comment-reply-title { font-size: 22px; }
}
/* nv-comments end */

/* nv-events start */
/* ===== Neevalay Events & Calendar - brand skin for ICS Calendar ===== */
.nv-ev-intro { font-size:16px; color:#3B4A44; line-height:1.7; max-width:760px; }
.nv-ev-board { max-width:940px; margin:20px 0 0; background:#EAF7F7; border:1px solid #cfeeee;
  border-radius:20px; padding:16px 18px 20px; box-shadow:0 8px 30px rgba(14,59,55,.06); }
.nv-ev-bar { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; margin:2px 4px 12px; }
.nv-ev-eyebrow { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(135deg,#0E3B37,#17514A);
  color:#fff; font-family: var(--neevalay-heading-font); font-weight:800; font-size:12.5px; letter-spacing:.5px;
  text-transform:uppercase; padding:8px 16px; border-radius:999px; }
.nv-ev-legend { display:inline-flex; align-items:center; gap:6px; font-family: var(--neevalay-heading-font); font-weight:700; font-size:13px; color:#52635a; }
.nv-dot { display:inline-block; width:11px; height:11px; border-radius:50%; vertical-align:middle; margin-right:5px; }
.nv-dot.nv-aqua { background:#5CCCCC; } .nv-dot.nv-gold { background:#F9C764; margin-left:12px; }

.ics-calendar { font-family: var(--neevalay-body-font); color:#3B4A44; }
/* Redundant month <h3> hidden (the dropdown already shows the month); kept for screen readers */
.ics-calendar .ics-calendar-label { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

/* Month dropdown -> aqua pill on its own right-aligned line */
.nv-events-cal select.ics-calendar-select {
  float:none !important; display:block !important; width:auto; max-width:100%;
  font-family: var(--neevalay-heading-font); font-weight:800; font-size:15px; color:#0E3B37;
  background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230E3B37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  border:1.5px solid #cfeeee !important; border-radius:999px !important; padding:9px 40px 9px 18px; margin:0 0 14px auto;
  cursor:pointer; -webkit-appearance:none !important; -moz-appearance:none !important; appearance:none !important;
}
.nv-events-cal select.ics-calendar-select:focus { outline:none; border-color:#5CCCCC !important; box-shadow:0 0 0 3px rgba(92,204,204,.2); }

.ics-calendar .ics-calendar-month-grid { clear:both; border-collapse:separate; border-spacing:0; width:100%;
  border-radius:16px; overflow:hidden; border:1px solid #E2E8E4; background:#fff; box-shadow:0 4px 16px rgba(14,59,55,.05); }
/* Weekday header row */
.nv-events-cal .ics-calendar-month-grid th {
  background:linear-gradient(135deg,#0E3B37 0%,#17514A 100%) !important; color:#fff !important;
  font-family: var(--neevalay-heading-font); font-weight:800; font-size:12.5px; text-transform:uppercase;
  letter-spacing:.5px; padding:12px 0; text-align:center; border:0; }
/* Day cells */
.ics-calendar .ics-calendar-month-grid td {
  background:#fff; border-top:1px solid #EDF1EE; border-left:1px solid #EDF1EE;
  height:94px; padding:6px 8px; vertical-align:top; position:relative; transition:background .12s; }
.ics-calendar .ics-calendar-month-grid td:hover { background:#F6FCFC; }
.ics-calendar .ics-calendar-month-grid td.off { background:#F8F9F5; }
.ics-calendar .ics-calendar-month-grid td.off * { opacity:.45; }
.ics-calendar .ics-calendar-month-grid td.past { background:#FCFDFC; }
/* Day number (desktop span) */
.ics-calendar .ics-calendar-month-grid td .no_phone {
  font-family: var(--neevalay-heading-font); font-weight:800; font-size:14px; color:#3B4A44; }
/* Today: aqua tint + ring, number as an aqua circle */
.ics-calendar .ics-calendar-month-grid td.today { background:#F1FBFB; box-shadow:inset 0 0 0 2px #5CCCCC; }
.ics-calendar .ics-calendar-month-grid td.today .no_phone {
  background:#5CCCCC !important; color:#08312c !important; border-radius:50%;
  width:26px; height:26px; line-height:26px; text-align:center; display:inline-block; font-weight:800; }

/* Event chips */
.ics-calendar .event { display:block; background:#5CCCCC; color:#07302b; font-weight:700; font-size:12px;
  line-height:1.35; border-radius:7px; padding:3px 8px; margin:4px 0 0; overflow:hidden; text-overflow:ellipsis; }
.ics-calendar .event.allday { background:#F9C764; color:#5a4410; }
.ics-calendar .event a { color:inherit; text-decoration:none; }
.ics-calendar .event .time, .ics-calendar .event .start_time { font-weight:800; opacity:.85; }
.ics-calendar .event.multiday_middle, .ics-calendar .event.multiday_end { border-top-left-radius:0; border-bottom-left-radius:0; }
.ics-calendar .event.multiday_start, .ics-calendar .event.multiday_middle { border-top-right-radius:0; border-bottom-right-radius:0; }
.ics-calendar .event_status_cancelled { text-decoration:line-through; opacity:.6; }

/* Coming up */
.nv-ev-up { max-width:940px; }
.nv-ev-uphead { display:flex; align-items:center; gap:9px; color:#0E3B37; font-family: var(--neevalay-heading-font);
  font-weight:800; font-size:21px; margin:32px 0 12px; }
.nv-ev-uphead svg { color:#3E9B8E; }
.nv-events-list .event { display:block; background:#fff; border:1px solid #E2E8E4; border-left:4px solid #D77A61;
  border-radius:12px; padding:12px 16px; margin:0 0 10px; color:#3B4A44; box-shadow:0 2px 10px rgba(59,74,68,.05); }
.nv-events-list .event.allday { border-left-color:#F9C764; }
.nv-events-list .event .ics-calendar-date, .nv-events-list .event .time { color:#3E9B8E; font-weight:800; font-size:13px; }
.nv-events-list .event .description, .nv-events-list .event .ics-calendar-description {
  font-family: var(--neevalay-heading-font); font-weight:800; color:#0E3B37; font-size:15.5px; }
.ics-calendar .ics-calendar-past-events-toggle a { color:#D77A61; font-weight:700; }

/* Warm empty state (plugin puts "No events found." here; also used for real errors, so style not replace) */
.nv-ev-up .ics-calendar-error, .nv-events-cal .ics-calendar-error {
  text-align:center; padding:26px 20px; margin:0; background:#F8F9F5; border:1px dashed #cbd6ce;
  border-radius:14px; color:#6D8478; font-style:italic; font-size:15px; font-family: var(--neevalay-body-font); }

@media (max-width:640px){
  .nv-ev-board { padding:12px 12px 16px; border-radius:16px; }
  .ics-calendar .ics-calendar-month-grid td { height:auto; min-height:52px; }
  .nv-events-cal .ics-calendar-month-grid th { font-size:10.5px; padding:9px 0; }
  .nv-ev-uphead { font-size:19px; }
}
.ics-calendar .ics-calendar-month-grid td.today .day { background:transparent !important; }
@media (max-width:480px){
  .nv-ev-bar { justify-content:flex-start; }
  .nv-events-cal select.ics-calendar-select { margin:0 0 12px 0; }
  .nv-ev-legend { font-size:12px; }
}
/* nv-events end */

/* nv-font-consistency-fluentforms */
.fluentform textarea,
.frm-fluent-form textarea,
.fluentform .ff-el-form-control,
.frm-fluent-form input,
.frm-fluent-form textarea,
.frm-fluent-form select {
  font-family: var(--neevalay-body-font, 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif) !important;
}
 /* nv-enrich-icon */ .program-three__item__icon i{font-size:34px;color:#fff;line-height:1;} /* nv-blog-cards-fix */
.blog-card__image img{object-fit:cover!important;width:100%!important;height:100%!important}.blog-card__image__layer{background-size:cover!important;background-position:center!important}.blog-one__carousel .owl-stage{display:flex!important}.blog-one__carousel .owl-item{flex:0 0 auto;display:flex!important;height:auto!important}.blog-one__carousel .owl-item>.item{display:flex;width:100%}.blog-one__carousel .blog-card{height:100%;display:flex;flex-direction:column;width:100%}.blog-one__carousel .blog-card__content{display:flex;flex-direction:column;flex:1 1 auto}.blog-one__carousel .blog-card__content__bottom{margin-top:auto} /* nv-blog-corner-fix */ .blog-one__carousel .blog-card{overflow:hidden}.blog-one__carousel .blog-card__image{border-radius:0!important} /* nv-blog-cards-fix3 */ .blog-one__carousel .blog-card__image{height:240px!important;min-height:240px;flex:0 0 240px} .blog-one__carousel .blog-card__image img{width:100%!important;height:100%!important;object-fit:cover!important;display:block} .blog-one__carousel .blog-card__content__bottom{margin-top:0!important;display:flex;flex-direction:column;flex:1 1 auto} .blog-one__carousel .blog-card__content__bottom p{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;margin-bottom:18px} .blog-one__carousel .blog-card__content__bottom .kidearn-btn{margin-top:auto} .blog-one__carousel .blog-card__title{min-height:2.4em} /* nv-section-polish */ .nv-eyebrow{display:inline-block;font-family:var(--neevalay-heading-font);font-weight:800;font-size:13px;letter-spacing:.14em;text-transform:uppercase;color:#2FA8A8;margin-bottom:12px} .home .program-page .sec-title__title::after{content:"";display:block;width:64px;height:4px;border-radius:4px;background:#F9C764;margin:16px auto 0} .home .program-page>.container>.sec-title p{max-width:760px;margin-left:auto;margin-right:auto} .neevalay-values{display:grid;grid-template-columns:1fr 1fr;gap:14px 22px;margin:20px 0 26px} .neevalay-value{display:flex;align-items:flex-start;gap:10px;font-family:var(--neevalay-heading-font);font-weight:700;font-size:16px;color:#2b3a34;line-height:1.35} .neevalay-value .fa{color:#75C137;font-size:18px;margin-top:2px;flex:0 0 auto} @media(max-width:575px){.neevalay-values{grid-template-columns:1fr}} /* nv-blog-wave-fix */ .blog-one__carousel .blog-card__image{-webkit-mask-size:100% 100%!important;mask-size:100% 100%!important;-webkit-mask-repeat:no-repeat!important;mask-repeat:no-repeat!important;-webkit-mask-position:center!important;mask-position:center!important} /* nv-vm-enhance */ .neevalay-card--vision .neevalay-card__icon{background:rgba(47,168,168,.12);color:#2FA8A8} .neevalay-card--mission .neevalay-card__icon{background:rgba(224,169,59,.15);color:#E0A93B} .neevalay-card--vision{border-top:4px solid #2FA8A8} .neevalay-card--mission{border-top:4px solid #E0A93B} .nv-quote-band{position:relative;margin:44px auto;max-width:900px;text-align:center;background:linear-gradient(135deg,#EFFAFA,#FBF4E6);border-radius:24px;padding:42px 32px 36px} .nv-quote-band__mark{display:block;font-family:Georgia,serif;font-size:60px;line-height:.5;color:#5CCCCC;height:30px} .nv-quote-band__text{font-family:var(--neevalay-heading-font);font-weight:800;font-size:clamp(22px,3.2vw,30px);color:#1C2B2B;margin:0 auto 14px;max-width:24ch;line-height:1.25} .nv-quote-band__author{font-weight:700;color:#2FA8A8;font-size:15px;margin:0} .nv-builton{margin:50px 0 10px} .nv-builton__photo img{width:100%;height:auto;border-radius:24px;display:block;box-shadow:0 18px 40px -18px rgba(28,43,43,.35)} .nv-builton__title{font-family:var(--neevalay-heading-font);font-weight:800;font-size:clamp(24px,3vw,32px);color:#1C2B2B;margin:8px 0 22px} .nv-builton__values{display:flex;flex-direction:column;gap:20px} .nv-builton__value{display:flex;gap:16px;align-items:flex-start} .nv-builton__vicon{flex:0 0 auto;width:54px;height:54px;border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:22px;color:#fff} .nv-builton__vicon--aqua{background:#2FA8A8}.nv-builton__vicon--gold{background:#E0A93B}.nv-builton__vicon--terra{background:#D77A61} .nv-builton__value h4{font-family:var(--neevalay-heading-font);font-weight:800;font-size:18px;margin:2px 0 4px;color:#1C2B2B} .nv-builton__value p{margin:0;color:#4A5A5A;font-size:15px;line-height:1.5} @media(max-width:991px){.nv-builton__photo{margin-bottom:26px}}
/* nv-founder-notes */
.nv-founder-page .about-three__content{max-width:768px;margin-left:auto;margin-right:auto}
.nv-founder-page .text-justify{text-align:left!important}
.nv-founder-page .about-three__content__text{font-size:1.05rem;line-height:1.85;color:#3a4a42;margin-bottom:1.25rem}
.nv-founder-page .nv-eyebrow{display:inline-block;font-family:var(--neevalay-body-font,inherit);font-size:.72rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#5CCCCC;margin-bottom:.45rem}
.nv-founder-hero-card{display:flex;gap:28px;align-items:center;background:linear-gradient(135deg,#F8F9F5,#eef3ef);border:1px solid rgba(109,132,120,.18);border-radius:22px;padding:26px 30px;margin:0 auto 42px;max-width:768px;box-shadow:0 18px 40px -24px rgba(20,50,40,.45)}
.nv-founder-hero-card__photo{flex:0 0 auto}
.nv-founder-hero-card__photo img{width:132px;height:162px;object-fit:cover;object-position:center top;border-radius:16px;box-shadow:0 10px 24px -12px rgba(0,0,0,.45)}
.nv-founder-hero-card__name{font-size:1.6rem;margin:.1rem 0;color:#1f3d32;font-family:var(--neevalay-heading-font,inherit)}
.nv-founder-hero-card__role{font-size:.95rem;color:#6d8478;margin:.1rem 0 .85rem;font-weight:600}
.nv-founder-hero-card__quote{font-size:1.12rem;font-style:italic;color:#2b4a3d;margin:0;line-height:1.5;padding-left:20px;border-left:3px solid #D77A61}
@media(max-width:620px){.nv-founder-hero-card{flex-direction:column;text-align:center;padding:24px}.nv-founder-hero-card__quote{border-left:0;padding-left:0}.nv-founder-hero-card__photo img{width:124px;height:150px}}
.nv-founder-page .nv-dropcap::first-letter{float:left;font-family:var(--neevalay-heading-font,Georgia,serif);font-size:3.4rem;line-height:.82;font-weight:700;color:#5CCCCC;padding:6px 12px 0 0}
.nv-founder-page .nv-callout{position:relative;border-radius:16px;padding-left:30px!important;overflow:hidden}
.nv-founder-page .nv-callout::before{content:"\201C";position:absolute;top:-10px;left:8px;font-family:Georgia,serif;font-size:4rem;line-height:1;color:rgba(31,61,50,.10);pointer-events:none}
.nv-founder-page .neevalay-section-cta{display:flex;gap:14px;flex-wrap:wrap;margin-top:2.2rem}
.nv-founder-page hr{border-top:1px solid rgba(109,132,120,.25)}
/* nv-founder-notes end */