:root {
    --navy: #123a68;
    --navy-deep: #092747;
    --blue: #5ac8f5;
    --orange: #f26a21;
    --yellow: #ffc20e;
    --green: #98c11e;
    --ink: #142236;
    --muted: #66758a;
    --surface: #f5f8fc;
    --white: #fff;
    --border: #e5ebf3;
    --shadow: 0 18px 50px rgba(18, 58, 104, .10);
    --shadow-lg: 0 30px 70px rgba(18, 58, 104, .16);
    --radius: 20px;
    --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 95px; }
body {
    font-family: "Inter", sans-serif;
    color: var(--ink);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

/* Top bar */
.topbar { background: var(--navy-deep); color: rgba(255,255,255,.82); font-size: 13px; }
.topbar-inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar i { color: var(--yellow); margin-right: 7px; }
.topbar-links { display: flex; gap: 24px; }
.topbar a:hover { color: var(--white); }

/* Navigation */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(18,58,104,.08);
    transition: .3s ease;
}
.navbar.scrolled { box-shadow: 0 8px 30px rgba(9,39,71,.10); }
.nav-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { color: var(--navy); font-size: 24px; letter-spacing: .08em; }
.brand-text span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 7px; }
.nav-links > a { padding: 10px 12px; color: #43556c; font-size: 14px; font-weight: 600; border-radius: 10px; transition: .25s; }
.nav-links > a:hover, .nav-links > a.active { color: var(--navy); background: #eef6fb; }
.nav-links .nav-cta { color: var(--white); background: var(--orange); padding-inline: 18px; margin-left: 7px; box-shadow: 0 8px 20px rgba(242,106,33,.22); }
.nav-links .nav-cta:hover { color: var(--white); background: #d95716; transform: translateY(-1px); }
.menu-btn { display: none; border: 0; background: transparent; color: var(--navy); font-size: 24px; cursor: pointer; }

/* Hero */
.hero {
    position: relative;
    width: 100%;
    background: var(--navy-deep);
    overflow: hidden;
}
.hero-banner {
    width: 100%;
    line-height: 0;
    background: var(--navy-deep);
}
.hero-banner img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
}
.hero-caption {
    position: absolute;
    left: 50%;
    bottom: 72px;
    transform: translateX(-0%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 9px 12px 9px 18px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: rgba(255,255,255,.92);
    background: rgba(7,31,58,.70);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.hero-caption a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    transition: .25s ease;
}
.hero-caption a:hover {
    background: #d95716;
    transform: translateY(-1px);
}
/* Stats */
.stats { position: relative; z-index: 5; margin-top: -48px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; }
.stat { min-height: 112px; display: flex; align-items: center; gap: 15px; padding: 20px 25px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: 0; }
.stat-icon { width: 49px; height: 49px; flex: 0 0 49px; display: grid; place-items: center; border-radius: 14px; color: var(--navy); background: #eef8fd; font-size: 18px; }
.stat:nth-child(2) .stat-icon { background: #fff4e9; color: var(--orange); }
.stat:nth-child(3) .stat-icon { background: #f3f9e9; color: var(--green); }
.stat:nth-child(4) .stat-icon { background: #fff9dd; color: #b88900; }
.stat strong { display: block; color: var(--navy); font-size: 20px; line-height: 1.2; }
.stat small { color: var(--muted); font-size: 11px; font-weight: 600; }

/* Sections */
.section { padding: 110px 0; }
.section-heading { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.eyebrow { display: inline-block; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.section-heading h2, .message-content h2 { font-family: "Playfair Display", serif; color: var(--navy); font-size: clamp(36px, 4vw, 52px); line-height: 1.15; margin: 11px 0 16px; letter-spacing: -.02em; }
.section-heading h2 span, .message-content h2 span { color: var(--orange); }
.section-heading > p { color: var(--muted); font-size: 16px; }

/* About */
.about-section { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.about-image { position: relative; padding-right: 35px; padding-bottom: 30px; }
.about-image::before { content: ""; position: absolute; left: -22px; bottom: 0; width: 110px; height: 110px; background: radial-gradient(var(--blue) 1.4px, transparent 1.4px); background-size: 11px 11px; opacity: .5; z-index: 0; }
.about-image img { position: relative; z-index: 1; width: 100%; height: 460px; object-fit: cover; border-radius: 25px; box-shadow: var(--shadow-lg); }
.image-card { position: absolute; z-index: 2; right: 0; bottom: 0; display: flex; align-items: center; gap: 12px; background: var(--white); padding: 16px 20px; border-radius: 15px; box-shadow: var(--shadow); }
.image-card > i { width: 42px; height: 42px; display: grid; place-items: center; color: var(--orange); background: #fff3e9; border-radius: 11px; }
.image-card strong, .image-card span { display: block; }
.image-card strong { color: var(--navy); font-size: 14px; }
.image-card span { color: var(--muted); font-size: 11px; }
.about-content h3 { font-family: "Playfair Display", serif; color: var(--navy); font-size: 36px; line-height: 1.2; margin: 8px 0 18px; }
.about-content > p { color: var(--muted); }
.feature-list { margin-top: 30px; display: grid; gap: 18px; }
.feature-list > div { display: flex; gap: 13px; }
.feature-list > div > span { flex: 0 0 31px; width: 31px; height: 31px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-size: 12px; margin-top: 4px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.feature-list strong { color: var(--ink); font-size: 14px; }

/* Principal message */
.message-section { background: var(--white); }
.message-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.message-image { position: relative; }
.message-image img { width: 100%; height: 560px; object-fit: cover; border-radius: 25px; box-shadow: var(--shadow-lg); }
.quote-mark { position: absolute; right: -24px; top: 35px; width: 80px; height: 80px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: var(--white); font-family: Georgia, serif; font-size: 65px; line-height: 1; box-shadow: 0 12px 30px rgba(242,106,33,.3); }
.message-content blockquote { border-left: 4px solid var(--yellow); padding: 4px 0 4px 18px; margin: 25px 0; color: var(--navy); font-family: "Playfair Display", serif; font-size: 21px; font-style: italic; }
.message-content p { color: var(--muted); margin-bottom: 15px; font-size: 14px; }
.signature { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.signature strong, .signature span { display: block; }
.signature strong { color: var(--navy); font-family: "Playfair Display", serif; font-size: 18px; }
.signature span { color: var(--muted); font-size: 12px; }

/* Programs */
.programs-section { background: var(--surface); }
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.program-card { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 30px 25px; min-height: 330px; overflow: hidden; transition: .3s ease; }
.program-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: var(--blue); }
.program-card:nth-child(2)::before { background: var(--orange); }
.program-card:nth-child(3)::before { background: var(--green); }
.program-card:nth-child(4)::before { background: var(--yellow); }
.program-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); border-color: transparent; }
.program-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; color: var(--navy); background: #eef8fd; font-size: 21px; margin-bottom: 20px; }
.program-card:nth-child(2) .program-icon { background: #fff3e9; color: var(--orange); }
.program-card:nth-child(3) .program-icon { background: #f3f9e9; color: var(--green); }
.program-card:nth-child(4) .program-icon { background: #fff9dd; color: #b88900; }
.program-number { position: absolute; top: 28px; right: 24px; color: #dce5ef; font-size: 30px; font-weight: 800; }
.program-card h3 { color: var(--navy); font-family: "Playfair Display", serif; font-size: 22px; margin-bottom: 12px; }
.program-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.program-card a { position: absolute; left: 25px; bottom: 24px; color: var(--orange); font-size: 12px; font-weight: 800; }
.program-card a i { margin-left: 6px; transition: .2s; }
.program-card a:hover i { margin-left: 10px; }

/* CTA */
.cta-section { padding: 70px 0; background: linear-gradient(110deg, var(--navy-deep), var(--navy)); color: var(--white); position: relative; overflow: hidden; }
.cta-section::after { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; border: 70px solid rgba(90,200,245,.08); right: -110px; top: -160px; }
.cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-inner .eyebrow { color: var(--yellow); }
.cta-inner h2 { font-family: "Playfair Display", serif; font-size: 38px; margin: 5px 0; }
.cta-inner p { color: rgba(255,255,255,.7); font-size: 14px; }

/* Timeline */
.history-section { background: var(--white); }
.timeline { max-width: 900px; margin: 0 auto; position: relative; }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: linear-gradient(var(--blue), var(--orange), var(--green)); transform: translateX(-50%); }
.timeline-item { width: 50%; padding: 0 45px 55px 0; position: relative; }
.timeline-item:nth-child(even) { margin-left: 50%; padding: 0 0 55px 45px; }
.timeline-dot { position: absolute; right: -9px; top: 7px; width: 18px; height: 18px; border: 4px solid var(--white); background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 2px var(--orange); }
.timeline-item:nth-child(even) .timeline-dot { left: -9px; right: auto; background: var(--green); box-shadow: 0 0 0 2px var(--green); }
.timeline-card { background: var(--surface); border: 1px solid var(--border); padding: 25px; border-radius: 18px; transition: .25s; }
.timeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: var(--white); }
.timeline-year { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.timeline-card h3 { color: var(--navy); font-family: "Playfair Display", serif; font-size: 21px; margin: 5px 0 8px; }
.timeline-card p { color: var(--muted); font-size: 13px; }

/* Footer */
footer { background: #081e35; color: rgba(255,255,255,.7); }
.footer-grid { padding: 70px 0 55px; display: grid; grid-template-columns: 1.7fr 1fr 1.3fr; gap: 70px; }
footer .brand-text strong { color: var(--white); }
footer .brand-text span { color: rgba(255,255,255,.55); }
.footer-brand > p { max-width: 390px; margin: 20px 0; font-size: 13px; line-height: 1.8; }
.socials { display: flex; gap: 8px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; background: rgba(255,255,255,.08); border-radius: 10px; transition: .2s; }
.socials a:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-column h4 { color: var(--white); font-size: 14px; margin-bottom: 8px; }
.footer-column a, .footer-column span { color: rgba(255,255,255,.62); font-size: 12px; }
.footer-column a:hover { color: var(--yellow); }
.footer-column i { width: 18px; color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: 10px; color: rgba(255,255,255,.45); }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 20px; }

/* Utilities */
.back-to-top { position: fixed; right: 22px; bottom: 22px; width: 44px; height: 44px; border: 0; border-radius: 13px; background: var(--orange); color: var(--white); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s; z-index: 900; box-shadow: 0 10px 25px rgba(242,106,33,.28); }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1050px) {
    .nav-links { gap: 2px; }
    .nav-links > a { padding-inline: 8px; font-size: 13px; }
    .program-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .message-grid { gap: 45px; }
}
@media (max-width: 600px) {
    .hero-caption {
        bottom: 62px;
        gap: 8px;
        padding: 7px 9px 7px 12px;
        font-size: 10px;
    }

    .hero-caption a {
        padding: 7px 10px;
        font-size: 10px;
    }
}
    .topbar-inner { justify-content: center; }
    .topbar-inner > span { display: none; }
    .nav-inner { min-height: 70px; }
	
    /* Keep navigation horizontal */
.menu-btn {
    display: none;
}

.nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.nav-links > a {
    padding: 10px 8px;
    font-size: 13px;
}

.nav-links .nav-cta {
    margin-left: 7px;
    margin-top: 0;
    text-align: center;
} 
	
    .stats { margin-top: -25px; }
	
    .stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    border-right: 1px solid var(--border);
    border-bottom: 0;
}

.stat:last-child {
    border-right: 0;
}
	
    .section { padding: 80px 0; }
    .about-grid, .message-grid { grid-template-columns: 1fr; }
    .about-image { max-width: 650px; margin: auto; }
    .message-image { max-width: 600px; margin: auto; }
    .message-content { text-align: center; }
    .message-content blockquote { text-align: left; }
    .signature { text-align: left; }
    .cta-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .hero-caption span { display: none; }
    .hero-caption {
        bottom: 9px;
        font-size: 10px;
        padding: 5px;
    }
    .container { width: min(var(--container), calc(100% - 28px)); }
    .topbar-links { gap: 12px; font-size: 11px; }
    .brand-text span { font-size: 8px; }
    .brand img { width: 46px; height: 46px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid var(--border); }
    .stat:last-child { border-bottom: 0; }
    .program-grid { grid-template-columns: 1fr; }
    .program-card { min-height: 300px; }
    .about-image img, .message-image img { height: 360px; }
    .image-card { right: 8px; }
    .quote-mark { right: 10px; top: 15px; width: 60px; height: 60px; font-size: 50px; }
    .timeline::before { left: 12px; }
    .timeline-item, .timeline-item:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 30px 42px; }
    .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 3px; right: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}

/* Header banner polish */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 -40px 70px rgba(7,31,58,.18);
    z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
    .hero-caption a { transition: none; }
}