/* Ayush Arunodaya — landing page (responsive) */
:root {
  --navy: #1a202c;
  --navy-deep: #111620;
  --orange: #ff8c00;
  --orange-dark: #e67e00;
  --green: #1b5e20;
  --green-dark: #144a18;
  --cream: #f9f9f9;
  --white: #ffffff;
  --text: #2b3340;
  --text-muted: #5c6573;
  --border: #e2e4e8;
  --shadow: 0 12px 40px rgba(26, 43, 72, 0.08);
  --shadow-sm: 0 4px 14px rgba(26, 43, 72, 0.06);
  --radius: 8px;
  --radius-lg: 12px;
  --container: 1140px;
  --font-sans: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  font: inherit;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2rem, 640px);
}

.container--narrow-lg {
  width: min(100% - 2rem, 720px);
}

.container--form {
  width: min(100% - 2rem, 900px);
}

.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon--sm {
  font-size: 14px;
  line-height: 1;
  width: 1.15em;
  text-align: center;
}

/* Top bar */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  position: relative;
  z-index: 10050;
  overflow: visible;
}

.top-bar .container {
  overflow: visible;
}

.top-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.55rem 0;
  overflow: visible;
}

.top-bar__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

@media (max-width: 640px) {
  .top-bar__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}


.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar__item a {
  color: inherit;
}

.top-bar__item a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .top-bar__item--hide-sm {
    display: none;
  }
}

/* Language dropdown (English / Hindi) */
.top-bar__item--translate {
  gap: 0;
  position: relative;
  z-index: 10000;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
  font-family: var(--font-sans);
  flex-shrink: 0;
}

.lang-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  font-family: inherit;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.lang-dropdown__trigger:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lang-dropdown__menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 8px;
  margin: 8px 0 0;
  list-style: none;
  display: none;
  z-index: 10060;
}

.lang-dropdown.is-open .lang-dropdown__menu {
  display: block;
}

.lang-dropdown__option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: left;
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.lang-dropdown__option:hover {
  background: #f3f7fb;
}

.lang-dropdown__option.is-active {
  background: #eaf3ff;
}

.lang-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.lang-dropdown__option[data-lang="en"] .lang-badge {
  background: #0b5cab;
}

.lang-dropdown__option[data-lang="hi"] .lang-badge {
  background: #ff6b00;
}

/* Tablet + mobile top bar */
@media (max-width: 1024px) {
  .top-bar__inner {
    align-items: center;
    justify-content: center;
  }

  .top-bar__group {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.75rem;
  }

  .top-bar__item {
    width: 100%;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .top-bar__item--translate {
    width: 100%;
    max-width: 100%;
  }

  .lang-dropdown {
    width: 100%;
    max-width: 100%;
  }

  .lang-dropdown__trigger {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.875rem;
  }

  .lang-dropdown__menu {
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-top: 6px;
  }

  .lang-dropdown__option {
    padding: 12px 14px;
    font-size: 0.9375rem;
  }

  .lang-badge {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 640px) {
  .top-bar__item:not(.top-bar__item--translate) a {
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .lang-dropdown__trigger {
    padding: 10px 12px;
    font-size: 0.8125rem;
    gap: 8px;
  }

  .lang-dropdown__option {
    padding: 10px 12px;
    font-size: 0.875rem;
  }

  .lang-badge {
    width: 30px;
    height: 30px;
    font-size: 0.6875rem;
  }
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-te-gadget {
  display: none !important;
}

iframe.skiptranslate {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}

.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
  display: none !important;
}

#goog-gt-tt {
  display: none !important;
}

.goog-te-balloon-frame {
  display: none !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

/* Keep Font Awesome icons intact after Google Translate */
i.fa.notranslate,
.icon.notranslate {
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  speak: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.05rem;
}

.brand:hover {
  text-decoration: none;
}

/* .brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%); */
 /* background: url(./images/Logo.png);
  background-repeat: no-repeat;
  border: 2px solid var(--orange);
  box-shadow: 0 2px 8px rgba(26, 43, 72, 0.15);
} */

.brand__text--slug {
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  font-size: 1.08rem;
}

.brand__slug-pre {
  color: var(--navy);
}

.brand__accent {
  color: var(--orange);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: var(--radius);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--navy);
  margin-inline: auto;
  transition: transform 0.2s, opacity 0.2s;
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 1rem 1rem 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.site-nav.is-open {
  display: flex;
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 900px) {
  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.site-nav__list a {
  display: block;
  padding: 0.6rem 0.5rem;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius);
}

.site-nav__list a:hover {
  background: var(--cream);
  text-decoration: none;
}

.site-nav__cta {
  margin-top: 0.5rem;
  text-align: center;
  text-decoration: none;
}

.site-nav__cta:hover {
  text-decoration: none;
}

@media (min-width: 900px) {
  .site-nav__cta {
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
}

.btn--orange:hover {
  background: var(--orange-dark);
}

.btn--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30, 122, 69, 0.3);
}

.btn--green:hover {
  background: var(--green-dark);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-deep);
}

/* Promo / banner — linear gradient edge-to-edge, full-width grid (content-sized, no fixed height) */
.promo-banner {
  --promo-grad-a: #141a24;
  --promo-grad-b: #1a202c;
  --promo-grad-c: #153d28;
  --promo-grad-d: #1b5e20;
  width: 100%;
  padding-block: clamp(2rem, 6vw, 4rem);
  padding-inline: 0;
  color: #fff;
  border-bottom: none;
  background-color: var(--promo-grad-b);
  background-image: linear-gradient(
    135deg,
    var(--promo-grad-a) 0%,
    var(--promo-grad-b) 30%,
    var(--promo-grad-c) 62%,
    var(--promo-grad-d) 100%
  );
  background-repeat: no-repeat;
  background-size: cover;
}
/* 
.promo-banner__inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(1rem, 5vw, 4rem);
} */

.promo-banner__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  width: 100%;
  max-width: none;
}

@media (min-width: 900px) {
  .promo-banner__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
  }
}

.promo-banner__content {
  text-align: center;
}

@media (min-width: 900px) {
  .promo-banner__content {
    text-align: left;
  }
}

.promo-banner__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.8vw, 2.45rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.promo-banner__subtitle {
  margin: 0 0 0.85rem;
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  font-weight: 600;
  color: #ffb366;
  line-height: 1.35;
}

.promo-banner__text {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
}

@media (min-width: 900px) {
  .promo-banner__text {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 899px) {
  .promo-banner__text {
    margin-inline: auto;
  }
}

.promo-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 900px) {
  .promo-banner__actions {
    justify-content: flex-start;
  }
}

.promo-banner__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  order: -1;
}

@media (min-width: 900px) {
  .promo-banner__media {
    order: 0;
  }
}

.promo-banner__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 480px) {
  .promo-banner__actions .btn--lg {
    width: 100%;
    max-width: 22rem;
  }
}

/* Mission — highlighted card band below hero */
.mission {
  padding: clamp(2.5rem, 1vw, 4rem) 0;
  /* background:
    radial-gradient(ellipse 85% 60% at 50% 0%, rgba(255, 140, 0, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(27, 94, 32, 0.1), transparent 45%),
    linear-gradient(180deg, #f3f6f4 0%, var(--cream) 100%); */
  /* border-bottom: 1px solid var(--border); */
}

.mission__surface {
  position: relative;
  max-width: 52rem;
  margin-inline: auto;
  padding: clamp(1.85rem, 4.5vw, 2.85rem) clamp(1.35rem, 4vw, 2.5rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 32, 44, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(26, 43, 72, 0.06),
    0 18px 42px -12px rgba(26, 43, 72, 0.12);
}

.mission__surface::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(7.5rem, 42%);
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--orange) 0%, #ffb347 45%, var(--green) 100%);
}

.mission__eyebrow {
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.mission__eyebrow .fa {
  font-size: 1rem;
  color: var(--orange);
  opacity: 0.95;
}

.mission__heading {
  margin: 0 0 1.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.4vw, 2.05rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  text-wrap: balance;
}

.mission__prose {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--text-muted);
}

.mission__prose p {
  margin: 0 0 1.05rem;
}

.mission__prose p:last-child {
  margin-bottom: 0;
  color: #000;
}

.mission__prose p:first-child {
  font-weight: 600;
  color: var(--navy);
  font-weight: normal;
  font-size: clamp(1.03rem, 2.1vw, 1.14rem);
}

@media (min-width: 640px) {
  .mission__prose {
    font-size: 1.0625rem;
  }
}

/* Feature bar */
.feature-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.feature-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .feature-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .feature-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
}

.feature-bar__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.feature-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  box-shadow: var(--shadow-sm);
}

.feature-bar__icon .fa {
  font-size: 20px;
  line-height: 1;
}

/* Sections */
.section {
  padding: clamp(1rem, 2vw, 2.5rem) 0;
}

.section--cream {
  background: var(--cream);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--orange {
  background: var(--orange);
  color: var(--white);
}

.section-title {
  margin: 0 0 2rem;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}

.section-title--left {
  text-align: left;
}

.section-title--light {
  color: var(--white);
}

/* About */
.about-section__title {
  margin-bottom: 1rem;
  text-align: left;
}

.about {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about__media {
  position: relative;
  /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about__video-placeholder {
  aspect-ratio: 18 / 10;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy) 0%, #2a4570 50%, var(--green-dark) 100%);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.about__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  transition: transform 0.2s, background 0.2s;
}

.about__play:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.about__play .fa {
  font-size: 28px;
  line-height: 1;
  margin-left: 4px;
}

.about__badge {
  /* position: absolute;
  bottom: 1rem;
  right: 1rem; */
  text-align: center;
margin-top: 20px;
  background: #2ca235;
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}


.about__text {
  margin: 0 0 1rem;
  color: #000;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Service cards */
.service-cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .service-cards {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.service-card__head {
  padding: 1.5rem 1.5rem 1.25rem;
  color: var(--white);
}

.service-card--orange .service-card__head {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}

.service-card--green .service-card__head {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}

.service-card__icon {
  display: inline-flex;
  margin-bottom: 0.75rem;
}

.service-card__icon .fa {
  font-size: 36px;
  line-height: 1;
}

.service-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.service-card__intro {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

.service-card__bullets {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.55;
  opacity: 1;
  font-weight: 700;
}

.service-card__bullets li {
  margin-bottom: 0.35rem;
}

.service-card__body {
  padding: 1.5rem;
  flex: 1;
}

.service-card__sub {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.service-card__sub:first-child {
  margin-top: 0;
}

.check-list,
.step-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.check-list li::marker {
  color: var(--green);
}

.step-list li {
  margin-bottom: 0.35rem;
}

.service-card__foot {
  padding: 0 1.5rem 1.5rem;
}

/* Registration forms */
.form-intro {
  text-align: center;
  margin: -0.5rem auto 1rem;
  max-width: 40rem;
  font-size: 0.975rem;
  color: var(--text-muted);
}

.form-mail-note {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: rgba(26, 43, 72, 0.06);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.form-mail-note code {
  font-size: 0.8em;
  word-break: break-all;
}

.form-note {
  text-align: center;
  margin: -1rem 0 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.reg-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.reg-form__grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.reg-form__grid--dense {
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .reg-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .reg-form__grid--dense .field--full {
    grid-column: 1 / -1;
  }
}

.field--full {
  grid-column: 1 / -1;
}

.field__input--file {
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.form-captcha {
  margin: 1rem 0 1.25rem;
  padding: 1rem;
  background: var(--cream);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.form-captcha__hint {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.form-captcha__check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.form-captcha__check input {
  margin-top: 0.2rem;
}

.form-more {
  margin: 1rem 0 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fafafa;
}

.form-more > summary {
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.form-more > summary::-webkit-details-marker {
  display: none;
}

.form-more > summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--orange);
}

.form-more[open] > summary::after {
  content: "−";
}

.form-more .reg-form__grid {
  padding: 0 1rem 1rem;
  margin-bottom: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.field__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
  color: var(--text);
}

.field__input:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: transparent;
}

.field__input--textarea {
  resize: vertical;
  min-height: 100px;
}

/* How it works — glass cards + responsive grid */
.how-it-works {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.how-it-works::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 10% -10%, rgba(255, 140, 0, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 100%, rgba(27, 94, 32, 0.22), transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 255, 255, 0.04), transparent 70%);
  pointer-events: none;
}

.how-it-works__inner {
  position: relative;
  z-index: 1;
}

.how-it-works__head {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 2.25rem;
}

.how-it-works__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 180, 100, 0.95);
}

.how-it-works__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.how-it-works__lede {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 1.15rem 1.35rem;
  align-items: start;
  padding: 1.35rem 1.2rem 1.45rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 16px 40px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.step:hover {
  border-color: rgba(255, 140, 0, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 20px 48px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding-top: 0.15rem;
}

.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffb366;
  font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.step__index {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  visibility: hidden;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.42);
}

.step__body {
  min-width: 0;
  text-align: left;
}

.step__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(144, 214, 170, 0.95);
}

.step__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: clamp(1.12rem, 2.4vw, 1.28rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  text-wrap: balance;
}

.step__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.86);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .how-it-works__head {
    margin-bottom: 3rem;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: stretch;
  }

  .step {
    display: flex;
    flex-direction: column;
    padding: 1.45rem 1.2rem 1.6rem;
    min-height: 100%;
  }

  .step__marker {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 0;
    margin-bottom: 0.85rem;
  }

  .step__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 10px;
    font-size: 1rem;
  }

  .step__index {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.38);
  }

  .step__body {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .step__text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

/* Why grid */
.why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--border);
}

.why-card--orange {
  border-top-color: var(--orange);
}

.why-card--green {
  border-top-color: var(--green);
}

.why-card--navy {
  border-top-color: var(--navy);
}

.why-card__icon {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.why-card__icon .fa {
  font-size: 22px;
  line-height: 1;
}

.why-card__title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}

.why-card__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Video cards */
.video-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .video-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.video-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.video-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
}

.video-card__thumb {
  aspect-ratio: 12 / 3;
  background: url(./images/Thumbnail1.png);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* height: 160px; */
}
.video-card__thumb2 {
  aspect-ratio: 12 / 3;
  background: url(./images/Thumbnail2.png);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-card__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.video-card__play .fa {
  font-size: 26px;
  line-height: 1;
  margin-left: 4px;
}

.video-card__meta {
  padding: 1.25rem 1.35rem 1.35rem;
}

.video-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.video-card__link {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  width: 100%;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq__item:hover {
  border-color: #cfd3d8;
}

.faq__item.is-open {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.faq__q {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  color: var(--navy);
  padding-right: 0.5rem;
}

.faq__toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  flex-shrink: 0;
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--navy);
  transform: translate(-50%, -50%);
}

.faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s, opacity 0.2s;
}

.faq__item.is-open .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq__a {
  flex-basis: 100%;
  width: 100%;
  margin: 0;
  padding-top: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
}

.faq__item.is-open .faq__a {
  max-height: 320px;
  opacity: 1;
  padding-top: 0.75rem;
}

/* Contact — details only (no form) */
.contact__wrap {
  max-width: 26rem;
  margin-inline: auto;
  text-align: center;
}

@media (min-width: 768px) {
  .contact__wrap {
    max-width: 65rem;
  }
}

.contact__head {
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .contact__head {
    margin-bottom: 2rem;
  }
}

.contact__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.05rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.contact__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
@media (min-width: 768px) {
  .contact-list {
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
  }
}

@media (max-width: 830px) {
  .contact-list {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}

.contact-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(26, 32, 44, 0.08);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .contact-list__item {
    flex: 1;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1rem 1.4rem;
    gap: 0.85rem;
  }
}

.contact-list__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: rgba(255, 140, 0, 0.14);
  color: var(--orange-dark);
}

@media (min-width: 768px) {
  .contact-list__icon {
    width: 3rem;
    height: 3rem;
  }
}

.contact-list__icon .fa {
  font-size: 1.1rem;
  line-height: 1;
}

.contact-list__body {
  min-width: 0;
  flex: 1;
}

@media (min-width: 768px) {
  .contact-list__body {
    flex: none;
    width: 100%;
    text-align: center;
  }
}

.contact-list__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-list__value {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
  word-break: break-word;
}

@media (min-width: 768px) {
  .contact-list__value {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

.contact-list__value a {
  color: var(--orange-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 126, 0, 0.45);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.contact-list__value a:hover {
  border-bottom-color: var(--orange-dark);
  color: var(--orange);
}

.contact-list__sep {
  font-weight: 500;
  opacity: 0.85;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
  padding: 2rem 0 .5rem;
}

.site-footer__disclaimer {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  /* max-width: 56rem; */
}

.site-footer__disclaimer--second {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.site-footer__bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 640px) {
  .site-footer__bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.site-footer__copy {
  margin: 0;
  font-size: 0.875rem;
  text-align: center;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social a {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background 0.2s;
}

.site-footer__social a:hover {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.site-footer__social .fa {
  font-size: 18px;
  line-height: 1;
}




@media print {
  .top-bar,
  .site-header,
  .nav-toggle,
  .promo-banner__actions,
  .about__actions,
  .service-card__foot,
  .reg-form button,
  .site-footer__social {
    display: none !important;
  }

  body {
    background: #fff;
  }
}
.form-section {
  display: none;
}

.form-section.active-form {
  display: block;
}

.whatsapp-popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:9999;
  justify-content:center;
  align-items:center;
  padding:20px;
}

/* .whatsapp-popup__content{
  background:#fff;
  width:100%;
  max-width:420px;
  border-radius:24px;
  padding:20px 20px 30px;  
  text-align:center;
  position:relative;
  animation:popupFade 0.3s ease;
  box-shadow:0 10px 40px rgba(0,0,0,0.25);
} */

.whatsapp-popup__content{
  background:#fff;
  width:100%;
  max-width:420px;
  border-radius:24px;
  padding:20px 20px 30px;
  text-align:center;
  position:relative;
  margin:auto;
}


/* Close Button */
.whatsapp-popup__close{
  position:absolute;
  top:12px;
  right:16px;
  font-size:38px;
  color:#222;
  cursor:pointer;
  line-height:1;
  z-index:10;
}

/* QR Image */
.whatsapp-popup__qr{
  width:260px;
  max-width:100%;
  margin:25px auto 25px;
  display:block;
  border-radius:10px;
}

/* WhatsApp Button */
.whatsapp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#ff8c00;
  color:#fff;
  padding:10px 25px;
  border-radius:14px;
  text-decoration:none;
  font-size:22px;
  font-weight:600;
  transition:0.3s;
}

.whatsapp-btn:hover{
  transform:translateY(-2px);
}
.whatsapp-numbers{
  margin:15px 0 20px;
  font-size:22px;
  font-weight:600;
  color:#000;
}

.whatsapp-numbers a{
      color: #ff8c00;
      font-size: 18px;
  /* text-decoration:none; */
}

@keyframes popupFade{
  from{
    opacity:0;
    transform:scale(0.85);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}
@media (max-width: 1024px){

  .whatsapp-popup{
    padding:20px;
    align-items:center;
  }

  .whatsapp-popup__content{
    max-width:380px;
  }

}

/* Mobile View */
@media (max-width: 768px){

  .whatsapp-popup{
    padding:15px;
    align-items:center;
  }

  .whatsapp-popup__content{
    max-width:320px;
    border-radius:18px;
    padding:16px 16px 24px;
  }

  .whatsapp-popup__qr{
    width:210px;
    margin:20px auto;
  }

  .whatsapp-btn{
    font-size:18px;
    padding:14px 20px;
    width:100%;
  }

  .whatsapp-numbers{
    font-size:18px;
  }

  .whatsapp-popup__close{
    font-size:32px;
    top:10px;
    right:14px;
  }

}
