:root {
    --navy: #102f56;
    --blue: #1d5fae;
    --bright-blue: #2f80ed;
    --sky: #eaf4ff;
    --sky-2: #f5faff;
    --gold: #f7bd4f;
    --gold-soft: #fff3d8;
    --green: #2f855a;
    --white: #ffffff;
    --off-white: #f6f9fd;
    --text: #102033;
    --muted: #607089;
    --border: #d9e5f3;
    --shadow: 0 22px 60px rgba(16, 47, 86, 0.14);
    --shadow-soft: 0 14px 35px rgba(16, 47, 86, 0.10);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--off-white);
    color: var(--text);
}

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

.container {
    width: min(1160px, 92%);
    margin: 0 auto;
}

.site-header {
    background: rgba(255, 255, 255, 0.90);
    border-bottom: 1px solid rgba(217, 229, 243, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-image{
    height:80px;
    width:auto;
    display:block;
}
.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--navy), var(--bright-blue));
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(16, 47, 86, 0.24);
}

.logo-text strong {
    display: block;
    font-size: 19px;
    letter-spacing: -0.5px;
}

.logo-text span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 15px;
    font-weight: 800;
    color: var(--muted);
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 100px;
    background: var(--bright-blue);
    transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 900;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.nav-button,
.btn-primary {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white);
    box-shadow: 0 15px 30px rgba(16, 47, 86, 0.24);
}

.nav-button:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(16, 47, 86, 0.30);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--sky);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 98px 0 86px;
    background:
        radial-gradient(circle at 88% 10%, rgba(47, 128, 237, 0.18), transparent 34%),
        radial-gradient(circle at 10% 85%, rgba(247, 189, 79, 0.18), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f3f8ff 52%, #eef6ff 100%);
    border-bottom: 1px solid var(--border);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 47, 86, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 47, 86, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 58px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(234, 244, 255, 0.95);
    color: var(--blue);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(47, 128, 237, 0.15);
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: -0.045em;
    color: var(--text);
}

h1 {
    font-size: clamp(45px, 6.6vw, 80px);
    line-height: 0.95;
    margin-top: 22px;
}

h2 {
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.03;
}

h3 {
    font-size: 24px;
}

.lead {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
    margin: 24px 0 0;
}

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

.trust-row {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    color: var(--muted);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 13px;
}

.hero-visual {
    position: relative;
}

.photo-card {
    min-height: 520px;
    border-radius: 36px;
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.75);
    background:
        linear-gradient(180deg, rgba(16, 47, 86, 0.10), rgba(16, 47, 86, 0.42)),
        linear-gradient(135deg, #dcecff, #ffffff 42%, #fff4dd);
    position: relative;
    overflow: hidden;
}

.photo-card::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -90px;
    top: -80px;
    background: rgba(47, 128, 237, 0.25);
    border-radius: 50%;
}

.photo-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -80px;
    bottom: -90px;
    background: rgba(247, 189, 79, 0.28);
    border-radius: 50%;
}

.visual-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 472px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.86), rgba(255,255,255,0.45)),
        repeating-linear-gradient(135deg, rgba(16,47,86,0.08) 0, rgba(16,47,86,0.08) 2px, transparent 2px, transparent 16px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    backdrop-filter: blur(6px);
}

.visual-badge {
    width: fit-content;
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 11px 15px;
    font-weight: 900;
    box-shadow: var(--shadow-soft);
}

.visual-message {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.visual-message strong {
    display: block;
    font-size: 34px;
    letter-spacing: -0.04em;
    color: var(--navy);
}

.visual-message span {
    display: block;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.6;
}

.floating-card {
    position: absolute;
    left: -28px;
    bottom: 38px;
    z-index: 4;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
    max-width: 230px;
}

.floating-card strong {
    color: var(--navy);
    display: block;
    font-size: 18px;
}

.floating-card p {
    margin: 6px 0 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 14px;
}

.section {
    padding: 84px 0;
}

.section-white {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 18px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card .card-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--sky), #ffffff);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 25px;
    margin-bottom: 22px;
    border: 1px solid var(--border);
}

.card p {
    color: var(--muted);
    line-height: 1.7;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.story-panel {
    background:
        radial-gradient(circle at 100% 0%, rgba(47, 128, 237, 0.18), transparent 40%),
        var(--white);
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.story-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.story-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--sky-2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
}

.check {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: var(--green);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 900;
    flex: 0 0 auto;
}

.quote-card {
    background:
        radial-gradient(circle at top right, rgba(47, 128, 237, 0.35), transparent 42%),
        linear-gradient(135deg, var(--navy), #071a31);
    color: var(--white);
    border-radius: 34px;
    padding: 42px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.quote-card::after {
    content: "“";
    position: absolute;
    right: 28px;
    bottom: -52px;
    font-size: 220px;
    color: rgba(255,255,255,0.08);
    font-family: Georgia, serif;
}

.quote-card h3 {
    color: var(--white);
    font-size: 34px;
    line-height: 1.18;
    position: relative;
    z-index: 1;
}

.quote-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.impact-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.strip-item {
    background: var(--white);
    padding: 30px;
    text-align: center;
}

.strip-item strong {
    display: block;
    color: var(--navy);
    font-size: 34px;
}

.strip-item span {
    color: var(--muted);
    font-weight: 800;
    font-size: 14px;
}

.cta {
    background:
        radial-gradient(circle at 15% 10%, rgba(247, 189, 79, 0.26), transparent 30%),
        radial-gradient(circle at 90% 70%, rgba(47, 128, 237, 0.30), transparent 30%),
        linear-gradient(135deg, var(--navy), #071b31);
    color: var(--white);
    padding: 78px 0;
}

.cta h2 {
    color: var(--white);
}

.cta p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.7;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.page-hero {
    padding: 82px 0 58px;
    background:
        radial-gradient(circle at 90% 10%, rgba(47, 128, 237, 0.16), transparent 30%),
        linear-gradient(135deg, var(--sky), var(--white));
    border-bottom: 1px solid var(--border);
}

.page-hero p {
    max-width: 780px;
}

.leadership-card{
    display:grid;
    grid-template-columns:450px 1fr;
    gap:50px;
    align-items:center;
}

.profile-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, var(--sky), #ffffff);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 42px;
    font-weight: 900;
    border: 1px solid var(--border);
}

.donation-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 36px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.donation-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    top: -90px;
    background: var(--sky);
    border-radius: 50%;
}

.donation-box > * {
    position: relative;
    z-index: 1;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.amount {
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--sky), #ffffff);
    color: var(--navy);
    padding: 18px;
    border-radius: 17px;
    text-align: center;
    font-weight: 900;
    transition: 0.2s ease;
}

.amount:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    font-weight: 900;
    margin-bottom: 8px;
}

input,
textarea,
select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--border);
    border-radius: 15px;
    font: inherit;
    background: var(--white);
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.10);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.site-footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 42px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 30px;
}

.site-footer p,
.site-footer a {
    color: var(--muted);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.mobile-menu-button {
    display: none;
    background: var(--sky);
    color: var(--navy);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 11px 13px;
    font-weight: 900;
}

@media (max-width: 900px) {
    .mobile-menu-button {
        display: block;
    }

    .nav {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 18px;
        gap: 14px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-button {
        display: none;
    }

    .hero-grid,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 68px 0;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .strip-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .amount-grid {
        grid-template-columns: 1fr;
    }

    .leadership-card {
        grid-template-columns: 1fr;
    }

    .floating-card {
        left: 18px;
        right: 18px;
        max-width: none;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: 43px;
    }

    .photo-card {
        min-height: 430px;
    }

    .visual-inner {
        min-height: 382px;
    }

    .strip-grid {
        grid-template-columns: 1fr;
    }
}
.photo-frame{
    padding:0;
    overflow:hidden;
    background:none;
    border:none;
    box-shadow:none;
}

.photo-frame img{
    width:100%;
    height:340px;
    object-fit:cover;
    display:block;
    border-radius:24px;
}
.card{
    overflow:hidden;
}

.card-photo{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
    border-radius:18px;
    margin-bottom:20px;
}
.leadership-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.leadership-image img{
    width:100%;
    max-width:450px;
    height:auto;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.leadership-list{
    margin-top:25px;
    padding-left:20px;
}

.leadership-list li{
    margin-bottom:12px;
    font-size:1.05rem;
}
/* ==========================================
   FOOTER
========================================== */

.site-footer{
    background:#0F3E69;
    color:#ffffff;
    padding:70px 0 0;
    margin-top:50px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
}

.footer-brand .logo{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
}

.site-footer .logo-image{
    width:100px;
    height:100px;
    object-fit:contain;
}

.site-footer .logo-text strong{
    color:#0F3E69;;
}

.site-footer .logo-text span{
    color:#5b6f8c;
}

.footer-description{
    max-width:450px;
    line-height:1.8;
    margin-bottom:30px;
    color:rgba(255,255,255,.85);
}

.site-footer h3{
    color:#0F3E69;;
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-links a{
    color:#dbe8f5;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#166AB5;
}

.site-footer{
    background:#ffffff;
    color:#233246;
    padding:70px 0 0;
}

.footer-subheading{
    margin-top:30px;
}

.footer-bottom{
    background:#0F3E69;
    border:none;
    margin-top:50px;
    padding:30px;
    text-align:center;
}

.footer-bottom p{
    margin:5px 0;
    color:white;
}

/* Mobile */

@media (max-width: 900px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-brand .logo{
        justify-content:center;
    }

    .footer-brand{
        text-align:center;
    }

    .footer-description{
        margin-left:auto;
        margin-right:auto;
    }

}