body{
  margin: 0;
  padding: 0;
}
/* =========================================================
   NADI VAIDYA GURUKUL — FOOTER
   SINGLE PAGE LANDING PAGE
   ========================================================= */

.nvg-footer,
.nvg-footer * {
  box-sizing: border-box;
}

.nvg-footer {
  --footer-primary: #020e27;
  --footer-gold: #c89b3c;
  --footer-gold-light: #e1bd6c;
  --footer-white: #ffffff;
  --footer-muted: rgba(255,255,255,.62);
  --footer-border: rgba(255,255,255,.10);

  width: 100%;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 5%,
      rgba(200,155,60,.10),
      transparent 30%
    ),
    radial-gradient(
      circle at 5% 95%,
      rgba(200,155,60,.06),
      transparent 25%
    ),
    var(--footer-primary);

  color: var(--footer-white);

  font-family:
    "Noto Sans Devanagari",
    "Nirmala UI",
    Mangal,
    sans-serif;
}

/* Decorative circles */

.nvg-footer::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -240px;
  top: -230px;
  border: 1px solid rgba(200,155,60,.18);
  border-radius: 50%;
  pointer-events: none;
}

.nvg-footer::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -180px;
  bottom: -180px;
  border: 1px solid rgba(200,155,60,.12);
  border-radius: 50%;
  pointer-events: none;
}

/* Container */

.nvg-footer__container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =========================================================
   CTA
   ========================================================= */

.nvg-footer__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 45px 0;
  border-bottom: 1px solid var(--footer-border);
}

.nvg-footer__cta-content {
  max-width: 720px;
}

.nvg-footer__cta-label {
  margin: 0 0 8px;
  color: var(--footer-gold);
  font-size: 11.8px;
  font-weight: 800;
  letter-spacing: .8px;
}

.nvg-footer__cta-title {
  margin: 0;
  color: #fff;
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    Mangal,
    serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.5;
}

.nvg-footer__cta-title span {
  color: var(--footer-gold);
}

.nvg-footer__cta-text {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--footer-muted);
  font-size: 13px;
  line-height: 1.8;
}

/* CTA Button */

.nvg-footer__cta-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 22px;
  border: 1px solid var(--footer-gold);
  border-radius: 4px;
  background: var(--footer-gold);
  color: var(--footer-primary);
  text-decoration: none;
  font-family: inherit;
  font-size: 11.8px;
  font-weight: 800;
  transition:
    transform .25s ease,
    background-color .25s ease,
    color .25s ease,
    box-shadow .25s ease;
}

.nvg-footer__cta-button span {
  font-size: 16px;
  transition: transform .25s ease;
}

.nvg-footer__cta-button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--footer-gold);
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.nvg-footer__cta-button:hover span {
  transform: translateX(4px);
}

/* =========================================================
   MAIN FOOTER
   ========================================================= */

.nvg-footer__main {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr 1fr;
  gap: 55px;
  padding: 60px 0 50px;
}

/* =========================================================
   BRAND
   ========================================================= */

.nvg-footer__brand {
  max-width: 350px;
}

.nvg-footer__brand-name {
  margin: 0;
  color: #fff;
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    Mangal,
    serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.45;
}

.nvg-footer__brand-name span {
  color: var(--footer-gold);
}

.nvg-footer__brand-subtitle {
  margin: 2px 0 0;
  color: var(--footer-gold);
  font-size: 10.6px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nvg-footer__brand-text {
  margin: 17px 0 0;
  color: var(--footer-muted);
  font-size: 11.8px;
  line-height: 1.9;
}

/* =========================================================
   SOCIAL
   ========================================================= */

.nvg-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.nvg-footer__social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,155,60,.35);
  border-radius: 50%;
  background: rgba(200,155,60,.06);
  color: var(--footer-gold);
  text-decoration: none;
  font-size: 11.8px;
  font-weight: 800;
  transition:
    background-color .25s ease,
    color .25s ease,
    transform .25s ease,
    border-color .25s ease;
}

.nvg-footer__social a:hover {
  background: var(--footer-gold);
  border-color: var(--footer-gold);
  color: var(--footer-primary);
  transform: translateY(-2px);
}

/* =========================================================
   COLUMNS
   ========================================================= */

.nvg-footer__column-title {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 11px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.nvg-footer__column-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background: var(--footer-gold);
}

/* Links */

.nvg-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nvg-footer__links li {
  margin: 0;
}

.nvg-footer__links a {
  display: inline-block;
  padding: 5px 0;
  color: var(--footer-muted);
  text-decoration: none;
  font-size: 11.8px;
  line-height: 1.6;
  transition:
    color .25s ease,
    transform .25s ease;
}

.nvg-footer__links a::before {
  content: "→";
  display: inline-block;
  margin-right: 6px;
  color: var(--footer-gold);
  opacity: 0;
  transform: translateX(-5px);
  transition:
    opacity .25s ease,
    transform .25s ease;
}

.nvg-footer__links a:hover {
  color: var(--footer-gold);
  transform: translateX(3px);
}

.nvg-footer__links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   CONTACT
   ========================================================= */

.nvg-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 16px;
}

.nvg-footer__contact-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,155,60,.3);
  border-radius: 50%;
  color: var(--footer-gold);
  font-size: 10.6px;
}

.nvg-footer__contact-content strong {
  display: block;
  color: #fff;
  font-size: 10.6px;
  font-weight: 800;
}

.nvg-footer__contact-content a,
.nvg-footer__contact-content span {
  display: block;
  margin-top: 3px;
  color: var(--footer-muted);
  font-size: 10.6px;
  line-height: 1.7;
  text-decoration: none;
}

.nvg-footer__contact-content a:hover {
  color: var(--footer-gold);
}

/* Supported By */

.nvg-footer__highlight {
  margin-top: 22px;
  padding: 14px;
  background: rgba(200,155,60,.06);
  border: 1px solid rgba(200,155,60,.2);
  border-radius: 4px;
}

.nvg-footer__highlight strong {
  display: block;
  color: var(--footer-gold);
  font-size: 10.6px;
}

.nvg-footer__highlight span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.55);
  font-size: 9.4px;
  line-height: 1.6;
}

/* =========================================================
   DISCLAIMER
   ========================================================= */

.nvg-footer__disclaimer {
  margin-bottom: 35px;
  padding: 13px 15px;
  border: 1px solid rgba(200,155,60,.18);
  border-left: 2px solid var(--footer-gold);
  background: rgba(255,255,255,.025);
  color: rgba(255,255,255,.52);
  font-size: 10px;
  line-height: 1.7;
}

.nvg-footer__disclaimer strong {
  color: var(--footer-gold);
}

/* =========================================================
   BOTTOM
   ========================================================= */

.nvg-footer__bottom {
  border-top: 1px solid var(--footer-border);
}

.nvg-footer__bottom-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nvg-footer__copyright {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 9.4px;
  line-height: 1.7;
}

.nvg-footer__copyright strong {
  color: var(--footer-gold);
  font-weight: 700;
}

/* Legal */

.nvg-footer__legal {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nvg-footer__legal a {
  color: rgba(255,255,255,.48);
  text-decoration: none;
  font-size: 9.4px;
  transition: color .25s ease;
}

.nvg-footer__legal a:hover {
  color: var(--footer-gold);
}

/* Back To Top */

.nvg-footer__top {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,155,60,.35);
  border-radius: 50%;
  background: transparent;
  color: var(--footer-gold);
  text-decoration: none;
  font-size: 14px;
  transition:
    background-color .25s ease,
    color .25s ease,
    transform .25s ease;
}

.nvg-footer__top:hover {
  background: var(--footer-gold);
  color: var(--footer-primary);
  transform: translateY(-2px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
  .nvg-footer__main {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }
  .nvg-footer__brand {
    grid-column: 1 / -1;
    max-width: 700px;
  }
  .nvg-footer__cta {
    padding: 40px 0;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .nvg-footer__container {
    width: calc(100% - 28px);
  }
  .nvg-footer__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 38px 0;
  }
  .nvg-footer__cta-title {
    font-size: 28px;
  }
  .nvg-footer__cta-text {
    font-size: 11.8px;
  }
  .nvg-footer__cta-button {
    width: 100%;
  }
  .nvg-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
    padding: 50px 0 40px;
  }
  .nvg-footer__brand {
    grid-column: 1 / -1;
  }
  .nvg-footer__bottom-inner {
    flex-wrap: wrap;
    padding: 18px 0;
    justify-content: center;
    text-align: center;
  }
  .nvg-footer__copyright {
    width: 100%;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .nvg-footer__container {
    width: calc(100% - 22px);
  }
  .nvg-footer__main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .nvg-footer__brand {
    grid-column: auto;
  }
  .nvg-footer__brand-name {
    font-size: 28px;
  }
  .nvg-footer__brand-text {
    font-size: 10.6px;
  }
  .nvg-footer__cta-title {
    font-size: 26px;
  }
  .nvg-footer__cta-text {
    font-size: 11px;
  }
  .nvg-footer__bottom-inner {
    gap: 15px;
  }
  .nvg-footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .nvg-footer *,
  .nvg-footer::before,
  .nvg-footer::after {
    animation: none !important;
    transition: none !important;
  }
}
/* footer end */

.nvg-announcement-bar,
.nvg-announcement-bar * {
  box-sizing: border-box
}

.nvg-announcement-bar {
  width: 100%;
  background: #020e27;
  border-bottom: 1px solid rgba(200, 155, 60, .35);
  color: #fff;
  position: relative;
  z-index: 1000
}

.nvg-announcement-bar__container {
  width: min(100% - 32px, 1240px);
  min-height: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.nvg-announcement-bar__info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.3px;
  font-weight: 500;
  line-height: 1.4;
  color: #f8f5ec
}

.nvg-announcement-bar__icon {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #c89b3c;
  box-shadow: 0 0 0 4px rgba(200, 155, 60, .12)
}

.nvg-announcement-bar__action {
  appearance: none;
  border: 1px solid #c89b3c;
  outline: 0;
  background: #c89b3c;
  color: #020e27;
  min-height: 32px;
  padding: 6px 16px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14.2px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s ease
}

.nvg-announcement-bar__action:hover {
  background: #e8d7a8;
  border-color: #e8d7a8;
  color: #020e27;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, .14)
}

.nvg-announcement-bar__action:focus-visible {
  outline: 2px solid #e8d7a8;
  outline-offset: 3px
}

@media (max-width:767px) {
  .nvg-announcement-bar__container {
    min-height: 54px;
    width: min(100% - 24px, 680px);
    gap: 12px
  }
  .nvg-announcement-bar__info {
    font-size: 13px;
    gap: 8px
  }
  .nvg-announcement-bar__action {
    min-height: 30px;
    padding: 6px 11px;
    font-size: 11.8px
  }
}

@media (max-width:520px) {
  .nvg-announcement-bar__container {
    min-height: 50px;
    width: calc(100% - 20px);
    gap: 10px
  }
  .nvg-announcement-bar__info {
    min-width: 0;
    font-size: 11.8px;
    line-height: 1.35
  }
  .nvg-announcement-bar__icon {
    width: 6px;
    height: 6px;
    flex-basis: 6px;
    flex-shrink: 0
  }
  .nvg-announcement-bar__action {
    flex-shrink: 0;
    padding: 6px 9px;
    font-size: 10.6px;
    border-radius: 3px
  }
}

@media (max-width:380px) {
  .nvg-announcement-bar__container {
    width: calc(100% - 16px);
    gap: 7px
  }
  .nvg-announcement-bar__info {
    font-size: 10.6px
  }
  .nvg-announcement-bar__action {
    padding: 5px 7px;
    font-size: 9.4px
  }
}

.nvg-main-header,
.nvg-main-header * {
  box-sizing: border-box
}

.nvg-main-header {
  width: 100%;
  position: relative;
  z-index: 999;
  background: #fffdf7;
  border-bottom: 1px solid rgba(23, 60, 50, .1);
  box-shadow: 0 5px 25px rgba(23, 60, 50, .05)
}

.nvg-header-inner {
  width: min(100% - 40px, 1240px);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px
}

.nvg-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: #020e27;
  min-width: 0
}

.nvg-brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #c89b3c;
  border-radius: 50%;
  background: #020e27;
  color: #e8d7a8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17.7px;
  font-weight: 700;
  letter-spacing: 1px
}

.nvg-brand-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(232, 215, 168, .45);
  border-radius: 50%
}

.nvg-brand-content {
  display: flex;
  flex-direction: column;
  min-width: 0
}

.nvg-brand-name {
  display: block;
  color: #020e27;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22.4px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.2px
}

.nvg-brand-tagline {
  display: block;
  margin-top: 4px;
  color: #68756d;
  font-size: 11.8px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .2px
}

.nvg-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px
}

.nvg-navigation-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #31453e;
  text-decoration: none;
  font-size: 15.3px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .25s ease
}

.nvg-navigation-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 10px;
  background: #c89b3c;
  transform: scaleX(0);
  transition: transform .25s ease
}

.nvg-navigation-link:hover {
  color: #020e27
}

.nvg-navigation-link:hover::after {
  transform: scaleX(1)
}

.nvg-registration-button {
  appearance: none;
  border: 1px solid #c89b3c;
  background: #c89b3c;
  color: #020e27;
  min-height: 42px;
  margin-left: 10px;
  padding: 0 21px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14.2px;
  font-weight: 800;
  letter-spacing: .3px;
  cursor: pointer;
  transition: all .25s ease
}

.nvg-registration-button:hover {
  background: #020e27;
  border-color: #020e27;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(23, 60, 50, .18)
}

.nvg-menu-trigger {
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(23, 60, 50, .18);
  border-radius: 4px;
  background: #fff;
  cursor: pointer
}

.nvg-menu-trigger span {
  width: 19px;
  height: 2px;
  display: block;
  background: #020e27;
  transition: transform .25s ease
}

.nvg-menu-trigger[aria-expanded=true] span:first-child {
  transform: translateY(4px) rotate(45deg)
}

.nvg-menu-trigger[aria-expanded=true] span:last-child {
  transform: translateY(-4px) rotate(-45deg)
}

@media (max-width:900px) {
  .nvg-header-inner {
    width: min(100% - 30px, 760px);
    min-height: 72px;
    gap: 20px
  }
  .nvg-brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px
  }
  .nvg-brand-name {
    font-size: 20.1px
  }
  .nvg-navigation-link {
    padding: 0 9px;
    font-size: 14.2px
  }
  .nvg-registration-button {
    margin-left: 5px;
    padding: 0 14px
  }
}

@media (max-width:720px) {
  .nvg-header-inner {
    width: calc(100% - 24px);
    min-height: 68px;
    position: relative
  }
  .nvg-brand {
    gap: 10px
  }
  .nvg-brand-mark {
    width: 41px;
    height: 41px;
    flex-basis: 41px;
    font-size: 15.3px
  }
  .nvg-brand-name {
    font-size: 17.7px
  }
  .nvg-brand-tagline {
    font-size: 9.4px
  }
  .nvg-menu-trigger {
    display: flex;
    flex: 0 0 42px
  }
  .nvg-navigation {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fffdf7;
    border: 1px solid rgba(23, 60, 50, .1);
    border-top: 0;
    box-shadow: 0 14px 28px rgba(23, 60, 50, .1)
  }
  .nvg-navigation.is-visible {
    display: flex
  }
  .nvg-navigation-link {
    width: 100%;
    min-height: 44px;
    padding: 0 13px
  }
  .nvg-navigation-link:hover {
    background: #f8f5ec
  }
  .nvg-navigation-link::after {
    display: none
  }
  .nvg-registration-button {
    width: 100%;
    min-height: 44px;
    margin: 5px 0 0
  }
}

@media (max-width:400px) {
  .nvg-header-inner {
    width: calc(100% - 18px)
  }
  .nvg-brand-name {
    font-size: 16.5px
  }
  .nvg-brand-tagline {
    font-size: 8.8px
  }
  .nvg-brand-mark {
    width: 39px;
    height: 39px;
    flex-basis: 39px
  }
}
.nvg-hero-banner__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* =========================================================
   NADI VAIDYA GURUKUL — ABOUT US
   PREMIUM HINDI TYPOGRAPHY + RESPONSIVE DESIGN

   Primary   : #020e27
   Secondary : #c89b3c
   Background: #f8f6f0

   Hindi Heading : Noto Serif Devanagari
   Hindi Body    : Noto Sans Devanagari
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800&family=Noto+Serif+Devanagari:wght@500;600;700;800&display=swap');

.nvg-about,
.nvg-about * {
  box-sizing: border-box;
}

.nvg-about {
  position: relative;
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
  background: #f8f6f0;
  color: #020e27;
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.nvg-about h1,
.nvg-about h2,
.nvg-about h3,
.nvg-about h4,
.nvg-about h5,
.nvg-about h6,
.nvg-about p,
.nvg-about span,
.nvg-about strong,
.nvg-about small {
  margin-top: 0;
}

.nvg-about img {
  max-width: 100%;
}

.nvg-about button,
.nvg-about a {
  font-family: inherit;
}

.nvg-about::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  top: -180px;
  right: -120px;
  border: 1px solid rgba(200, 155, 60, 0.20);
  border-radius: 50%;
  pointer-events: none;
}

.nvg-about::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  bottom: -150px;
  left: -100px;
  border: 1px solid rgba(200, 155, 60, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.nvg-about__container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nvg-about__intro {
  max-width: 780px;
  margin: 0 auto 65px;
  text-align: center;
}

.nvg-about__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #c89b3c;
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;
  font-size: 15.3px;
  font-weight: 700;
  line-height: 1.7;
}

.nvg-about__eyebrow::before,
.nvg-about__eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  flex: 0 0 30px;
  background: #c89b3c;
}

.nvg-about__title {
  margin: 0;
  color: #020e27;
  font-family: "Noto Serif Devanagari", "Nirmala UI", "Mangal", serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.nvg-about__title span {
  color: #c89b3c;
}

.nvg-about__lead {
  max-width: 700px;
  margin: 20px auto 0;
  color: #56606f;
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;
  font-size: 18.9px;
  font-weight: 400;
  line-height: 2;
}

.nvg-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 75px;
}

.nvg-about__visual {
  position: relative;
  padding: 0 18px 18px 0;
}

.nvg-about__image-frame {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  background: #020e27;
  border-radius: 5px;
  box-shadow: 0 25px 55px rgba(2, 14, 39, 0.12);
}

.nvg-about__image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 14, 39, 0.02) 35%, rgba(2, 14, 39, 0.45) 100%);
  pointer-events: none;
}

.nvg-about__image {
  display: block;
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.nvg-about__image-frame:hover .nvg-about__image {
  transform: scale(1.035);
}

.nvg-about__gold-frame {
  position: absolute;
  z-index: 0;
  left: 18px;
  right: 0;
  top: 18px;
  bottom: 0;
  border: 1px solid #c89b3c;
  border-radius: 5px;
  pointer-events: none;
}

.nvg-about__experience {
  position: absolute;
  z-index: 3;
  left: -18px;
  bottom: 45px;
  width: 150px;
  min-height: 150px;
  padding: 22px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #020e27;
  border: 1px solid rgba(200, 155, 60, 0.85);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(2, 14, 39, 0.20);
}

.nvg-about__experience strong {
  color: #c89b3c;
  font-family: "Noto Serif Devanagari", Georgia, serif;
  font-size: 36.6px;
  font-weight: 700;
  line-height: 1.2;
}

.nvg-about__experience span {
  margin-top: 8px;
  color: #ffffff;
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.nvg-about__content {
  max-width: 610px;
}

.nvg-about__content-label {
  margin: 0 0 13px;
  color: #c89b3c;
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;
  font-size: 15.3px;
  font-weight: 700;
  line-height: 1.7;
}

.nvg-about__content-title {
  margin: 0;
  color: #020e27;
  font-family: "Noto Serif Devanagari", "Nirmala UI", "Mangal", serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0;
}

.nvg-about__content-title span {
  color: #c89b3c;
}

.nvg-about__text {
  margin: 20px 0 0;
  color: #5d6572;
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;
  font-size: 17.7px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
}

.nvg-about__text+.nvg-about__text {
  margin-top: 13px;
}

.nvg-about__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.nvg-about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 92px;
  padding: 15px;
  background: #ffffff;
  border: 1px solid rgba(2, 14, 39, 0.08);
  border-radius: 5px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.nvg-about__highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 155, 60, 0.55);
  background: #fffefa;
  box-shadow: 0 12px 25px rgba(2, 14, 39, 0.07);
}

.nvg-about__highlight-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.12);
  color: #c89b3c;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.nvg-about__highlight strong {
  display: block;
  color: #020e27;
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;
  font-size: 15.3px;
  font-weight: 700;
  line-height: 1.65;
}

.nvg-about__highlight span {
  display: block;
  margin-top: 4px;
  color: #737b87;
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.nvg-about__quote {
  position: relative;
  margin-top: 30px;
  padding: 22px 22px 22px 30px;
  background: #020e27;
  border-left: 3px solid #c89b3c;
  border-radius: 4px;
  overflow: hidden;
}

.nvg-about__quote::before {
  content: "\201C";
  position: absolute;
  top: 5px;
  left: 11px;
  color: rgba(200, 155, 60, 0.20);
  font-family: Georgia, serif;
  font-size: 61.4px;
  line-height: 1;
}

.nvg-about__quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-family: "Noto Serif Devanagari", "Nirmala UI", "Mangal", serif;
  font-size: 18.9px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.95;
}

.nvg-about__quote small {
  display: block;
  margin-top: 9px;
  color: #c89b3c;
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.nvg-about__values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 75px;
  border-top: 1px solid rgba(2, 14, 39, 0.10);
  border-bottom: 1px solid rgba(2, 14, 39, 0.10);
}

.nvg-about__value {
  min-height: 130px;
  padding: 25px 22px;
  text-align: center;
  border-right: 1px solid rgba(2, 14, 39, 0.10);
}

.nvg-about__value:last-child {
  border-right: 0;
}

.nvg-about__value-number {
  display: block;
  color: #c89b3c;
  font-family: "Noto Serif Devanagari", Georgia, serif;
  font-size: 29.5px;
  font-weight: 700;
  line-height: 1.3;
}

.nvg-about__value-title {
  display: block;
  margin-top: 8px;
  color: #020e27;
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.7;
}

.nvg-about__value-text {
  display: block;
  margin-top: 5px;
  color: #7a818c;
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.nvg-about h1,
.nvg-about h2,
.nvg-about h3,
.nvg-about h4,
.nvg-about h5,
.nvg-about h6,
.nvg-about p,
.nvg-about span,
.nvg-about strong,
.nvg-about small {
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

@media (max-width: 991px) {
  .nvg-about {
    padding: 75px 0;
  }
  .nvg-about__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .nvg-about__visual {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }
  .nvg-about__content {
    max-width: 760px;
    margin: 0 auto;
  }
  .nvg-about__title {
    font-size: 47.2px;
    line-height: 1.5;
  }
  .nvg-about__content-title {
    font-size: 40.1px;
    line-height: 1.55;
  }
  .nvg-about__lead {
    font-size: 17.7px;
    line-height: 2;
  }
  .nvg-about__text {
    font-size: 16.5px;
    line-height: 2;
  }
  .nvg-about__values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nvg-about__value:nth-child(2) {
    border-right: 0;
  }
  .nvg-about__value:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(2, 14, 39, 0.10);
  }
}

@media (max-width: 767px) {
  .nvg-about {
    padding: 60px 0;
  }
  .nvg-about__container {
    width: calc(100% - 28px);
  }
  .nvg-about__intro {
    margin-bottom: 45px;
  }
  .nvg-about__eyebrow {
    gap: 8px;
    font-size: 13px;
    line-height: 1.7;
  }
  .nvg-about__eyebrow::before,
  .nvg-about__eyebrow::after {
    width: 18px;
    flex-basis: 18px;
  }
  .nvg-about__title {
    font-size: 34.2px;
    line-height: 1.6;
  }
  .nvg-about__lead {
    margin-top: 16px;
    font-size: 16.5px;
    line-height: 2;
  }
  .nvg-about__grid {
    gap: 45px;
  }
  .nvg-about__visual {
    padding: 0 10px 10px 0;
  }
  .nvg-about__image-frame {
    min-height: 430px;
  }
  .nvg-about__image {
    height: 430px;
  }
  .nvg-about__gold-frame {
    left: 10px;
    top: 10px;
  }
  .nvg-about__experience {
    left: -5px;
    bottom: 25px;
    width: 115px;
    min-height: 115px;
    padding: 15px 10px;
  }
  .nvg-about__experience strong {
    font-size: 28.3px;
  }
  .nvg-about__experience span {
    margin-top: 5px;
    font-size: 10.6px;
    line-height: 1.7;
  }
  .nvg-about__content-label {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.7;
  }
  .nvg-about__content-title {
    font-size: 31.9px;
    line-height: 1.6;
  }
  .nvg-about__text {
    margin-top: 16px;
    font-size: 16.5px;
    line-height: 2;
  }
  .nvg-about__text+.nvg-about__text {
    margin-top: 12px;
  }
  .nvg-about__highlights {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }
  .nvg-about__highlight {
    min-height: 85px;
    padding: 14px;
  }
  .nvg-about__highlight-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .nvg-about__highlight strong {
    font-size: 14.2px;
    line-height: 1.7;
  }
  .nvg-about__highlight span {
    font-size: 11.8px;
    line-height: 1.8;
  }
  .nvg-about__quote {
    margin-top: 24px;
    padding: 20px 16px 20px 24px;
  }
  .nvg-about__quote p {
    font-size: 16.5px;
    line-height: 2;
  }
  .nvg-about__quote small {
    font-size: 11.8px;
    line-height: 1.7;
  }
  .nvg-about__values {
    margin-top: 55px;
  }
  .nvg-about__value {
    min-height: 115px;
    padding: 20px 12px;
  }
  .nvg-about__value-number {
    font-size: 24.8px;
  }
  .nvg-about__value-title {
    margin-top: 6px;
    font-size: 14.2px;
    line-height: 1.7;
  }
  .nvg-about__value-text {
    font-size: 11.8px;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .nvg-about {
    padding: 50px 0;
  }
  .nvg-about__container {
    width: calc(100% - 22px);
  }
  .nvg-about__intro {
    margin-bottom: 38px;
  }
  .nvg-about__eyebrow {
    font-size: 11.8px;
  }
  .nvg-about__title {
    font-size: 29.5px;
    line-height: 1.65;
  }
  .nvg-about__lead {
    font-size: 15.3px;
    line-height: 2;
  }
  .nvg-about__content-title {
    font-size: 28.3px;
    line-height: 1.65;
  }
  .nvg-about__text {
    font-size: 15.3px;
    line-height: 2.05;
  }
  .nvg-about__highlight {
    padding: 13px;
  }
  .nvg-about__highlight strong {
    font-size: 13px;
  }
  .nvg-about__highlight span {
    font-size: 11.2px;
  }
  .nvg-about__quote {
    padding: 18px 14px 18px 22px;
  }
  .nvg-about__quote p {
    font-size: 15.3px;
    line-height: 2.05;
  }
  .nvg-about__values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nvg-about__value {
    padding: 18px 8px;
  }
  .nvg-about__value:nth-child(2) {
    border-right: 0;
  }
  .nvg-about__value:nth-child(3) {
    border-right: 1px solid rgba(2, 14, 39, 0.10);
  }
  .nvg-about__value-number {
    font-size: 23.6px;
  }
  .nvg-about__value-title {
    font-size: 13px;
  }
  .nvg-about__value-text {
    font-size: 10.6px;
    line-height: 1.8;
  }
}

@media (max-width: 360px) {
  .nvg-about__title {
    font-size: 27.1px;
  }
  .nvg-about__content-title {
    font-size: 26px;
  }
  .nvg-about__lead {
    font-size: 14.2px;
  }
  .nvg-about__text {
    font-size: 14.2px;
  }
  .nvg-about__experience {
    width: 105px;
    min-height: 105px;
  }
  .nvg-about__experience strong {
    font-size: 26px;
  }
  .nvg-about__experience span {
    font-size: 9.4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nvg-about *,
  .nvg-about *::before,
  .nvg-about *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .nvg-about__image-frame:hover .nvg-about__image {
    transform: none;
  }
  .nvg-about__highlight:hover {
    transform: none;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800&family=Noto+Serif+Devanagari:wght@500;600;700;800&display=swap');

.nvg-learning,
.nvg-learning * {
  box-sizing: border-box;
}

.nvg-learning {
  --nvg-primary: #020e27;
  --nvg-gold: #c89b3c;
  --nvg-gold-light: #e3c778;
  --nvg-ivory: #f8f6f0;
  --nvg-white: #ffffff;
  --nvg-text: #596271;
  --nvg-border: rgba(2,14,39,.10);
  position: relative;
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
  background: var(--nvg-ivory);
  color: var(--nvg-primary);
  font-family: "Noto Sans Devanagari","Nirmala UI","Mangal",sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.nvg-learning h1,
.nvg-learning h2,
.nvg-learning h3,
.nvg-learning h4,
.nvg-learning p,
.nvg-learning span,
.nvg-learning strong {
  margin-top: 0;
}

.nvg-learning img {
  display: block;
  max-width: 100%;
}

.nvg-learning::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -300px;
  left: -220px;
  border: 1px solid rgba(200,155,60,.18);
  border-radius: 50%;
  pointer-events: none;
}

.nvg-learning::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -250px;
  bottom: -230px;
  border: 1px solid rgba(200,155,60,.16);
  border-radius: 50%;
  pointer-events: none;
}

.nvg-learning__container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nvg-learning__header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.nvg-learning__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--nvg-gold);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.nvg-learning__eyebrow::before,
.nvg-learning__eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--nvg-gold);
}

.nvg-learning__title {
  margin: 0;
  color: var(--nvg-primary);
  font-family: "Noto Serif Devanagari","Nirmala UI","Mangal",serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
}

.nvg-learning__title span {
  color: var(--nvg-gold);
}

.nvg-learning__intro {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--nvg-text);
  font-size: 18px;
  line-height: 2;
}

.nvg-learning__hero-image {
  position: relative;
  width: 100%;
  height: 420px;
  margin-bottom: 55px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--nvg-primary);
  box-shadow: 0 25px 60px rgba(2,14,39,.14);
}

.nvg-learning__hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2,14,39,.82) 0%,
      rgba(2,14,39,.42) 45%,
      rgba(2,14,39,.08) 100%
    );
  pointer-events: none;
}

.nvg-learning__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nvg-learning__hero-overlay {
  position: absolute;
  left: 45px;
  bottom: 40px;
  z-index: 2;
  max-width: 560px;
}

.nvg-learning__hero-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 13px;
  border: 1px solid rgba(227,199,120,.55);
  background: rgba(2,14,39,.55);
  color: var(--nvg-gold-light);
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
}

.nvg-learning__hero-title {
  margin: 0;
  color: #fff;
  font-family: "Noto Serif Devanagari","Nirmala UI","Mangal",serif;
  font-size: clamp(28px,3.5vw,46px);
  line-height: 1.55;
}

.nvg-learning__hero-title span {
  color: var(--nvg-gold-light);
}

.nvg-learning__grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.nvg-learning__card {
  position: relative;
  min-height: auto !important;
  padding: 0 27px 30px;
  background: var(--nvg-white);
  border: 1px solid var(--nvg-border);
  border-radius: 7px;
  overflow: hidden;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.nvg-learning__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--nvg-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 3;
}

.nvg-learning__card:hover {
  transform: translateY(-7px);
  border-color: rgba(200,155,60,.45);
  box-shadow: 0 20px 45px rgba(2,14,39,.10);
}

.nvg-learning__card:hover::before {
  transform: scaleX(1);
}

.nvg-learning__card-image {
  position: relative;
  height: auto;
  margin: 0 -27px 25px;
  overflow: hidden;
  background: #ddd;
}

.nvg-learning__card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2,14,39,0) 40%,
    rgba(2,14,39,.30) 100%
  );
}

.nvg-learning__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.nvg-learning__card:hover .nvg-learning__card-image img {
  transform: scale(1.06);
}

.nvg-learning__number {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: -8px 0 20px;
  background: var(--nvg-primary);
  border: 1px solid rgba(200,155,60,.45);
  border-radius: 50%;
  color: var(--nvg-gold);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(2,14,39,.15);
  transition: background .3s ease,color .3s ease;
}

.nvg-learning__card:hover .nvg-learning__number {
  background: var(--nvg-gold);
  color: var(--nvg-primary);
}

.nvg-learning__card-title {
  margin: 0 0 10px;
  color: var(--nvg-primary);
  font-family: "Noto Serif Devanagari","Nirmala UI","Mangal",serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.55;
}

.nvg-learning__card-text {
  margin: 0;
  color: var(--nvg-text);
  font-size: 15px;
  line-height: 1.95;
}

.nvg-learning__card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--nvg-gold);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nvg-learning__card-link span {
  transition: transform .25s ease;
}

.nvg-learning__card:hover .nvg-learning__card-link span {
  transform: translateX(4px);
}

.nvg-learning__process {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: 45px;
  align-items: stretch;
  margin-top: 80px;
  padding: 0;
  background: var(--nvg-primary);
  border-radius: 9px;
  overflow: hidden;
  position: relative;
}

.nvg-learning__process-content {
  position: relative;
  z-index: 2;
  padding: 55px 0 55px 55px;
}

.nvg-learning__process-label {
  margin: 0 0 13px;
  color: var(--nvg-gold);
  font-size: 14px;
  font-weight: 700;
}

.nvg-learning__process-title {
  margin: 0;
  color: #fff;
  font-family: "Noto Serif Devanagari","Nirmala UI","Mangal",serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.6;
}

.nvg-learning__process-title span {
  color: var(--nvg-gold);
}

.nvg-learning__process-text {
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 2;
}

.nvg-learning__process-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.nvg-learning__process-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--nvg-primary) 0%,
    rgba(2,14,39,.25) 35%,
    rgba(2,14,39,.08) 100%
  );
}

.nvg-learning__process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nvg-learning__steps {
  position: absolute;
  left: 55px;
  bottom: 40px;
  right: 40px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 8px;
}

.nvg-learning__step {
  padding: 16px 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 5px;
  background: rgba(2,14,39,.82);
  backdrop-filter: blur(8px);
  transition:
    background .3s ease,
    border-color .3s ease,
    transform .3s ease;
}

.nvg-learning__step:hover {
  transform: translateY(-4px);
  background: rgba(200,155,60,.16);
  border-color: rgba(200,155,60,.50);
}

.nvg-learning__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--nvg-gold);
  color: var(--nvg-primary);
  font-size: 13px;
  font-weight: 800;
}

.nvg-learning__step strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.nvg-learning__step span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  line-height: 1.7;
}

.nvg-learning__statement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 45px;
  padding: 25px 30px;
  background: #fff;
  border: 1px solid rgba(200,155,60,.28);
  border-radius: 5px;
}

.nvg-learning__statement-text {
  margin: 0;
  color: var(--nvg-primary);
  font-family: "Noto Serif Devanagari","Nirmala UI","Mangal",serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.8;
}

.nvg-learning__statement-text span {
  color: var(--nvg-gold);
}

.nvg-learning__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  background: var(--nvg-primary);
  border: 1px solid var(--nvg-primary);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.nvg-learning__button:hover {
  background: var(--nvg-gold);
  border-color: var(--nvg-gold);
  color: var(--nvg-primary);
  transform: translateY(-2px);
}

@media (max-width:991px) {
  .nvg-learning {
    padding: 75px 0;
  }
  .nvg-learning__grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .nvg-learning__hero-image {
    height: 370px;
  }
  .nvg-learning__process {
    grid-template-columns: 1fr;
  }
  .nvg-learning__process-content {
    padding: 45px;
  }
  .nvg-learning__process-image {
    min-height: 380px;
  }
  .nvg-learning__steps {
    left: 35px;
    right: 35px;
    bottom: 30px;
  }
}

@media (max-width:767px) {
  .nvg-learning {
    padding: 60px 0;
  }
  .nvg-learning__container {
    width: calc(100% - 28px);
  }
  .nvg-learning__header {
    margin-bottom: 40px;
  }
  .nvg-learning__eyebrow {
    font-size: 13px;
  }
  .nvg-learning__eyebrow::before,
  .nvg-learning__eyebrow::after {
    width: 18px;
  }
  .nvg-learning__title {
    font-size: 34px;
    line-height: 1.6;
  }
  .nvg-learning__intro {
    font-size: 16px;
    line-height: 2;
  }
  .nvg-learning__hero-image {
    height: 360px;
    margin-bottom: 35px;
  }
  .nvg-learning__hero-overlay {
    left: 22px;
    right: 22px;
    bottom: 25px;
  }
  .nvg-learning__hero-title {
    font-size: 29px;
  }
  .nvg-learning__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .nvg-learning__card {
    min-height: auto;
    padding: 0 22px 25px;
  }
  .nvg-learning__card-image {
  
    margin-left: -22px;
    margin-right: -22px;
  }
  .nvg-learning__card-title {
    font-size: 22px;
  }
  .nvg-learning__card-text {
    font-size: 15px;
    line-height: 2;
  }
  .nvg-learning__process {
    margin-top: 55px;
    gap: 0;
  }
  .nvg-learning__process-content {
    padding: 32px 22px 28px;
  }
  .nvg-learning__process-title {
    font-size: 31px;
    line-height: 1.65;
  }
  .nvg-learning__process-text {
    font-size: 15px;
    line-height: 2;
  }
  .nvg-learning__process-image {
    height: 300px;
    min-height: 300px;
  }
  .nvg-learning__process-image::after {
    background: linear-gradient(
      180deg,
      rgba(2,14,39,.10),
      rgba(2,14,39,.72)
    );
  }
  .nvg-learning__steps {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 7px;
  }
  .nvg-learning__step:last-child {
    grid-column: 1 / -1;
  }
  .nvg-learning__statement {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
    padding: 22px 18px;
  }
  .nvg-learning__statement-text {
    font-size: 17px;
    line-height: 1.9;
  }
  .nvg-learning__button {
    width: 100%;
  }
}

@media (max-width:480px) {
  .nvg-learning {
    padding: 50px 0;
  }
  .nvg-learning__container {
    width: calc(100% - 22px);
  }
  .nvg-learning__title {
    font-size: 29px;
  }
  .nvg-learning__intro {
    font-size: 15px;
  }
  .nvg-learning__hero-image {
    height: 320px;
  }
  .nvg-learning__hero-title {
    font-size: 25px;
  }
  .nvg-learning__card {
    padding: 0 18px 22px;
  }
  .nvg-learning__card-image {
  
    margin-left: -18px;
    margin-right: -18px;
  }
  .nvg-learning__number {
    width: 43px;
    height: 43px;
  }
  .nvg-learning__card-title {
    font-size: 21px;
  }
  .nvg-learning__card-text {
    font-size: 14px;
  }
  .nvg-learning__process-content {
    padding: 28px 17px;
  }
  .nvg-learning__process-title {
    font-size: 28px;
  }
  .nvg-learning__process-image {
    height: 360px;
    min-height: 360px;
  }
  .nvg-learning__steps {
    grid-template-columns: 1fr 1fr;
  }
  .nvg-learning__step {
    padding: 14px 7px;
  }
  .nvg-learning__step strong {
    font-size: 12px;
  }
  .nvg-learning__step span {
    font-size: 9px;
  }
  .nvg-learning__statement-text {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion:reduce) {
  .nvg-learning *,
  .nvg-learning *::before,
  .nvg-learning *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .nvg-learning__card:hover,
  .nvg-learning__step:hover,
  .nvg-learning__button:hover {
    transform: none;
  }
}

/* =========================================================
   NADI VAIDYA GURUKUL
   WORKSHOP CURRICULUM SECTION

   Primary   : #020e27
   Secondary : #c89b3c
   Background: #f8f6f0

   Unique Prefix: nvg-curriculum
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800&family=Noto+Serif+Devanagari:wght@500;600;700;800&display=swap');

.nvg-curriculum,
.nvg-curriculum * {
  box-sizing: border-box;
}

.nvg-curriculum {
  --primary: #020e27;
  --gold: #c89b3c;
  --ivory: #f8f6f0;
  --white: #ffffff;
  --text: #5d6572;
  --border: rgba(2, 14, 39, 0.10);

  position: relative;
  width: 100%;
  padding: 20px  0;
  overflow: hidden;

     background: #f8f6f0;
  color: var(--primary);

  font-family:
    "Noto Sans Devanagari",
    "Nirmala UI",
    "Mangal",
    sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.nvg-curriculum::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -260px;
  top: -180px;
  border: 1px solid rgba(200, 155, 60, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.nvg-curriculum::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -150px;
  bottom: -130px;
  border: 1px solid rgba(200, 155, 60, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.nvg-curriculum__container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nvg-curriculum__header {
  max-width: 790px;
  margin: 0 auto 50px;
  text-align: center;
}

.nvg-curriculum__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 15.3px;
  font-weight: 700;
  line-height: 1.7;
}

.nvg-curriculum__eyebrow::before,
.nvg-curriculum__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.nvg-curriculum__title {
  margin: 0;
  color: var(--primary);
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    "Mangal",
    serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
}

.nvg-curriculum__title span {
  color: var(--gold);
}

.nvg-curriculum__intro {
  max-width: 710px;
  margin: 18px auto 0;
  color: var(--text);
  font-size: 17.7px;
  line-height: 2;
}

.nvg-curriculum__hero-image {
  position: relative;
  width: 100%;
  height: 410px;
  margin: 0 auto 55px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--primary);
  box-shadow: 0 25px 60px rgba(2, 14, 39, 0.12);
}

.nvg-curriculum__hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 14, 39, 0.78) 0%,
      rgba(2, 14, 39, 0.35) 42%,
      rgba(2, 14, 39, 0.08) 100%
    );
  pointer-events: none;
}

.nvg-curriculum__hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.nvg-curriculum__hero-image:hover img {
  transform: scale(1.03);
}

.nvg-curriculum__hero-overlay {
  position: absolute;
  left: 45px;
  bottom: 40px;
  z-index: 2;
  max-width: 430px;
}

.nvg-curriculum__hero-overlay span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
}

.nvg-curriculum__hero-overlay strong {
  display: block;
  color: #ffffff;
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    "Mangal",
    serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.45;
}

.nvg-curriculum__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 55px;
  align-items: start;
}

.nvg-curriculum__nav {
  position: sticky;
  top: 100px;
  padding: 25px 0;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.nvg-curriculum__nav-label {
  padding: 0 22px 17px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.nvg-curriculum__nav-button {
  width: 100%;
  min-height: 55px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 14.2px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.nvg-curriculum__nav-button:hover {
  background: rgba(200, 155, 60, 0.07);
  color: var(--primary);
}

.nvg-curriculum__nav-button.is-active {
  background: #ffffff;
  color: var(--primary);
  border-left-color: var(--gold);
}

.nvg-curriculum__nav-number {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 155, 60, 0.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 10.6px;
  font-weight: 800;
}

.nvg-curriculum__content {
  min-width: 0;
}

.nvg-curriculum__item {
  display: none;
  padding: 38px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 7px;
  box-shadow: 0 15px 40px rgba(2, 14, 39, 0.045);
  animation: nvgCurriculumReveal 0.45s ease;
}

.nvg-curriculum__item.is-active {
  display: block;
}

@keyframes nvgCurriculumReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nvg-curriculum__item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.nvg-curriculum__item-number {
  color: rgba(200, 155, 60, 0.28);
  font-family:
    "Noto Serif Devanagari",
    Georgia,
    serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.nvg-curriculum__item-title {
  margin: 0;
  color: var(--primary);
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    "Mangal",
    serif;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.55;
}

.nvg-curriculum__item-subtitle {
  margin: 7px 0 0;
  color: var(--gold);
  font-size: 14.2px;
  font-weight: 700;
}

.nvg-curriculum__item-description {
  margin: 25px 0 0;
  color: var(--text);
  font-size: 16.5px;
  line-height: 2;
}

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

.nvg-curriculum__topic {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 15px;
  background: var(--ivory);
  border: 1px solid rgba(2, 14, 39, 0.07);
  border-radius: 4px;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.nvg-curriculum__topic:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 155, 60, 0.45);
}

.nvg-curriculum__check {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: var(--gold);
  font-size: 11.8px;
  font-weight: 800;
}

.nvg-curriculum__topic-text {
  color: var(--primary);
  font-size: 14.2px;
  font-weight: 600;
  line-height: 1.75;
}

.nvg-curriculum__practical {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 20px;
  background: var(--primary);
  border-radius: 5px;
}

.nvg-curriculum__practical-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 155, 60, 0.6);
  border-radius: 50%;
  color: var(--gold);
  font-size: 20px;
}

.nvg-curriculum__practical strong {
  display: block;
  color: #ffffff;
  font-size: 14.2px;
  font-weight: 700;
  line-height: 1.7;
}

.nvg-curriculum__practical span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11.8px;
  line-height: 1.7;
}

.nvg-curriculum__note {
  margin-top: 55px;
  padding: 28px 30px;
  background: var(--primary);
  border-radius: 6px;
  text-align: center;
}

.nvg-curriculum__note-title {
  margin: 0;
  color: var(--gold);
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    "Mangal",
    serif;
  font-size: 24.8px;
  font-weight: 700;
  line-height: 1.6;
}

.nvg-curriculum__note-text {
  max-width: 750px;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.2px;
  line-height: 1.9;
}

@media (max-width: 991px) {
  .nvg-curriculum {
    padding: 80px 0;
  }
  .nvg-curriculum__hero-image {
    height: 360px;
  }
  .nvg-curriculum__layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .nvg-curriculum__nav {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns:
      repeat(4, 1fr);
    padding: 10px;
  }
  .nvg-curriculum__nav-label {
    display: none;
  }
  .nvg-curriculum__nav-button {
    min-height: 52px;
    justify-content: center;
    padding: 7px;
    border-left: 0;
    border-bottom: 3px solid transparent;
    text-align: center;
  }
  .nvg-curriculum__nav-button.is-active {
    border-bottom-color: var(--gold);
    border-left-color: transparent;
  }
  .nvg-curriculum__nav-number {
    display: none;
  }
  .nvg-curriculum__nav-button {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .nvg-curriculum {
    padding: 60px 0;
  }
  .nvg-curriculum__container {
    width: calc(100% - 28px);
  }
  .nvg-curriculum__header {
    margin-bottom: 35px;
  }
  .nvg-curriculum__eyebrow {
    font-size: 13px;
  }
  .nvg-curriculum__eyebrow::before,
  .nvg-curriculum__eyebrow::after {
    width: 18px;
  }
  .nvg-curriculum__title {
    font-size: 34px;
    line-height: 1.6;
  }
  .nvg-curriculum__intro {
    font-size: 15.3px;
    line-height: 2;
  }
  .nvg-curriculum__hero-image {
    height: 300px;
    margin-bottom: 35px;
    border-radius: 6px;
  }
  .nvg-curriculum__hero-image::after {
    background:
      linear-gradient(
        180deg,
        rgba(2, 14, 39, 0.08) 0%,
        rgba(2, 14, 39, 0.72) 100%
      );
  }
  .nvg-curriculum__hero-overlay {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }
  .nvg-curriculum__hero-overlay span {
    font-size: 12px;
  }
  .nvg-curriculum__hero-overlay strong {
    font-size: 27px;
    line-height: 1.5;
  }
  .nvg-curriculum__nav {
    grid-template-columns:
      repeat(2, 1fr);
    gap: 4px;
  }
  .nvg-curriculum__nav-button {
    min-height: 48px;
    font-size: 11.8px;
  }
  .nvg-curriculum__item {
    padding: 25px 18px;
  }
  .nvg-curriculum__item-top {
    gap: 12px;
    padding-bottom: 20px;
  }
  .nvg-curriculum__item-number {
    font-size: 41px;
  }
  .nvg-curriculum__item-title {
    font-size: 26px;
    line-height: 1.6;
  }
  .nvg-curriculum__item-subtitle {
    font-size: 11.8px;
  }
  .nvg-curriculum__item-description {
    font-size: 15.3px;
    line-height: 2;
  }
  .nvg-curriculum__topics {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .nvg-curriculum__topic {
    padding: 13px;
  }
  .nvg-curriculum__topic-text {
    font-size: 13px;
    line-height: 1.8;
  }
  .nvg-curriculum__practical {
    align-items: flex-start;
    padding: 17px;
  }
  .nvg-curriculum__practical strong {
    font-size: 13px;
  }
  .nvg-curriculum__practical span {
    font-size: 10.6px;
  }
  .nvg-curriculum__note {
    margin-top: 35px;
    padding: 22px 17px;
  }
  .nvg-curriculum__note-title {
    font-size: 21px;
  }
  .nvg-curriculum__note-text {
    font-size: 11.8px;
    line-height: 2;
  }
}

@media (max-width: 480px) {
  .nvg-curriculum__container {
    width: calc(100% - 22px);
  }
  .nvg-curriculum__title {
    font-size: 29.5px;
  }
  .nvg-curriculum__hero-image {
    height: 250px;
  }
  .nvg-curriculum__hero-overlay {
    left: 18px;
    bottom: 18px;
  }
  .nvg-curriculum__hero-overlay strong {
    font-size: 23px;
  }
  .nvg-curriculum__nav-button {
    min-height: 45px;
    font-size: 10.6px;
  }
  .nvg-curriculum__item {
    padding: 22px 15px;
  }
  .nvg-curriculum__item-title {
    font-size: 23.6px;
  }
  .nvg-curriculum__item-number {
    font-size: 35px;
  }
  .nvg-curriculum__item-description {
    font-size: 14.2px;
  }
  .nvg-curriculum__topic-text {
    font-size: 11.8px;
  }
  .nvg-curriculum__practical {
    gap: 12px;
  }
  .nvg-curriculum__practical-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 16.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nvg-curriculum *,
  .nvg-curriculum *::before,
  .nvg-curriculum *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   NADI VAIDYA GURUKUL
   WHO SHOULD ATTEND
   PREMIUM EDITORIAL DESIGN
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800&family=Noto+Serif+Devanagari:wght@500;600;700;800&display=swap');

.nvg-attend,
.nvg-attend * {
  box-sizing: border-box;
}

.nvg-attend {
  --nvg-navy: #020e27;
  --nvg-navy-2: #071936;
  --nvg-gold: #c89b3c;
  --nvg-gold-light: #e2c477;
  --nvg-ivory: #f8f6f0;
  --nvg-white: #ffffff;
  --nvg-text: #626a76;
  --nvg-border: rgba(2, 14, 39, .10);

  position: relative;
  width: 100%;
  padding: 110px 0;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      var(--nvg-ivory) 100%
    );

  color: var(--nvg-navy);

  font-family:
    "Noto Sans Devanagari",
    "Nirmala UI",
    Mangal,
    sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.nvg-attend::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -360px;
  top: -300px;
  border: 1px solid rgba(200, 155, 60, .16);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(200, 155, 60, .025),
    0 0 0 90px rgba(200, 155, 60, .018);
  pointer-events: none;
}

.nvg-attend::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -220px;
  bottom: -220px;
  border: 1px solid rgba(200, 155, 60, .13);
  border-radius: 50%;
  pointer-events: none;
}

.nvg-attend__container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nvg-attend__header {
  max-width: 820px;
  margin: 0 auto 68px;
  text-align: center;
}

.nvg-attend__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--nvg-gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
}

.nvg-attend__eyebrow::before,
.nvg-attend__eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--nvg-gold)
    );
}

.nvg-attend__eyebrow::after {
  background:
    linear-gradient(
      90deg,
      var(--nvg-gold),
      transparent
    );
}

.nvg-attend__title {
  margin: 0;
  color: var(--nvg-navy);
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    Mangal,
    serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.52;
  letter-spacing: -.025em;
}

.nvg-attend__title span {
  display: inline;
  color: var(--nvg-gold);
}

.nvg-attend__intro {
  max-width: 720px;
  margin: 19px auto 0;
  color: var(--nvg-text);
  font-size: 17px;
  line-height: 2;
  font-weight: 400;
}

.nvg-attend__intro-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 350px;
  margin-bottom: 58px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      var(--nvg-navy),
      var(--nvg-navy-2)
    );
  border-radius: 10px;
  box-shadow: 0 28px 65px rgba(2, 14, 39, .14);
}

.nvg-attend__intro-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}

.nvg-attend__intro-content::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -80px;
  right: -80px;
  border: 1px solid rgba(200, 155, 60, .20);
  border-radius: 50%;
}

.nvg-attend__intro-label {
  margin: 0 0 13px;
  color: var(--nvg-gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.nvg-attend__intro-heading {
  max-width: 530px;
  margin: 0;
  color: #ffffff;
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    Mangal,
    serif;
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.55;
  font-weight: 700;
}

.nvg-attend__intro-heading span {
  color: var(--nvg-gold-light);
}

.nvg-attend__intro-text {
  max-width: 560px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.95;
}

.nvg-attend__intro-visual {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background:
    url("workshop-training.jpg")
    center / cover no-repeat;
}

.nvg-attend__intro-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(2, 14, 39, .42),
      rgba(2, 14, 39, .03)
    );
}

.nvg-attend__intro-visual::after {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 2;
  border: 1px solid rgba(200, 155, 60, .65);
  border-radius: 5px;
  pointer-events: none;
}

.nvg-attend__grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.nvg-attend__card {
  position: relative;
  min-height: 255px;
  padding: 28px 24px 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--nvg-border);
  border-radius: 7px;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
  isolation: isolate;
}

.nvg-attend__card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  top: -65px;
  right: -55px;
  border: 1px solid rgba(200, 155, 60, .15);
  border-radius: 50%;
  transition: transform .4s ease;
}

.nvg-attend__card:hover {
  transform: translateY(-7px);
  border-color: rgba(200, 155, 60, .45);
  box-shadow: 0 18px 42px rgba(2, 14, 39, .09);
}

.nvg-attend__card:hover::before {
  transform: scale(1.35);
}

.nvg-attend__card-icon {
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 21px;
  border: 1px solid rgba(200, 155, 60, .42);
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      var(--nvg-navy),
      #0b1e40
    );
  color: var(--nvg-gold-light);
  font-family:
    "Noto Serif Devanagari",
    serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 7px 18px rgba(2, 14, 39, .10);
}

.nvg-attend__card-title {
  margin: 0;
  color: var(--nvg-navy);
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    Mangal,
    serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.nvg-attend__card-text {
  margin: 9px 0 0;
  color: var(--nvg-text);
  font-size: 12.8px;
  line-height: 1.85;
}

.nvg-attend__card-line {
  width: 34px;
  height: 2px;
  margin-top: 20px;
  background:
    linear-gradient(
      90deg,
      var(--nvg-gold),
      transparent
    );
  transition: width .3s ease;
}

.nvg-attend__card:hover
.nvg-attend__card-line {
  width: 60px;
}

.nvg-attend__bottom {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 55px;
  align-items: center;
  margin-top: 65px;
  padding-top: 60px;
  border-top: 1px solid var(--nvg-border);
}

.nvg-attend__bottom-label {
  display: block;
  margin-bottom: 11px;
  color: var(--nvg-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.nvg-attend__bottom-heading {
  margin: 0;
  color: var(--nvg-navy);
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    Mangal,
    serif;
  font-size: 35px;
  line-height: 1.55;
  font-weight: 700;
}

.nvg-attend__bottom-heading span {
  color: var(--nvg-gold);
}

.nvg-attend__bottom-text {
  max-width: 500px;
  margin: 15px 0 0;
  color: var(--nvg-text);
  font-size: 14.5px;
  line-height: 1.95;
}

.nvg-attend__check-list {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.nvg-attend__check {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  background: #ffffff;
  border: 1px solid var(--nvg-border);
  border-radius: 5px;
  transition:
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.nvg-attend__check:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 155, 60, .42);
  box-shadow: 0 9px 24px rgba(2, 14, 39, .055);
}

.nvg-attend__check-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200, 155, 60, .12);
  color: var(--nvg-gold);
  font-size: 13px;
  font-weight: 800;
}

.nvg-attend__check-text {
  color: var(--nvg-navy);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.6;
}

.nvg-attend__cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 60px;
  padding: 31px 34px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      var(--nvg-navy),
      #071a39
    );
  border-radius: 7px;
  box-shadow: 0 20px 40px rgba(2, 14, 39, .12);
}

.nvg-attend__cta::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -80px;
  top: -95px;
  border: 1px solid rgba(200, 155, 60, .22);
  border-radius: 50%;
  pointer-events: none;
}

.nvg-attend__cta-mark {
  width: 53px;
  height: 53px;
  flex: 0 0 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 155, 60, .55);
  border-radius: 50%;
  color: var(--nvg-gold-light);
  font-size: 20px;
}

.nvg-attend__cta-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.nvg-attend__cta-label {
  display: block;
  margin-bottom: 3px;
  color: var(--nvg-gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
}

.nvg-attend__cta-title {
  margin: 0;
  color: #ffffff;
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    Mangal,
    serif;
  font-size: 23px;
  line-height: 1.6;
  font-weight: 700;
}

.nvg-attend__cta-title span {
  color: var(--nvg-gold-light);
}

.nvg-attend__cta-text {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12.5px;
  line-height: 1.7;
}

.nvg-attend__cta-button {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 23px;
  flex: 0 0 auto;
  border: 1px solid var(--nvg-gold);
  border-radius: 4px;
  background: var(--nvg-gold);
  color: var(--nvg-navy);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease,
    border-color .25s ease;
}

.nvg-attend__cta-button span {
  font-size: 17px;
  transition: transform .25s ease;
}

.nvg-attend__cta-button:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: #ffffff;
}

.nvg-attend__cta-button:hover span {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .nvg-attend__grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
  .nvg-attend__card {
    min-height: 230px;
  }
}

@media (max-width: 991px) {
  .nvg-attend {
    padding: 85px 0;
  }
  .nvg-attend__intro-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .nvg-attend__intro-content {
    padding: 42px;
  }
  .nvg-attend__intro-visual {
    min-height: 330px;
  }
  .nvg-attend__bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .nvg-attend__bottom-text {
    max-width: 700px;
  }
}

@media (max-width: 767px) {
  .nvg-attend {
    padding: 65px 0;
  }
  .nvg-attend__container {
    width: calc(100% - 28px);
  }
  .nvg-attend__header {
    margin-bottom: 42px;
  }
  .nvg-attend__eyebrow {
    gap: 8px;
    font-size: 11.5px;
  }
  .nvg-attend__eyebrow::before,
  .nvg-attend__eyebrow::after {
    width: 18px;
  }
  .nvg-attend__title {
    font-size: 33px;
    line-height: 1.6;
  }
  .nvg-attend__intro {
    margin-top: 14px;
    font-size: 14.5px;
    line-height: 1.95;
  }
  .nvg-attend__intro-card {
    margin-bottom: 38px;
    border-radius: 7px;
  }
  .nvg-attend__intro-content {
    padding: 31px 24px;
  }
  .nvg-attend__intro-heading {
    font-size: 28px;
    line-height: 1.6;
  }
  .nvg-attend__intro-text {
    font-size: 13.5px;
    line-height: 1.9;
  }
  .nvg-attend__intro-visual {
    min-height: 245px;
  }
  .nvg-attend__intro-visual::after {
    inset: 13px;
  }
  .nvg-attend__grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .nvg-attend__card {
    min-height: auto;
    padding: 23px 20px 22px;
  }
  .nvg-attend__card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    font-size: 12px;
  }
  .nvg-attend__card-title {
    font-size: 19px;
  }
  .nvg-attend__card-text {
    font-size: 12.2px;
    line-height: 1.8;
  }
  .nvg-attend__bottom {
    margin-top: 43px;
    padding-top: 40px;
  }
  .nvg-attend__bottom-heading {
    font-size: 29px;
    line-height: 1.6;
  }
  .nvg-attend__bottom-text {
    font-size: 13px;
    line-height: 1.9;
  }
  .nvg-attend__check-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .nvg-attend__cta {
    margin-top: 43px;
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .nvg-attend__cta-mark {
    width: 45px;
    height: 45px;
    flex-basis: 45px;
    font-size: 17px;
  }
  .nvg-attend__cta-title {
    font-size: 21px;
  }
  .nvg-attend__cta-text {
    font-size: 11.8px;
  }
  .nvg-attend__cta-button {
    width: 100%;
    min-height: 47px;
  }
}

@media (max-width: 480px) {
  .nvg-attend__container {
    width: calc(100% - 22px);
  }
  .nvg-attend__title {
    font-size: 28.5px;
  }
  .nvg-attend__intro {
    font-size: 13.5px;
  }
  .nvg-attend__intro-content {
    padding: 27px 19px;
  }
  .nvg-attend__intro-heading {
    font-size: 25px;
  }
  .nvg-attend__intro-visual {
    min-height: 215px;
  }
  .nvg-attend__card {
    padding: 21px 17px;
  }
  .nvg-attend__card-title {
    font-size: 18px;
  }
  .nvg-attend__card-text {
    font-size: 11.5px;
  }
  .nvg-attend__bottom-heading {
    font-size: 26px;
  }
  .nvg-attend__check {
    min-height: 61px;
    padding: 12px;
  }
  .nvg-attend__check-text {
    font-size: 11.8px;
  }
  .nvg-attend__cta-title {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nvg-attend *,
  .nvg-attend::before,
  .nvg-attend::after {
    animation: none !important;
    transition: none !important;
  }
}
/* =========================================================
   NADI VAIDYA GURUKUL — REGISTRATION SECTION
   ========================================================= */

.nvg-reg,
.nvg-reg * {
  box-sizing: border-box;
}

.nvg-reg {
  --reg-navy: #06152f;
  --reg-navy-dark: #020d21;
  --reg-gold: #c89a3d;
  --reg-gold-light: #dfb85d;
  --reg-white: #ffffff;
  --reg-text: #26354d;
  --reg-muted: #6d7889;
  --reg-border: #e4e8ee;
  --reg-soft: #f7f8fa;

  width: 100%;
  padding: 85px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(200, 154, 61, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  font-family:
    "Noto Sans Devanagari",
    "Nirmala UI",
    Mangal,
    sans-serif;
}

.nvg-reg::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -300px;
  top: -250px;
  border: 1px solid rgba(200, 154, 61, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.nvg-reg::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -240px;
  bottom: -230px;
  border: 1px solid rgba(6, 21, 47, 0.07);
  border-radius: 50%;
  pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.nvg-reg__container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


/* =========================================================
   HEADER
   ========================================================= */

.nvg-reg__header {
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

.nvg-reg__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--reg-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.nvg-reg__eyebrow::before,
.nvg-reg__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--reg-gold);
}

.nvg-reg__title {
  margin: 0;
  color: var(--reg-navy);
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    Mangal,
    serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.45;
}

.nvg-reg__title span {
  color: var(--reg-gold);
}

.nvg-reg__intro {
  max-width: 780px;
  margin: 16px auto 0;
  color: var(--reg-muted);
  font-size: 14px;
  line-height: 2;
}


/* =========================================================
   MAIN GRID
   ========================================================= */

.nvg-reg__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: stretch;
}


/* =========================================================
   INFORMATION PANEL
   ========================================================= */

.nvg-reg__info {
  position: relative;
  padding: 45px 42px;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(200, 154, 61, 0.18),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      var(--reg-navy) 0%,
      var(--reg-navy-dark) 100%
    );
  color: var(--reg-white);
  box-shadow: 0 20px 50px rgba(2, 13, 33, 0.14);
}

.nvg-reg__info::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -150px;
  bottom: -150px;
  border: 1px solid rgba(200, 154, 61, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.nvg-reg__info-label {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--reg-gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.nvg-reg__info-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    Mangal,
    serif;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.5;
}

.nvg-reg__info-title span {
  display: block;
  color: var(--reg-gold-light);
}

.nvg-reg__info-text {
  position: relative;
  z-index: 1;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.9;
}


/* =========================================================
   DETAILS
   ========================================================= */

.nvg-reg__details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.nvg-reg__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.nvg-reg__detail:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 154, 61, 0.45);
  background: rgba(200, 154, 61, 0.07);
}

.nvg-reg__detail-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 154, 61, 0.45);
  border-radius: 50%;
  color: var(--reg-gold-light);
  font-size: 11px;
}

.nvg-reg__detail-content {
  min-width: 0;
}

.nvg-reg__detail-content strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.nvg-reg__detail-content span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10.5px;
  line-height: 1.55;
}


/* =========================================================
   NOTICE
   ========================================================= */

.nvg-reg__notice {
  position: relative;
  z-index: 1;
  margin-top: 25px;
  padding: 15px 17px;
  border-left: 3px solid var(--reg-gold);
  background: rgba(200, 154, 61, 0.08);
}

.nvg-reg__notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--reg-gold-light);
  font-size: 12px;
  font-weight: 800;
}

.nvg-reg__notice span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10.5px;
  line-height: 1.75;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.nvg-reg__form-card {
  padding: 42px;
  border: 1px solid var(--reg-border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(6, 21, 47, 0.08);
}

.nvg-reg__form-header {
  margin-bottom: 28px;
}

.nvg-reg__form-label {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--reg-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
}

.nvg-reg__form-title {
  margin: 0;
  color: var(--reg-navy);
  font-family:
    "Noto Serif Devanagari",
    "Nirmala UI",
    Mangal,
    serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.nvg-reg__form-subtitle {
  margin: 8px 0 0;
  color: var(--reg-muted);
  font-size: 11.5px;
  line-height: 1.8;
}


/* =========================================================
   FORM FIELDS
   ========================================================= */

.nvg-reg__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 16px;
}

.nvg-reg__field {
  min-width: 0;
}

.nvg-reg__field--full {
  grid-column: 1 / -1;
}

.nvg-reg__label {
  display: block;
  margin-bottom: 7px;
  color: var(--reg-text);
  font-size: 11.5px;
  font-weight: 700;
}

.nvg-reg__required {
  color: #c94c4c;
}

.nvg-reg__input,
.nvg-reg__select,
.nvg-reg__textarea {
  width: 100%;
  border: 1px solid var(--reg-border);
  outline: none;
  border-radius: 6px;
  background: #ffffff;
  color: var(--reg-text);
  font-family: inherit;
  font-size: 12px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.nvg-reg__input,
.nvg-reg__select {
  height: 46px;
  padding: 0 13px;
}

.nvg-reg__textarea {
  min-height: 105px;
  padding: 12px 13px;
  resize: vertical;
  line-height: 1.7;
}

.nvg-reg__input::placeholder,
.nvg-reg__textarea::placeholder {
  color: #a2aab6;
}

.nvg-reg__input:hover,
.nvg-reg__select:hover,
.nvg-reg__textarea:hover {
  border-color: #cbd2dc;
}

.nvg-reg__input:focus,
.nvg-reg__select:focus,
.nvg-reg__textarea:focus {
  border-color: var(--reg-gold);
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(200, 154, 61, 0.1);
}

.nvg-reg__select {
  cursor: pointer;
}


/* =========================================================
   CONSENT
   ========================================================= */

.nvg-reg__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  padding: 13px 14px;
  border: 1px solid #edf0f4;
  border-radius: 7px;
  background: #fafbfc;
}

.nvg-reg__consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 2px 0 0;
  accent-color: var(--reg-gold);
  cursor: pointer;
}

.nvg-reg__consent label {
  color: var(--reg-muted);
  font-size: 10.5px;
  line-height: 1.7;
  cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.nvg-reg__submit {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding: 0 20px;
  border: 1px solid var(--reg-gold);
  border-radius: 6px;
  outline: none;
  background: var(--reg-gold);
  color: var(--reg-navy);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.nvg-reg__submit span {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.nvg-reg__submit:hover {
  transform: translateY(-2px);
  background: var(--reg-navy);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(6, 21, 47, 0.16);
}

.nvg-reg__submit:hover span {
  transform: translateX(4px);
}

.nvg-reg__submit:active {
  transform: translateY(0);
}


/* =========================================================
   FORM NOTE
   ========================================================= */

.nvg-reg__form-note {
  margin: 12px 0 0;
  color: #929aa6;
  font-size: 9.5px;
  line-height: 1.7;
  text-align: center;
}


/* =========================================================
   SUCCESS MESSAGE
   ========================================================= */

.nvg-reg__success {
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid #b9dfc6;
  border-radius: 6px;
  background: #f0faf3;
  color: #26743b;
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.nvg-reg__success.is-visible {
  display: block;
}


/* =========================================================
   VALIDATION
   ========================================================= */

.nvg-reg__input:invalid:not(:placeholder-shown),
.nvg-reg__select:invalid:not(:focus) {
  border-color: #e1b2b2;
}

.nvg-reg__input:valid,
.nvg-reg__select:valid {
  border-color: var(--reg-border);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

  .nvg-reg {
    padding: 70px 0;
  }

  .nvg-reg__container {
    width: min(100% - 32px, 850px);
  }

  .nvg-reg__header {
    margin-bottom: 40px;
  }

  .nvg-reg__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .nvg-reg__info {
    padding: 38px;
  }

  .nvg-reg__form-card {
    padding: 38px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .nvg-reg {
    padding: 55px 0;
  }

  .nvg-reg__container {
    width: calc(100% - 28px);
  }

  .nvg-reg__header {
    margin-bottom: 32px;
  }

  .nvg-reg__eyebrow {
    font-size: 11px;
  }

  .nvg-reg__eyebrow::before,
  .nvg-reg__eyebrow::after {
    width: 20px;
  }

  .nvg-reg__title {
    font-size: 30px;
    line-height: 1.5;
  }

  .nvg-reg__intro {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.85;
  }

  .nvg-reg__info {
    padding: 30px 25px;
    border-radius: 9px;
  }

  .nvg-reg__info-title {
    font-size: 25px;
  }

  .nvg-reg__info-text {
    font-size: 11.5px;
    line-height: 1.85;
  }

  .nvg-reg__details {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 24px;
  }

  .nvg-reg__detail {
    min-height: 60px;
  }

  .nvg-reg__notice {
    margin-top: 20px;
  }

  .nvg-reg__form-card {
    padding: 28px 22px;
    border-radius: 9px;
  }

  .nvg-reg__form-title {
    font-size: 25px;
  }

  .nvg-reg__form-subtitle {
    font-size: 10.5px;
  }

  .nvg-reg__fields {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .nvg-reg__field--full {
    grid-column: auto;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .nvg-reg {
    padding: 45px 0;
  }

  .nvg-reg__container {
    width: calc(100% - 22px);
  }

  .nvg-reg__title {
    font-size: 27px;
  }

  .nvg-reg__intro {
    font-size: 11px;
  }

  .nvg-reg__info {
    padding: 25px 19px;
  }

  .nvg-reg__info-label {
    font-size: 10px;
  }

  .nvg-reg__info-title {
    font-size: 22px;
  }

  .nvg-reg__info-text {
    font-size: 10.8px;
  }

  .nvg-reg__detail {
    padding: 10px;
  }

  .nvg-reg__detail-content strong {
    font-size: 10px;
  }

  .nvg-reg__detail-content span {
    font-size: 9.5px;
  }

  .nvg-reg__notice {
    padding: 12px;
  }

  .nvg-reg__notice strong {
    font-size: 10.5px;
  }

  .nvg-reg__notice span {
    font-size: 9.5px;
  }

  .nvg-reg__form-card {
    padding: 24px 16px;
  }

  .nvg-reg__form-title {
    font-size: 23px;
  }

  .nvg-reg__label {
    font-size: 10.5px;
  }

  .nvg-reg__input,
  .nvg-reg__select {
    height: 44px;
    font-size: 11px;
  }

  .nvg-reg__textarea {
    min-height: 95px;
    font-size: 11px;
  }

  .nvg-reg__consent {
    padding: 11px;
  }

  .nvg-reg__consent label {
    font-size: 9.5px;
  }

  .nvg-reg__submit {
    min-height: 47px;
    font-size: 11px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .nvg-reg *,
  .nvg-reg::before,
  .nvg-reg::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

}

.nvg-team,
.nvg-team * {
  box-sizing: border-box
}

.nvg-team {
  --team-primary: #020e27;
  --team-gold: #c89b3c;
  --team-bg: #f8f6f0;
  --team-white: #fff;
  --team-text: #626a76;
  --team-border: rgba(2, 14, 39, .1);
  width: 100%;
  padding: 20px  0;
  position: relative;
  overflow: hidden;
  background: var(--team-bg);
  color: var(--team-primary);
  font-family: "Noto Sans Devanagari", "Nirmala UI", Mangal, sans-serif
}

.nvg-team::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  top: -260px;
  right: -190px;
  border: 1px solid rgba(200, 155, 60, .17);
  border-radius: 50%;
  pointer-events: none
}

.nvg-team::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: -190px;
  bottom: -170px;
  border: 1px solid rgba(200, 155, 60, .14);
  border-radius: 50%;
  pointer-events: none
}

.nvg-team__container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.nvg-team__header {
  max-width: 800px;
  margin: 0 auto 65px;
  text-align: center
}

.nvg-team__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--team-gold);
  font-size: 14.2px;
  font-weight: 800
}

.nvg-team__eyebrow::after,
.nvg-team__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--team-gold)
}

.nvg-team__title {
  margin: 0;
  color: var(--team-primary);
  font-family: "Noto Serif Devanagari", "Nirmala UI", Mangal, serif;
  font-size: clamp(40.1px, 4vw, 59px);
  font-weight: 700;
  line-height: 1.5
}

.nvg-team__title span {
  color: var(--team-gold)
}

.nvg-team__intro {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--team-text);
  font-size: 17.7px;
  line-height: 2
}

.nvg-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px
}

.nvg-team__card {
  position: relative;
  overflow: hidden;
  background: var(--team-white);
  border: 1px solid var(--team-border);
  border-radius: 7px;
  box-shadow: 0 12px 35px rgba(2, 14, 39, .055);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.nvg-team__card:hover {
  transform: translateY(-7px);
  border-color: rgba(200, 155, 60, .45);
  box-shadow: 0 22px 45px rgba(2, 14, 39, .12)
}

.nvg-team__image-wrap {
  position: relative;
  height: 355px;
  overflow: hidden;
  background: var(--team-primary)
}

.nvg-team__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 14, 39, 0) 50%, rgba(2, 14, 39, .58) 100%);
  pointer-events: none
}

.nvg-team__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .65s ease
}

.nvg-team__card:hover .nvg-team__image {
  transform: scale(1.045)
}

.nvg-team__number {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 17px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--team-primary);
  border: 1px solid var(--team-gold);
  border-radius: 50%;
  color: var(--team-gold);
  font-size: 11.8px;
  font-weight: 800
}

.nvg-team__image-wrap::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  bottom: 13px;
  left: 13px;
  border: 1px solid rgba(200, 155, 60, .55);
  border-radius: 4px;
  pointer-events: none
}

.nvg-team__content {
  padding: 25px 23px 27px
}

.nvg-team__role {
  display: block;
  margin-bottom: 7px;
  color: var(--team-gold);
  font-size: 11.8px;
  font-weight: 800;
  letter-spacing: .5px
}

.nvg-team__name {
  margin: 0;
  color: var(--team-primary);
  font-family: "Noto Serif Devanagari", "Nirmala UI", Mangal, serif;
  font-size: 24.8px;
  font-weight: 700;
  line-height: 1.5
}

.nvg-team__description {
  margin: 10px 0 0;
  color: var(--team-text);
  font-size: 13px;
  line-height: 1.8
}

.nvg-team__expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 17px
}

.nvg-team__tag {
  padding: 6px 9px;
  background: rgba(200, 155, 60, .08);
  border: 1px solid rgba(200, 155, 60, .22);
  border-radius: 3px;
  color: var(--team-primary);
  font-size: 9.4px;
  font-weight: 700
}

.nvg-team__message {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 30px 35px;
  position: relative;
  background: var(--team-primary);
  border-left: 3px solid var(--team-gold);
  text-align: center
}

.nvg-team__message::before {
  content: "\201C";
  position: absolute;
  top: 3px;
  left: 22px;
  color: rgba(200, 155, 60, .22);
  font-family: Georgia, serif;
  font-size: 73.2px;
  line-height: 1
}

.nvg-team__message p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-family: "Noto Serif Devanagari", "Nirmala UI", Mangal, serif;
  font-size: 20.1px;
  font-weight: 600;
  line-height: 1.9
}

.nvg-team__message span {
  display: block;
  margin-top: 8px;
  color: var(--team-gold);
  font-size: 11.8px;
  font-weight: 700
}

.nvg-team__cta {
  margin-top: 35px;
  text-align: center
}

.nvg-team__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--team-gold);
  border-radius: 4px;
  background: var(--team-gold);
  color: var(--team-primary);
  text-decoration: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease
}

.nvg-team__button:hover {
  background: var(--team-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(2, 14, 39, .14)
}

@media (max-width:991px) {
  .nvg-team {
    padding: 80px 0
  }
  .nvg-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
  .nvg-team__card:last-child {
    grid-column: 1/-1;
    max-width: 430px;
    width: 100%;
    margin: 0 auto
  }
}

@media (max-width:767px) {
  .nvg-team {
    padding: 60px 0
  }
  .nvg-team__container {
    width: calc(100% - 28px)
  }
  .nvg-team__header {
    margin-bottom: 45px
  }
  .nvg-team__eyebrow {
    font-size: 11.8px
  }
  .nvg-team__eyebrow::after,
  .nvg-team__eyebrow::before {
    width: 18px
  }
  .nvg-team__title {
    font-size: 34.2px
  }
  .nvg-team__intro {
    font-size: 15.3px;
    line-height: 1.9
  }
  .nvg-team__grid {
    grid-template-columns: 1fr;
    gap: 18px
  }
  .nvg-team__card:last-child {
    grid-column: auto;
    max-width: none
  }
  .nvg-team__image-wrap {
    height: 390px
  }
  .nvg-team__content {
    padding: 23px 20px 25px
  }
  .nvg-team__message {
    margin-top: 42px;
    padding: 24px 20px
  }
  .nvg-team__message p {
    font-size: 16.5px
  }
}

@media (max-width:480px) {
  .nvg-team__container {
    width: calc(100% - 22px)
  }
  .nvg-team__title {
    font-size: 29.5px
  }
  .nvg-team__intro {
    font-size: 14.2px
  }
  .nvg-team__image-wrap {
    height: 360px
  }
  .nvg-team__name {
    font-size: 22.4px
  }
  .nvg-team__description {
    font-size: 11.8px
  }
  .nvg-team__message {
    padding: 22px 16px
  }
  .nvg-team__message p {
    font-size: 15.3px
  }
}

@media (prefers-reduced-motion:reduce) {
  .nvg-team *,
  .nvg-team::after,
  .nvg-team::before {
    animation: none !important;
    transition: none !important
  }
}

.nvg-faq,
.nvg-faq * {
  box-sizing: border-box
}

.nvg-faq {
  --faq-primary: #020e27;
  --faq-gold: #c89b3c;
  --faq-bg: #f8f6f0;
  --faq-white: #fff;
  --faq-text: #626a76;
  --faq-border: rgba(2, 14, 39, .1);
  width: 100%;
  padding: 20px  0;
  position: relative;
  overflow: hidden;
  background: var(--faq-bg);
  color: var(--faq-primary);
  font-family: "Noto Sans Devanagari", "Nirmala UI", Mangal, sans-serif
}

.nvg-faq::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -250px;
  left: -190px;
  border: 1px solid rgba(200, 155, 60, .16);
  border-radius: 50%;
  pointer-events: none
}

.nvg-faq::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -170px;
  bottom: -160px;
  border: 1px solid rgba(200, 155, 60, .14);
  border-radius: 50%;
  pointer-events: none
}

.nvg-faq__container {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.nvg-faq__header {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center
}

.nvg-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--faq-gold);
  font-size: 14.2px;
  font-weight: 800
}

.nvg-faq__eyebrow::after,
.nvg-faq__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--faq-gold)
}

.nvg-faq__title {
  margin: 0;
  color: var(--faq-primary);
  font-family: "Noto Serif Devanagari", "Nirmala UI", Mangal, serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5
}

.nvg-faq__title span {
  color: var(--faq-gold)
}

.nvg-faq__intro {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--faq-text);
  font-size: 17.7px;
  line-height: 2
}

.nvg-faq__layout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 55px;
  align-items: start
}

.nvg-faq__aside {
  position: sticky;
  top: 30px;
  padding: 35px 30px;
  background: var(--faq-primary);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(2, 14, 39, .13)
}

.nvg-faq__aside::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -85px;
  top: -80px;
  border: 1px solid rgba(200, 155, 60, .35);
  border-radius: 50%
}

.nvg-faq__aside-label {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  color: var(--faq-gold);
  font-size: 11.8px;
  font-weight: 800
}

.nvg-faq__aside-title {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-family: "Noto Serif Devanagari", "Nirmala UI", Mangal, serif;
  font-size: 29.5px;
  line-height: 1.6
}

.nvg-faq__aside-title span {
  color: var(--faq-gold)
}

.nvg-faq__aside-text {
  position: relative;
  z-index: 2;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .67);
  font-size: 13px;
  line-height: 1.85
}

.nvg-faq__quick {
  position: relative;
  z-index: 2;
  margin-top: 25px
}

.nvg-faq__quick-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.nvg-faq__quick-item:last-child {
  border-bottom: 0
}

.nvg-faq__quick-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 155, 60, .5);
  border-radius: 50%;
  color: var(--faq-gold);
  font-size: 13px
}

.nvg-faq__quick-text strong {
  display: block;
  color: #fff;
  font-size: 11.8px;
  line-height: 1.5
}

.nvg-faq__quick-text span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, .55);
  font-size: 10.6px;
  line-height: 1.5
}

.nvg-faq__ask {
  position: relative;
  z-index: 2;
  margin-top: 25px;
  padding: 15px;
  background: rgba(200, 155, 60, .08);
  border: 1px solid rgba(200, 155, 60, .28);
  border-radius: 4px
}

.nvg-faq__ask strong {
  display: block;
  color: var(--faq-gold);
  font-size: 11.8px
}

.nvg-faq__ask span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .6);
  font-size: 9.4px;
  line-height: 1.6
}

.nvg-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.nvg-faq__item {
  background: var(--faq-white);
  border: 1px solid var(--faq-border);
  border-radius: 5px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease
}

.nvg-faq__item:hover {
  border-color: rgba(200, 155, 60, .38)
}

.nvg-faq__item.is-open {
  border-color: rgba(200, 155, 60, .55);
  box-shadow: 0 12px 28px rgba(2, 14, 39, .06)
}

.nvg-faq__question {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 32px;
  align-items: center;
  gap: 13px;
  padding: 19px 20px;
  border: 0;
  outline: 0;
  background: 0 0;
  color: var(--faq-primary);
  text-align: left;
  font-family: inherit;
  cursor: pointer
}

.nvg-faq__number {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 155, 60, .38);
  border-radius: 50%;
  background: rgba(200, 155, 60, .07);
  color: var(--faq-gold);
  font-size: 9.4px;
  font-weight: 800
}

.nvg-faq__question-text {
  font-size: 14.2px;
  font-weight: 800;
  line-height: 1.7
}

.nvg-faq__plus {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--faq-primary);
  color: var(--faq-gold);
  font-size: 21.2px;
  font-weight: 400;
  transition: transform .3s ease, background-color .3s ease, color .3s ease
}

.nvg-faq__item.is-open .nvg-faq__plus {
  transform: rotate(45deg);
  background: var(--faq-gold);
  color: var(--faq-primary)
}

.nvg-faq__answer {
  height: 0;
  overflow: hidden;
  transition: height .35s ease
}

.nvg-faq__answer-inner {
  padding: 0 20px 21px 82px
}

.nvg-faq__answer p {
  margin: 0;
  color: var(--faq-text);
  font-size: 13px;
  line-height: 1.9
}

.nvg-faq__bottom {
  max-width: 850px;
  margin: 60px auto 0;
  padding: 30px 35px;
  background: #fff;
  border: 1px solid var(--faq-border);
  border-top: 2px solid var(--faq-gold);
  border-radius: 5px;
  text-align: center
}

.nvg-faq__bottom-title {
  margin: 0;
  color: var(--faq-primary);
  font-family: "Noto Serif Devanagari", "Nirmala UI", Mangal, serif;
  font-size: 24.8px;
  line-height: 1.6
}

.nvg-faq__bottom-text {
  max-width: 620px;
  margin: 8px auto 0;
  color: var(--faq-text);
  font-size: 11.8px;
  line-height: 1.8
}

.nvg-faq__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 22px;
  border: 1px solid var(--faq-gold);
  border-radius: 4px;
  background: var(--faq-gold);
  color: var(--faq-primary);
  text-decoration: none;
  font-family: inherit;
  font-size: 11.8px;
  font-weight: 800;
  transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease
}

.nvg-faq__button:hover {
  background: var(--faq-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(2, 14, 39, .13)
}

@media (max-width:991px) {
  .nvg-faq {
    padding: 80px 0
  }
  .nvg-faq__layout {
    grid-template-columns: 1fr;
    gap: 35px
  }
  .nvg-faq__aside {
    position: relative;
    top: auto
  }
}

@media (max-width:767px) {
  .nvg-faq {
    padding: 60px 0
  }
  .nvg-faq__container {
    width: calc(100% - 28px)
  }
  .nvg-faq__header {
    margin-bottom: 42px
  }
  .nvg-faq__eyebrow {
    font-size: 11.8px
  }
  .nvg-faq__eyebrow::after,
  .nvg-faq__eyebrow::before {
    width: 18px
  }
  .nvg-faq__title {
    font-size: 34.2px
  }
  .nvg-faq__intro {
    font-size: 15.3px
  }
  .nvg-faq__aside {
    padding: 28px 22px
  }
  .nvg-faq__aside-title {
    font-size: 27.1px
  }
  .nvg-faq__question {
    grid-template-columns: 32px 1fr 28px;
    gap: 10px;
    padding: 16px 14px
  }
  .nvg-faq__number {
    width: 28px;
    height: 28px
  }
  .nvg-faq__question-text {
    font-size: 13px
  }
  .nvg-faq__plus {
    width: 27px;
    height: 27px;
    font-size: 18.9px
  }
  .nvg-faq__answer-inner {
    padding: 0 14px 18px 56px
  }
  .nvg-faq__answer p {
    font-size: 11.8px;
    line-height: 1.85
  }
  .nvg-faq__bottom {
    margin-top: 42px;
    padding: 25px 18px
  }
  .nvg-faq__bottom-title {
    font-size: 22.4px
  }
}

@media (max-width:480px) {
  .nvg-faq__container {
    width: calc(100% - 22px)
  }
  .nvg-faq__title {
    font-size: 29.5px
  }
  .nvg-faq__intro {
    font-size: 14.2px
  }
  .nvg-faq__aside {
    padding: 24px 18px
  }
  .nvg-faq__question {
    grid-template-columns: 28px 1fr 26px;
    gap: 8px;
    padding: 14px 11px
  }
  .nvg-faq__number {
    width: 26px;
    height: 26px;
    font-size: 8.3px
  }
  .nvg-faq__question-text {
    font-size: 11.8px;
    line-height: 1.65
  }
  .nvg-faq__plus {
    width: 25px;
    height: 25px
  }
  .nvg-faq__answer-inner {
    padding: 0 11px 16px 47px
  }
  .nvg-faq__answer p {
    font-size: 10.6px
  }
}

@media (prefers-reduced-motion:reduce) {
  .nvg-faq *,
  .nvg-faq::after,
  .nvg-faq::before {
    animation: none !important;
    transition: none !important
  }
}

/* =========================================================
   NADI VAIDYA GURUKUL — FLOATING QUICK ACTIONS
   Primary   : #020e27
   Secondary : #c89b3c
   Unique Prefix: nvg-quick
   ========================================================= */

.nvg-quick-actions,
.nvg-quick-actions * {
  box-sizing: border-box;
}

.nvg-quick-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  display: grid;
  align-items: center;
  gap: 8px;
  padding: 7px;
  background: rgba(2, 14, 39, 0.96);
  border: 1px solid rgba(200, 155, 60, 0.45);
  border-radius: 7px;
  box-shadow: 0 15px 40px rgba(2, 14, 39, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: nvgQuickAppear .7s ease both;
}

.nvg-quick-actions::before {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid rgba(200, 155, 60, 0.08);
  border-radius: 9px;
  pointer-events: none;
}

.nvg-quick-button {
  appearance: none;
  min-width: 108px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family:
    "Noto Sans Devanagari",
    "Nirmala UI",
    "Mangal",
    sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform .25s ease,
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.nvg-quick-register {
  background: #c89b3c;
  color: #020e27;
  border-color: #c89b3c;
}

.nvg-quick-register::before {
  content: "\2726";
  font-size: 11.8px;
}

.nvg-quick-register:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(200, 155, 60, 0.22);
}

.nvg-quick-whatsapp {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.nvg-quick-whatsapp::before {
  content: "\25C9";
  color: #c89b3c;
  font-size: 13px;
}

.nvg-quick-whatsapp:hover {
  background: rgba(200, 155, 60, 0.12);
  border-color: #c89b3c;
  color: #c89b3c;
  transform: translateY(-2px);
}

.nvg-quick-button:active {
  transform: translateY(0) scale(.97);
}

.nvg-quick-button:focus-visible {
  outline: 2px solid #c89b3c;
  outline-offset: 3px;
}

.nvg-quick-button {
  position: relative;
}

.nvg-quick-button::after {
  position: absolute;
  right: 0;
  bottom: calc(100% + 9px);
  padding: 6px 9px;
  background: #020e27;
  border: 1px solid rgba(200, 155, 60, 0.3);
  border-radius: 4px;
  color: #ffffff;
  font-size: 9.4px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition:
    opacity .2s ease,
    transform .2s ease,
    visibility .2s ease;
  pointer-events: none;
}

.nvg-quick-register::after {
  content: "\0915\093E\0930\094D\092F\0936\093E\0932\093E \0915\0947 \0932\093F\090F \0906\0935\0947\0926\0928 \0915\0930\0947\0902";
}

.nvg-quick-whatsapp::after {
  content: "WhatsApp \092A\0930 \092C\093E\0924 \0915\0930\0947\0902";
}

.nvg-quick-button:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes nvgQuickAppear {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .nvg-quick-actions {
    right: 14px;
    bottom: 14px;
    padding: 6px;
    gap: 6px;
    display: flex;
  }
  .nvg-quick-button {
    min-width: 94px;
    height: 38px;
    padding: 0 12px;
    font-size: 11.8px;
  }
}

@media (max-width: 480px) {
  .nvg-quick-actions {
    left: 12px;
    right: 12px;
    bottom: 10px;
    justify-content: center;
    border-radius: 6px;
  }
  .nvg-quick-button {
    flex: 1;
    min-width: 0;
    height: 42px;
    font-size: 11.8px;
  }
  .nvg-quick-button::after {
    display: none;
  }
}

@media (max-width: 360px) {
  .nvg-quick-actions {
    left: 8px;
    right: 8px;
  }
  .nvg-quick-button {
    height: 40px;
    padding: 0 8px;
    font-size: 10.6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nvg-quick-actions,
  .nvg-quick-button,
  .nvg-quick-button::after {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================================
   NADI VAIDYA GURUKUL
   LEARNING METHOD - NO IMAGE
   ========================================================= */

.nvg-method,
.nvg-method * {
  box-sizing: border-box;
}

.nvg-method {
  --method-navy: #06132f;
  --method-navy-light: #101f42;
  --method-gold: #d2a13a;
  --method-white: #ffffff;
  --method-muted: rgba(255, 255, 255, 0.76);

  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 12px;
  background: var(--method-navy);
  color: var(--method-white);
  font-family: "Noto Sans Devanagari", "Nirmala UI", Mangal, sans-serif;
}

/* =========================================================
   LEFT CONTENT
   ========================================================= */

.nvg-method__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px 50px;
  background: var(--method-navy);
}

.nvg-method__label {
  margin: 0 0 12px;
  color: var(--method-gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.nvg-method__title {
  max-width: 560px;
  margin: 0;
  color: var(--method-white);
  font-family: "Noto Serif Devanagari", "Nirmala UI", Mangal, serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.45;
}

.nvg-method__title span {
  color: var(--method-gold);
}

.nvg-method__text {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--method-muted);
  font-size: 14px;
  line-height: 2;
}

/* =========================================================
   RIGHT STEPS AREA
   NO IMAGE / NO BACKGROUND IMAGE
   ========================================================= */

.nvg-method__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 390px;
  padding: 40px 30px;

  overflow: hidden;
}

/* Decorative circles only - no image */

.nvg-method__visual::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  top: -190px;
  right: -100px;
  border: 1px solid rgba(210, 161, 58, 0.2);
  border-radius: 50%;
}

.nvg-method__visual::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  bottom: -330px;
  left: -100px;
  border: 1px solid rgba(210, 161, 58, 0.16);
  border-radius: 50%;
}

/* =========================================================
   STEPS
   ========================================================= */

.nvg-method__steps {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.nvg-method__steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 1px;
  background: rgba(210, 161, 58, 0.6);
  z-index: -1;
}

.nvg-method__step {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 8px 18px;
  border: 1px solid rgba(6, 19, 47, 0.1);
  border-radius: 7px;
  background: var(--method-navy);
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, background 0.25s ease;
}

.nvg-method__step:hover {
  transform: translateY(-6px);
  background: var(--method-navy-light);
}

.nvg-method__step-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 2px solid var(--method-gold);
  border-radius: 50%;
  background: var(--method-gold);
  color: var(--method-navy);
  font-size: 12px;
  font-weight: 800;
}

.nvg-method__step strong {
  display: block;
  color: #fff;
  font-family: "Noto Serif Devanagari", "Nirmala UI", Mangal, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.nvg-method__step span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.55;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .nvg-method {
    grid-template-columns: 1fr;
  }

  .nvg-method__content {
    padding: 45px 40px 35px;
  }

  .nvg-method__visual {
    min-height: 330px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

  .nvg-method__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .nvg-method__steps::before {
    display: none;
  }

  .nvg-method__step {
    min-height: 125px;
  }

  .nvg-method__step:nth-child(4) {
    grid-column: 1;
  }

  .nvg-method__step:nth-child(5) {
    grid-column: 2;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .nvg-method {
    border-radius: 8px;
  }

  .nvg-method__content {
    padding: 35px 22px 28px;
  }

  .nvg-method__label {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .nvg-method__title {
    font-size: 28px;
    line-height: 1.5;
  }

  .nvg-method__text {
    margin-top: 13px;
    font-size: 12px;
    line-height: 1.85;
  }

  .nvg-method__visual {
    min-height: auto;
    padding: 25px 15px 30px;
  }

  .nvg-method__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .nvg-method__step {
    min-height: 120px;
    padding: 12px 7px 15px;
  }

  .nvg-method__step:nth-child(4),
  .nvg-method__step:nth-child(5) {
    grid-column: auto;
  }

  .nvg-method__step:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    margin: 0 auto;
  }

  .nvg-method__step-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    margin-bottom: 9px;
    font-size: 10px;
  }

  .nvg-method__step strong {
    font-size: 12px;
  }

  .nvg-method__step span {
    font-size: 9px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

  .nvg-method__content {
    padding: 30px 17px 24px;
  }

  .nvg-method__title {
    font-size: 24px;
  }

  .nvg-method__text {
    font-size: 11px;
  }

  .nvg-method__visual {
    padding: 20px 10px 25px;
  }

  .nvg-method__steps {
    gap: 8px;
  }

  .nvg-method__step {
    min-height: 112px;
  }

  .nvg-method__step-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .nvg-method__step strong {
    font-size: 11px;
  }

  .nvg-method__step span {
    font-size: 8.5px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .nvg-method *,
  .nvg-method::before,
  .nvg-method::after {
    transition: none !important;
    animation: none !important;
  }
}