:root {
    --brand-ink: #154360;
    --brand-ink-rgb: 21, 67, 96;
    --brand-ink-soft: #2f607b;
    --brand-sky: #4c7691;
    --brand-sky-rgb: 76, 118, 145;
    --brand-sun: #f5a623;
    --brand-sun-rgb: 245, 166, 35;
    --brand-sun-deep: #cf8914;
    --brand-sun-soft: #ffd38b;
    --brand-sun-wash: #fff1dc;
    --brand-shell: #fff8ef;
    --surface: #ffffff;
    --surface-alt: #f3f8fc;
    --surface-deep: #102f46;
    --text-strong: #12364e;
    --text-muted: #5b7386;
    --border-soft: rgba(var(--brand-ink-rgb), 0.1);
    --shadow-soft: 0 30px 70px rgba(var(--brand-ink-rgb), 0.14);
    --shadow-card: 0 18px 40px rgba(var(--brand-ink-rgb), 0.1);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-strong);
    font-family: "Outfit", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(var(--brand-sun-rgb), 0.14), transparent 28%),
        linear-gradient(180deg, #fffdf8 0%, var(--surface-alt) 55%, #ffffff 100%);
}

.site-language-hi,
.site-language-hi .btn,
.site-language-hi input,
.site-language-hi textarea,
.site-language-hi select {
    font-family: "Noto Sans Devanagari", "Outfit", sans-serif;
}

.site-language-hi .hero-copy h1,
.site-language-hi .hero-lead,
.site-language-hi .hero-panel h2,
.site-language-hi .section-heading h2,
.site-language-hi .story-card h2,
.site-language-hi .mission-card h3,
.site-language-hi .cta-card h2,
.site-language-hi .journey-step h3,
.site-language-hi .program-card h3,
.site-language-hi .reason-card h3,
.site-language-hi .testimonial-meta h3,
.site-language-hi .form-shell-header h3 {
    letter-spacing: -0.02em;
    line-height: 1.12;
}

.site-language-hi .contact-label {
    letter-spacing: 0;
    text-transform: none;
}

main {
    overflow: clip;
}

section[id] {
    scroll-margin-top: 100px;
}

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

p {
    color: var(--text-muted);
    line-height: 1.75;
}

.site-navbar {
    padding: 18px 0;
    background: rgba(255, 253, 249, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(var(--brand-ink-rgb), 0.06);
    transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-navbar.is-scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 34px rgba(var(--brand-ink-rgb), 0.06);
}

.navbar-brand {
    margin-right: 0;
}

.navbar-mobile-tools {
    display: none;
}

.brandmark {
    display: inline-flex;
    align-items: center;
    color: var(--brand-ink);
    flex-shrink: 0;
}

.brandmark-logo {
    display: block;
    width: auto;
    height: 68px;
    max-width: min(42vw, 248px);
    object-fit: contain;
}

.navbar-collapse {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
}

.nav-menu {
    gap: 0.25rem;
}

.nav-link {
    font-weight: 600;
    color: var(--brand-ink) !important;
    margin: 0;
    padding: 0.85rem 1rem !important;
    border-radius: 999px;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    background: rgba(var(--brand-sun-rgb), 0.1);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-sky), var(--brand-sun));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

.btn {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.95rem 1.6rem;
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand-sun) 0%, #ffc15d 100%);
    color: #fff;
    border: 0;
    box-shadow: 0 14px 30px rgba(var(--brand-sun-rgb), 0.24);
}

.btn-brand:hover,
.btn-brand:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-sun-deep) 0%, var(--brand-sun) 100%);
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(var(--brand-sun-rgb), 0.32);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1fa855 100%);
    color: #fff;
    border: 0;
    box-shadow: 0 14px 30px rgba(31, 168, 85, 0.24);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #1fa855 0%, #168a45 100%);
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(31, 168, 85, 0.3);
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(var(--brand-ink-rgb), 0.1);
    box-shadow: 0 10px 22px rgba(var(--brand-ink-rgb), 0.08);
}

.lang-switch-link {
    min-width: 82px;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--brand-ink);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-switch-link:hover,
.lang-switch-link:focus-visible {
    color: var(--brand-ink);
    background: rgba(var(--brand-sun-rgb), 0.12);
}

.lang-switch-link.is-active {
    background: linear-gradient(135deg, var(--brand-ink), var(--brand-sky));
    color: #fff;
    box-shadow: 0 12px 24px rgba(var(--brand-ink-rgb), 0.18);
}

.nav-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.4rem;
}

.nav-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    flex-shrink: 0;
}

.nav-whatsapp-btn i {
    font-size: 1.25rem;
    line-height: 1;
}

.nav-whatsapp-label {
    display: none;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--brand-ink);
    border: 1px solid rgba(var(--brand-ink-rgb), 0.12);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: #fff;
    color: var(--brand-ink);
    border-color: rgba(var(--brand-ink-rgb), 0.2);
}

.hero-section {
    position: relative;
    padding: 160px 0 110px;
    background:
        linear-gradient(98deg, rgba(var(--brand-sun-rgb), 0.05) 0%, rgba(255, 255, 255, 0) 32%, rgba(var(--brand-ink-rgb), 0.05) 100%),
        radial-gradient(circle at 15% 22%, rgba(var(--brand-sun-rgb), 0.18), transparent 26%),
        radial-gradient(circle at 86% 18%, rgba(var(--brand-sky-rgb), 0.14), transparent 24%),
        linear-gradient(110deg, #fff7ec 0%, #fffdf9 44%, #f6fafd 76%, #ebf3f8 100%);
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-section::before {
    width: min(46vw, 640px);
    height: min(46vw, 640px);
    left: 0;
    top: 12%;
    background:
        radial-gradient(circle at center, rgba(var(--brand-sun-rgb), 0.2) 0%, rgba(var(--brand-sun-rgb), 0.08) 34%, transparent 72%);
    filter: blur(12px);
}

.hero-section::after {
    width: min(40vw, 540px);
    height: min(40vw, 540px);
    right: -4%;
    top: 6%;
    background:
        radial-gradient(circle at center, rgba(var(--brand-ink-rgb), 0.1) 0%, rgba(var(--brand-sky-rgb), 0.06) 38%, transparent 74%);
    filter: blur(10px);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(16px);
    opacity: 0.65;
}

.hero-orb-left {
    width: 220px;
    height: 220px;
    top: auto;
    bottom: 74px;
    left: 12%;
    background: rgba(var(--brand-sun-rgb), 0.1);
}

.hero-orb-right {
    width: 300px;
    height: 300px;
    right: 6%;
    bottom: -12px;
    background: rgba(var(--brand-sky-rgb), 0.1);
}

.hero-copy,
.hero-panel {
    position: relative;
    z-index: 1;
}

.hero-copy {
    isolation: isolate;
}

.hero-copy::before {
    content: "";
    position: absolute;
    inset: -48px -48px -64px -56px;
    z-index: -1;
    border-radius: 40px;
    background:
        radial-gradient(circle at 22% 28%, rgba(var(--brand-sun-rgb), 0.14), transparent 38%),
        linear-gradient(95deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.06) 72%, rgba(255, 255, 255, 0) 100%);
    filter: blur(2px);
}

.eyebrow-pill,
.section-tag,
.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.eyebrow-pill {
    background: rgba(255, 255, 255, 0.8);
    color: var(--brand-ink);
    border: 1px solid rgba(var(--brand-ink-rgb), 0.08);
}

.hindi-line {
    margin: 24px 0 12px;
    font-family: "Noto Sans Devanagari", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-sky);
}

.hindi-line-roman {
    font-family: "Outfit", sans-serif;
    letter-spacing: 0.01em;
}

.hero-copy h1 {
    max-width: 10ch;
    margin: 0 0 18px;
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.hero-lead {
    max-width: 16ch;
    margin: 0 0 18px;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--brand-ink-soft);
}

.hero-description {
    max-width: 62ch;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-trust-stack {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.hero-trust-copy,
.hero-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-trust-copy span,
.hero-proof-strip span {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-trust-copy span {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(var(--brand-ink-rgb), 0.08);
    color: var(--brand-ink);
}

.hero-reassurance {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-sky);
}

.hero-proof-strip span {
    background: rgba(var(--brand-ink-rgb), 0.06);
    color: var(--brand-ink);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.stat-chip,
.hero-panel,
.story-card,
.mission-card,
.program-card,
.journey-step,
.reason-card,
.testimonial-card,
.contact-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
}

.stat-chip {
    border-radius: 22px;
    padding: 20px;
}

.stat-chip strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.8rem;
    color: var(--brand-ink);
}

.stat-chip span {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hero-panel {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 28px;
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--brand-sky), var(--brand-sun));
}

.panel-badge {
    background: rgba(var(--brand-sun-rgb), 0.14);
    color: #9c6207;
}

.hero-panel h2 {
    margin: 18px 0 0;
    font-size: 1.7rem;
    line-height: 1.2;
}

.hero-assurance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.hero-assurance-grid article {
    border-radius: 22px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(243, 248, 252, 0.96), #ffffff);
    border: 1px solid rgba(var(--brand-ink-rgb), 0.06);
}

.hero-assurance-grid i,
.program-icon i,
.reason-icon i,
.contact-highlight i {
    color: var(--brand-sun);
}

.hero-assurance-grid i,
.program-icon,
.reason-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--brand-sun-rgb), 0.18);
    font-size: 1.35rem;
}

.hero-assurance-grid h3,
.program-card h3,
.reason-card h3,
.testimonial-meta h3,
.footer-links h3 {
    font-size: 1.15rem;
    margin: 18px 0 10px;
}

.hero-assurance-grid p,
.program-card p,
.reason-card p,
.testimonial-card p,
.contact-card p,
.footer-brand p,
.footer-links li,
.section-heading p {
    margin: 0;
}

.journey-quick-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(var(--brand-ink-rgb), 0.05);
    color: var(--brand-ink);
    font-weight: 500;
}

.journey-quick-note i {
    color: var(--brand-sky);
}

.section-shell {
    padding: 100px 0;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
}

.section-heading.text-start {
    margin-left: 0;
    margin-right: 0;
}

.section-tag {
    background: rgba(var(--brand-sun-rgb), 0.12);
    color: #9c6207;
    margin-bottom: 18px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.section-heading h2,
.story-card h2,
.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.story-card,
.mission-card,
.program-card,
.journey-step,
.reason-card,
.testimonial-card,
.contact-card {
    border-radius: var(--radius-xl);
    padding: 30px;
}

.story-card {
    background: linear-gradient(180deg, #ffffff, rgba(255, 248, 239, 0.94));
}

.mission-card {
    background: linear-gradient(180deg, rgba(243, 248, 252, 0.96), #ffffff);
}

.mission-card-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
}

.mission-card h3 {
    margin: 10px 0 0;
    font-size: 1.7rem;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--brand-sky);
    white-space: nowrap;
}

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

.feature-grid article {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(var(--brand-ink-rgb), 0.06);
}

.feature-grid i {
    color: var(--brand-sky);
    font-size: 1.2rem;
}

.feature-grid h4 {
    margin: 12px 0 8px;
    font-size: 1.05rem;
}

.programs-section {
    background:
        radial-gradient(circle at top right, rgba(var(--brand-sky-rgb), 0.1), transparent 20%),
        linear-gradient(180deg, rgba(243, 248, 252, 0.78), rgba(255, 255, 255, 0.96));
}

.program-card {
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.program-card:hover,
.reason-card:hover,
.testimonial-card:hover,
.journey-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.program-card p {
    margin-top: 10px;
}

.journey-section {
    padding-top: 80px;
}

.journey-steps {
    display: grid;
    gap: 18px;
}

.journey-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
}

.journey-step-number {
    display: inline-flex;
    min-width: 76px;
    min-height: 76px;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--brand-ink), var(--brand-sky));
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
}

.journey-step h3 {
    margin: 2px 0 10px;
    font-size: 1.3rem;
}

.reasons-grid {
    margin-top: 48px;
}

.reason-card {
    height: 100%;
    background: linear-gradient(180deg, #ffffff, rgba(243, 248, 252, 0.9));
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.reason-card p {
    margin-top: 10px;
}

.testimonial-section {
    background:
        radial-gradient(circle at bottom left, rgba(var(--brand-sun-rgb), 0.14), transparent 18%),
        linear-gradient(180deg, rgba(255, 248, 239, 0.78), #ffffff);
}

.testimonial-card {
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 252, 0.92));
}

.testimonial-quote {
    font-size: 1.1rem;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-sky), var(--brand-ink));
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
}

.star-row {
    color: var(--brand-sun);
}

.cta-band {
    padding: 0 0 100px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 38px 42px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--brand-ink), var(--brand-sky));
    box-shadow: 0 30px 70px rgba(var(--brand-ink-rgb), 0.22);
}

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

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-card {
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 239, 0.92));
}

.contact-block + .contact-block {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(var(--brand-ink-rgb), 0.08);
}

.contact-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-sky);
}

.contact-card a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brand-ink);
}

.contact-highlight {
    display: flex;
    align-items: start;
    gap: 14px;
    margin-top: 28px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(var(--brand-sun-rgb), 0.12);
}

.contact-highlight strong {
    display: block;
    margin-bottom: 4px;
}

.contact-highlight i {
    font-size: 1.3rem;
}

.form-shell {
    height: 100%;
    padding: 32px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 252, 0.94));
    border: 1px solid rgba(var(--brand-ink-rgb), 0.08);
    box-shadow: var(--shadow-card);
}

.contact-priority-banner {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.contact-priority-tag {
    margin-bottom: 14px;
    background: rgba(37, 211, 102, 0.12);
    color: #12873e;
}

.contact-priority-banner h3 {
    margin: 0 0 8px;
    font-size: 1.45rem;
    line-height: 1.2;
}

.contact-priority-banner p {
    margin: 0;
}

.contact-priority-banner .btn {
    justify-self: flex-start;
}

.contact-priority-note {
    font-size: 0.94rem;
    color: var(--text-muted);
}

.contact-priority-banner + .form-shell-header {
    margin-top: 4px;
    padding-top: 24px;
    border-top: 1px solid rgba(var(--brand-ink-rgb), 0.08);
}

.form-shell-header h3 {
    margin: 14px 0 10px;
    font-size: 1.9rem;
    line-height: 1.15;
}

.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0 0;
    padding: 16px 18px;
    border-radius: 20px;
}

.contact-alert i {
    font-size: 1.1rem;
    margin-top: 2px;
}

.contact-alert p,
.contact-alert span {
    margin: 0;
}

.contact-alert-success {
    background: rgba(37, 211, 102, 0.1);
    color: #146c3a;
}

.contact-alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #9f2230;
}

.contact-alert-error div {
    display: grid;
    gap: 6px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.contact-honeypot {
    display: none !important;
}

.form-field {
    display: grid;
    gap: 8px;
}

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

.form-field label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--brand-ink);
}

.form-control-custom {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(var(--brand-ink-rgb), 0.14);
    border-radius: 18px;
    background: #fff;
    color: var(--text-strong);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-control-custom:focus {
    border-color: rgba(var(--brand-sun-rgb), 0.7);
    box-shadow: 0 0 0 4px rgba(var(--brand-sun-rgb), 0.14);
}

.form-control-custom::placeholder {
    color: #8ba0b2;
}

.form-textarea-custom {
    min-height: 180px;
    resize: vertical;
}

.contact-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.contact-form-note {
    max-width: 34ch;
    margin: 0;
    font-size: 0.95rem;
}

.quick-connect {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(var(--brand-ink-rgb), 0.08);
}

.quick-connect a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 1.1rem;
    border-radius: 18px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.18);
    color: var(--brand-ink);
    font-weight: 600;
}

.quick-connect i {
    color: #1fa855;
    font-size: 1.1rem;
}

.site-footer {
    padding: 90px 0 32px;
    background: #102f46;
    color: rgba(255, 255, 255, 0.84);
}

.brandmark-footer {
    color: #fff;
}

.brandmark-footer-shell {
    display: inline-flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16);
}

.brandmark-logo-footer {
    height: 72px;
    max-width: min(56vw, 280px);
}

.footer-brand p {
    margin-top: 18px;
    max-width: 36ch;
    color: rgba(255, 255, 255, 0.68);
}

.footer-links h3 {
    margin: 0 0 18px;
    font-size: 1rem;
    color: #fff;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-links span,
.footer-links li {
    color: rgba(255, 255, 255, 0.72);
}

.contact-list li {
    display: flex;
    align-items: start;
    gap: 10px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.64);
    margin: 0;
    text-align: center;
}

.footer-bottom p a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-bottom p a:hover,
.footer-bottom p a:focus-visible {
    color: #fff;
}

.scroll-top {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 62px;
    height: 62px;
    padding: 0;
    overflow: visible;
    border-radius: 50%;
    white-space: nowrap;
    background: linear-gradient(135deg, #25d366 0%, #1fa855 100%);
    color: #fff;
    box-shadow: 0 18px 36px rgba(31, 168, 85, 0.28);
    animation: whatsappBob 2.8s ease-in-out infinite;
    transition: width 0.28s ease, padding 0.28s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}

.whatsapp-float::before {
    background: rgba(37, 211, 102, 0.2);
    animation: whatsappPulse 2.6s ease-out infinite;
}

.whatsapp-float::after {
    border: 1px solid rgba(37, 211, 102, 0.35);
    animation: whatsappRing 2.6s ease-out infinite 0.6s;
}

.whatsapp-float i {
    font-size: 1.7rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.whatsapp-float-label {
    display: none;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #1fa855 0%, #168a45 100%);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 22px 40px rgba(31, 168, 85, 0.34);
}

@keyframes whatsappBob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }
    70% {
        transform: scale(1.45);
        opacity: 0;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

@keyframes whatsappRing {
    0% {
        transform: scale(1);
        opacity: 0.65;
    }
    80% {
        transform: scale(1.7);
        opacity: 0;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .site-navbar {
        background: rgba(255, 255, 255, 0.94);
    }

    .navbar-mobile-tools {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }

    .brandmark-logo {
        height: 62px;
    }

    .nav-toggle {
        margin-left: 0;
        padding: 0.7rem 0.85rem;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(var(--brand-sun-rgb), 0.18), rgba(var(--brand-sun-rgb), 0.28));
    }

    .lang-switch-mobile {
        padding: 3px;
        box-shadow: 0 10px 20px rgba(var(--brand-ink-rgb), 0.07);
    }

    .lang-switch-mobile .lang-switch-link {
        min-width: 64px;
        padding: 0.62rem 0.8rem;
        font-size: 0.74rem;
        letter-spacing: 0.03em;
    }

    .navbar-collapse {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        width: 100%;
        margin-top: 16px;
        padding: 18px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(var(--brand-ink-rgb), 0.08);
        box-shadow: 0 24px 44px rgba(var(--brand-ink-rgb), 0.1);
    }

    .nav-menu {
        width: 100%;
        gap: 0;
    }

    .nav-menu .nav-link {
        margin: 0;
        border-radius: 16px;
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .lang-switch {
        width: 100%;
        justify-content: stretch;
    }

    .lang-switch-link {
        flex: 1 1 0;
        min-width: 0;
    }

    .nav-action-btn {
        width: 100%;
    }

    .nav-whatsapp-btn {
        align-self: stretch;
        width: 100%;
        min-width: 0;
        gap: 0.6rem;
        border-radius: 999px;
        padding: 0.9rem 1.4rem;
    }

    .nav-whatsapp-label {
        display: inline;
    }

    .hero-section {
        padding-top: 140px;
    }

    .hero-copy h1,
    .hero-lead {
        max-width: none;
    }

    .stats-strip,
    .hero-assurance-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .brandmark-logo {
        height: 52px;
        max-width: 190px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .brandmark-footer-shell {
        padding: 12px 16px;
        border-radius: 22px;
    }

    .brandmark-logo-footer {
        height: 60px;
        max-width: 220px;
    }

    .section-shell {
        padding: 78px 0;
    }

    .hero-section {
        padding-bottom: 82px;
    }

    .story-card,
    .mission-card,
    .program-card,
    .journey-step,
    .reason-card,
    .testimonial-card,
    .contact-card,
    .form-shell {
        padding: 24px;
    }

    .journey-step {
        grid-template-columns: 1fr;
    }

    .journey-step-number {
        min-width: 64px;
        min-height: 64px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .scroll-top {
        position: static;
    }
}

@media (max-width: 499.98px) {
    .site-navbar {
        padding: 14px 0;
    }

    .site-navbar.is-scrolled {
        padding: 8px 0;
    }

    .navbar-mobile-tools {
        gap: 10px;
    }

    .brandmark-logo {
        height: 48px;
        max-width: 158px;
    }

    .lang-switch-mobile {
        padding: 3px;
    }

    .lang-switch-mobile .lang-switch-link {
        min-width: 58px;
        padding: 0.56rem 0.72rem;
        font-size: 0.7rem;
        letter-spacing: 0.025em;
    }

    .nav-toggle {
        padding: 0.62rem 0.76rem;
        border-radius: 17px;
    }

    .hero-section {
        padding-top: 128px;
        padding-bottom: 74px;
    }

    .hero-copy::before {
        inset: -24px -18px -30px -18px;
    }

    .eyebrow-pill {
        width: 100%;
        justify-content: flex-start;
        padding: 0.8rem 1rem;
        font-size: 0.82rem;
    }

    .hindi-line {
        margin-top: 20px;
        font-size: 0.95rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.9rem, 14vw, 4.25rem);
        line-height: 0.98;
        letter-spacing: -0.035em;
    }

    .hero-lead {
        margin-bottom: 14px;
        font-size: clamp(1.15rem, 7vw, 1.7rem);
        line-height: 1.18;
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.7;
    }

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

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.2rem;
    }

    .hero-call-btn {
        gap: 0.3rem;
        text-align: center;
    }

    .hero-call-number {
        display: none;
    }

    .stats-strip {
        gap: 12px;
        margin-top: 28px;
    }

    .stat-chip {
        padding: 18px;
        border-radius: 20px;
    }

    .stat-chip strong {
        font-size: 1.6rem;
    }

    .hero-panel,
    .story-card,
    .mission-card,
    .program-card,
    .journey-step,
    .reason-card,
    .testimonial-card,
    .contact-card,
    .form-shell {
        padding: 22px;
    }

    .hero-panel {
        border-radius: 28px;
    }

    .hero-panel h2,
    .mission-card h3,
    .form-shell-header h3 {
        font-size: clamp(1.45rem, 8.5vw, 2rem);
        line-height: 1.16;
    }

    .hero-assurance-grid,
    .feature-grid,
    .quick-connect,
    .cta-actions {
        gap: 12px;
    }

    .hero-assurance-grid article,
    .feature-grid article {
        padding: 16px;
        border-radius: 20px;
    }

    .journey-quick-note {
        padding: 12px 14px;
        align-items: flex-start;
    }

    .section-shell {
        padding: 72px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .story-card h2,
    .cta-card h2 {
        font-size: clamp(2rem, 10.5vw, 3rem);
        line-height: 1.08;
    }

    .mission-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .inline-link {
        white-space: normal;
        align-self: flex-start;
    }

    .journey-step {
        gap: 16px;
    }

    .journey-step-number {
        justify-self: flex-start;
        width: auto;
        min-width: 86px;
        min-height: 58px;
        padding: 0 1rem;
        border-radius: 18px;
    }

    .cta-card {
        padding: 28px 24px;
        border-radius: 30px;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form-note {
        max-width: none;
        text-align: center;
    }

    .quick-connect a {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
        box-shadow: 0 14px 28px rgba(31, 168, 85, 0.22);
    }

    .whatsapp-float::before {
        inset: -10px;
    }

    .whatsapp-float::after {
        inset: -20px;
    }
}

@media (max-width: 359.98px) {
    .site-navbar {
        padding: 14px 0;
    }

    .site-navbar.is-scrolled {
        padding: 8px 0;
    }

    .brandmark-logo {
        height: 44px;
        max-width: 142px;
    }

    .navbar-mobile-tools {
        gap: 8px;
    }

    .lang-switch-mobile {
        padding: 2px;
    }

    .lang-switch-mobile .lang-switch-link {
        min-width: 52px;
        padding: 0.52rem 0.62rem;
        font-size: 0.68rem;
        letter-spacing: 0.02em;
    }

    .nav-toggle {
        padding: 0.58rem 0.7rem;
        border-radius: 16px;
    }

    .nav-toggle .navbar-toggler-icon {
        width: 1.15em;
        height: 1.15em;
    }
}

@media (max-width: 767.98px) {
    .contact-priority-banner .btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        min-width: 56px;
        gap: 0;
    }

    .whatsapp-float-label {
        display: inline-block;
        max-width: 0;
        opacity: 0;
        overflow: hidden;
        font-size: 0.9rem;
        font-weight: 700;
        transform: translateX(8px);
        transition: max-width 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    }

    .whatsapp-float.is-expanded {
        width: auto;
        max-width: calc(100vw - 32px);
        padding: 0 18px 0 16px;
        gap: 10px;
        border-radius: 999px;
    }

    .whatsapp-float.is-expanded::before,
    .whatsapp-float.is-expanded::after {
        border-radius: 999px;
    }

    .whatsapp-float.is-expanded .whatsapp-float-label {
        max-width: 180px;
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 499.98px) {
    .hero-trust-stack {
        gap: 10px;
    }

    .hero-trust-copy,
    .hero-proof-strip {
        gap: 8px;
    }

    .hero-trust-copy span,
    .hero-proof-strip span {
        font-size: 0.84rem;
        padding: 0.58rem 0.82rem;
    }

    .contact-priority-banner {
        padding: 22px;
        border-radius: 24px;
    }

    .contact-priority-banner h3 {
        font-size: clamp(1.35rem, 7.6vw, 1.75rem);
    }

    .whatsapp-float-label {
        font-size: 0.84rem;
    }

    .whatsapp-float.is-expanded {
        max-width: calc(100vw - 28px);
        padding: 0 16px 0 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float,
    .whatsapp-float::before,
    .whatsapp-float::after {
        animation: none;
    }

    .whatsapp-float:hover,
    .whatsapp-float:focus-visible {
        transform: none;
    }
}
