:root {
    --site-primary: #153a5b;
    --site-primary-dark: #0d2940;
    --site-green: #2b7657;
    --site-accent: #d5a72f;
    --site-text: #24313d;
    --site-muted: #687580;
    --site-border: #e2e8ec;
    --site-soft: #f5f7f8;
    --site-warm: #faf7ef;
    --site-white: #ffffff;
    --site-container: 1180px;
    --site-radius: 14px;
    --site-shadow: 0 14px 36px rgba(21, 44, 63, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--site-text);
    background: var(--site-white);
    font-family: "Poppins", "Noto Sans Devanagari", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
main { min-height: 50vh; }
.container { width: min(calc(100% - 40px), var(--site-container)); margin-inline: auto; }
.sr-only {
    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: fixed;
    top: -60px;
    left: 16px;
    z-index: 1200;
    padding: 9px 13px;
    color: #fff;
    background: var(--site-primary-dark);
    border-radius: 8px;
    text-decoration: none;
}
.skip-link:focus { top: 16px; }

.public-notice-bar { color: rgba(255,255,255,.9); background: #0a2235; font-size: 11px; }
.public-notice-bar .container { min-height: 32px; display: flex; align-items: center; gap: 8px; }
.public-notice-bar strong { color: #ead17f; font-weight: 500; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--site-border);
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
}
.header-main {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; text-decoration: none; }
.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--site-primary);
    border-radius: 8px;
}
.brand-mark span { font-size: 11px; font-weight: 600; letter-spacing: .03em; }
.brand-copy strong { display: block; color: var(--site-primary-dark); font-size: 14px; font-weight: 600; line-height: 1.25; }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: 1px; }
.primary-nav > a {
    padding: 8px 9px;
    color: #53606b;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}
.primary-nav > a:hover, .primary-nav > a.active { color: var(--site-primary); background: #f0f4f6; }
.language-switcher {
    margin-left: 7px;
    padding: 2px;
    display: flex;
    gap: 1px;
    border: 1px solid var(--site-border);
    border-radius: 8px;
    background: #fff;
}
.language-switcher a {
    min-width: 30px;
    padding: 5px 7px;
    color: var(--site-muted);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}
.language-switcher a.active { color: #fff; background: var(--site-primary); }
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 1px solid var(--site-border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--site-primary); border-radius: 99px; }

h1, h2, h3, h4, p { overflow-wrap: anywhere; }
h1, h2, h3, h4 {
    margin: 0;
    color: var(--site-text);
    font-weight: 500;
    letter-spacing: -.025em;
}
p { margin-top: 0; }
.section { padding: 78px 0; }
.soft-section { background: var(--site-warm); }
.eyebrow {
    display: block;
    margin-bottom: 9px;
    color: var(--site-green);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .075em;
    text-transform: uppercase;
}
.eyebrow.light { color: #cfe6d9; }
.section-topline { margin-bottom: 30px; }
.section-topline h2 { font-size: clamp(28px, 3vw, 38px); line-height: 1.2; }
.section-topline p { max-width: 650px; margin: 12px 0 0; color: var(--site-muted); }

.button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: var(--site-primary); }
.button-primary:hover { background: var(--site-primary-dark); }
.button-secondary { color: var(--site-primary); border-color: var(--site-border); background: #fff; }
.button-secondary:hover { border-color: #bcc9d1; background: #f7f9fa; }
.text-arrow-link, .text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--site-primary);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}
.text-arrow-link:hover, .text-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.inner-hero {
    position: relative;
    overflow: hidden;
    background: var(--site-warm);
    border-bottom: 1px solid #eee8dc;
}
.inner-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -190px;
    left: -160px;
    border-radius: 50%;
    background: rgba(43,118,87,.08);
}
.inner-hero-grid {
    position: relative;
    min-height: 430px;
    display: grid;
    align-items: center;
    padding-block: 54px;
}
.inner-hero-grid.has-media { grid-template-columns: minmax(0,.92fr) minmax(420px,1.08fr); gap: 64px; }
.inner-hero-copy { position: relative; z-index: 1; max-width: 610px; }
.inner-hero h1 {
    max-width: 720px;
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -.045em;
}
.inner-hero p { max-width: 620px; margin: 18px 0 0; color: #5e6a74; font-size: 15px; line-height: 1.75; }
.page-hero-actions { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 10px; }
.inner-hero-media {
    position: relative;
    min-height: 330px;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #dbe4e7;
    box-shadow: var(--site-shadow);
}
.inner-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(9,34,51,.22));
    pointer-events: none;
}
.inner-hero-media img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }

.public-empty-state, .home-empty-state {
    min-height: 150px;
    display: grid;
    place-items: center;
    padding: 28px;
    color: var(--site-muted);
    border: 1px dashed #c9d4da;
    border-radius: var(--site-radius);
    background: #fff;
    text-align: center;
}

.site-footer { color: #c8d2da; background: var(--site-primary-dark); }
.footer-clean-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3,.65fr) 1fr;
    gap: 28px;
    padding-top: 46px;
    padding-bottom: 34px;
}
.footer-brand-lockup { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; }
.footer-brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--site-primary-dark);
    border-radius: 8px;
    background: #e3c061;
    font-size: 10px;
    font-weight: 600;
}
.footer-brand-lockup strong, .footer-brand-lockup small { display: block; }
.footer-brand-lockup strong { font-size: 13px; font-weight: 500; }
.footer-brand-lockup small { margin-top: 2px; color: #9eacb7; font-size: 9px; }
.footer-clean-brand p { max-width: 260px; margin: 13px 0 0; color: #9eacb7; font-size: 11px; }
.footer-clean-navigation h2, .footer-clean-contact h2 { color: #fff; font-size: 11px; font-weight: 500; letter-spacing: 0; }
.footer-clean-links, .footer-clean-contact-list { margin-top: 11px; display: grid; gap: 7px; }
.footer-clean-links a, .footer-clean-contact-list a, .footer-clean-contact-list > span { color: #aeb9c1; font-size: 10px; text-decoration: none; }
.footer-clean-links a:hover, .footer-clean-contact-list a:hover { color: #fff; }
.footer-clean-contact-list a, .footer-clean-contact-list > span { display: flex; align-items: flex-start; gap: 7px; }
.footer-contact-icon { flex: 0 0 15px; color: #e3c061; }
.footer-clean-social { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; }
.footer-clean-social a { color: #fff; font-size: 10px; text-decoration: none; }
.footer-clean-bottom { min-height: 52px; display: flex; align-items: center; border-top: 1px solid rgba(255,255,255,.1); color: #8f9ca6; font-size: 10px; }

.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(0,0,0,.86); }
.lightbox.open { display: flex; }
.lightbox figure { max-width: min(1000px,90vw); max-height: 88vh; margin: 0; text-align: center; }
.lightbox img { max-height: 80vh; margin-inline: auto; }
.lightbox figcaption { margin-top: 9px; color: #fff; font-size: 11px; }
.lightbox-close, .lightbox-nav { position: absolute; display: grid; place-items: center; color: #fff; border: 0; border-radius: 8px; background: rgba(255,255,255,.12); cursor: pointer; }
.lightbox-close { top: 18px; right: 18px; width: 38px; height: 38px; }
.lightbox-nav { top: 50%; width: 40px; height: 48px; transform: translateY(-50%); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
[data-reveal] { opacity: 1; transform: none; }

@media (max-width: 1080px) {
    .primary-nav > a { padding-inline: 7px; font-size: 11px; }
    .footer-clean-grid { grid-template-columns: 1.25fr repeat(2,.75fr); }
    .footer-clean-contact { grid-column: span 2; }
    .inner-hero-grid.has-media { grid-template-columns: minmax(0,.9fr) minmax(360px,1.1fr); gap: 40px; }
}
@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .primary-nav {
        position: fixed;
        top: 66px;
        right: 0;
        bottom: 0;
        width: min(320px,88vw);
        padding: 18px;
        display: block;
        overflow-y: auto;
        border-left: 1px solid var(--site-border);
        background: #fff;
        transform: translateX(100%);
        transition: transform .25s ease;
        box-shadow: -12px 0 30px rgba(24,46,64,.08);
    }
    .public-notice-bar + .skip-link + .site-header .primary-nav { top: 98px; }
    .primary-nav.open { transform: translateX(0); }
    .primary-nav > a { display: block; margin-bottom: 3px; padding: 11px 12px; font-size: 12px; }
    .language-switcher { width: max-content; margin: 14px 0 0; }
    .inner-hero-grid.has-media { grid-template-columns: 1fr; gap: 30px; padding-block: 48px; }
    .inner-hero-copy { max-width: 720px; }
    .inner-hero-media { min-height: 360px; }
    .inner-hero-media img { min-height: 360px; }
}
@media (max-width: 680px) {
    .container { width: min(calc(100% - 28px), var(--site-container)); }
    .section { padding: 58px 0; }
    .header-main { min-height: 62px; }
    .primary-nav { top: 62px; }
    .public-notice-bar + .skip-link + .site-header .primary-nav { top: 94px; }
    .brand-mark { width: 36px; height: 36px; }
    .brand-copy strong { font-size: 13px; }
    .inner-hero-grid, .inner-hero-grid.has-media { min-height: auto; padding-block: 42px; }
    .inner-hero h1 { font-size: 34px; }
    .inner-hero p { font-size: 13px; }
    .inner-hero-media, .inner-hero-media img { min-height: 260px; }
    .page-hero-actions { display: grid; grid-template-columns: 1fr; }
    .page-hero-actions .button { width: 100%; }
    .footer-clean-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 26px 18px; padding-top: 38px; }
    .footer-clean-brand, .footer-clean-contact { grid-column: 1 / -1; }
}
@media (max-width: 430px) {
    .public-notice-bar .container { min-height: 38px; align-items: flex-start; padding-block: 7px; }
    .footer-clean-grid { grid-template-columns: 1fr; }
    .footer-clean-brand, .footer-clean-contact { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
