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

:root {
    --navy: #1b3a5c;
    --navy-dark: #122840;
    --navy-deep: #0e1f30;
    --blue: #2a6db5;
    --blue-light: #e9f1fa;
    --orange: #e07a2f;
    --orange-dark: #c96a22;
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #eef0f3;
    --gray-200: #dde1e7;
    --gray-400: #9aa3b0;
    --gray-600: #5c6778;
    --gray-800: #2e3640;
    --font: 'Source Sans 3', --apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Merriweather', Georgia, serif;   
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-800); line-height: 1.65; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }



.topbar {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    padding: 7px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar a { color: rgba(255, 255, 255, 0.75); }
.topbar a:hover { color: var(--orange); }
.topbar-left { display: flex; gap: 18px; }
.topbar-left span { display: inline-flex; align-items: center; gap: 5px; }
.topbar-left svg { width: 13px; height: 13px; flex-shrink: 0; }
.topbar-right { display: flex; gap: 10px; }
.topbar-right a {
    width: 26px;
    height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    transition: background 0.2s;
}
.topbar-right a:hover {
    background: var(--orange); color: #fff;
}
.topbar-right svg { width: 13px; height: 13px; }






















.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 1px 4x rgba(0, 0, 0, 0.04);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
    width: 46px; height: 46px;
    background: var(--navy);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
}

.logo-img img {
    width: 256px; height: 50px; color: #fff;
}
.logo-text { line-height: 1.15; }
.logo-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: var(--navy); letter-spacing: 0.5px; }
.logo-sub { font-size: 0.68rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 1.5px; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-600);
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.main-nav > li > a:hover,
.main-nav > li > a.active {
    color: var(--navy);
    background: var(--gray-50);
}









.main-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s;
    z-index: 50;
}

.main-nav > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown a {
    display: block;
    padding: 8px 14px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 5px;
    transition: all 0.15s;
}
.dropdown a:hover {
    color: var(--navy);
    background: var(--blue-light);
}

.nav-cta {
    display: inline-block;
    padding: 9px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: var(--orange);
    border-radius: 6px;
    margin-left: 8px;
    transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-dark); }



.hero-img {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
  mask-image: linear-gradient(to right, black 70%, transparent 100%);
}




.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0, 0, 0, 0.5);
}
.mobile-menu {
    position: fixed; top: 0; right: -300px; width: 280px; height: 100%;
    background: #fff; z-index: 201;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
.mobile-menu.open { right: 0; }
.mobile-menu-close { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.mobile-menu-close svg { width: 24px; height: 24px; }
.mobile-menu a {
    display: block;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:hover { color: var(--orange);}
.mobile-menu .sub a {
    padding-left: 16px; font-weight: 500; color: var(--gray-600); font-size: 0.88rem;
}



















.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.hero-img {
    position: absolute;
    inset: 0;
    
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
}
.hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(18,40,64,0.85) 0%, rgba(18,40,64,0.55) 50%, rgba(18,40,64,0.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 520px;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}
.hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 6px;
    transition: background 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline { border: 2px solid rgba(255, 255, 255, 0.4); color: #fff; }
.btn-outline:hover { border-color: rgba(255, 255, 255, 0.7); background: rgba(255, 255, 255, 0.08); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--gray-50); }




.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-deep);
}

.hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    
    -webkit-mask-image: none;
    mask-image: none;
}


.hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
    
        linear-gradient(
            to right,
            rgba(14, 31, 48, 0.25) 0%,
            rgba(14, 31, 48, 0.55) 40%,
            rgba(14, 31, 48, 0.88) 65%,
            rgba(14, 31, 48, 0.97) 100%
        ),
        
        linear-gradient(
            to bottom,
            rgba(14, 31, 48, 0.3) 0%,
            transparent 20%,
            transparent 75%,
            rgba(14, 31, 48, 0.6) 100%
        );
}


.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    justify-content: flex-end;  
}

.hero-content {
    max-width: 500px;
    padding: 80px 0;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 34px;
    line-height: 1.75;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


@media (max-width: 768px) {
    .hero {
        min-height: 480px;
        align-items: flex-end;
    }
    
    .hero-img::after {
        background: linear-gradient(
            to top,
            rgba(14, 31, 48, 0.95) 0%,
            rgba(14, 31, 48, 0.6) 50%,
            rgba(14, 31, 48, 0.2) 100%
        );
    }

    .hero .container {
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 40px 0 52px;
        text-align: center;
    }

    .hero h1 { font-size: 2rem; }

    .hero-btns { justify-content: center; }
}
































.service-strip {
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-100);
}
.service-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.service-item {
    padding: 20px 10px;
    border-radius: 8px;
    transition: background 0.2s;
}
.service-item:hover { background: var(--gray-50); }
.service-item-icon {
    width: 56px; height: 56px;
    margin: 0 auto 10px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.service-item-icon svg { width: 26px; height: 26px; color: var(--blue); }
.service-item h3 { font-size: 0.88rem; font-weight: 700; color: var(--navy); }

























.section { padding: 60px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); color: #fff; }

.section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.section-dark .section-title { color: #fff; }
.section-subtitle {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 36px;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.55); }
.section-line {
    width: 40px; height: 3px;
    background: var(--orange);
    margin-bottom: 16px;
}


.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.news-card {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.news-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.news-card-img {
    height: 190px;
    
    background: var(--gray-200);
    background-size: cover;
    background-position: center;
}
.news-card-body { padding: 20px; }
.news-card-date { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 6px; }
.news-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.news-card-body p { font-size: 0.87rem; color: var(--gray-600); margin-bottom: 14px; }
.read-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border: 1.5px solid var(--orange);
    border-radius: 4px;
    transition: all 0.2s;
}
.read-more:hover { background: var(--orange); color: #fff; }
.read-more svg { width: 14px; height: 14px; }


.join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.join-item { text-align: center; padding: 16px; }
.join-item-icon {
    width: 52px; height: 52px;
    margin: 0 auto 10px;
    
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.join-item-icon svg { width: 24px; height: 24px; color: var(--orange); }
.join-item h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.join-item p { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.section-center { text-align: center; }


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-img {
    height: 340px;
    
    background: var(--gray-200);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 12px; }
.about-text .btn { margin-top: 12px; }


.doc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.doc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 6px;
    transition: border-color 0.2s;
}
.doc-link:hover { border-color: var(--blue); }
.doc-link svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.doc-link span { font-size: 0.85rem; font-weight: 600; color: var(--navy); }


.prefooter {
    background: var(--navy-dark);
    padding: 50px 0;
    color: rgba(255,255,255,0.7);
}
.prefooter .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.prefooter h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.contact-line {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 12px; font-size: 0.9rem;
}
.contact-line svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.contact-line a:hover { color: var(--orange); }
.social-links { display: flex; gap: 8px; margin-top: 18px; }
.social-links a {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    transition: all 0.2s;
}
.social-links a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.social-links svg { width: 16px; height: 16px; }

.donate-text { font-size: 0.9rem; margin-bottom: 18px; }
.donate-method {
    padding: 12px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 0.84rem;
}
.donate-method strong { color: #fff; display: block; margin-bottom: 2px; }
.donate-method code { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.footer-bar {
    background: var(--navy-deep);
    padding: 16px 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bar a { color: rgba(255,255,255,0.4); }
.footer-bar a:hover { color: var(--orange); }


.page-hero {
    background: var(--navy);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.page-hero-img {
    position: absolute; inset: 0;
    background: var(--navy);
    background-size: cover;
    background-position: center;
}
.page-hero-img::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(18,40,64,0.8);
}
.page-hero-content {
    position: relative; z-index: 2;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.breadcrumb {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--orange); }


.page-content { padding: 50px 0; }
.page-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}
.page-content p { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 14px; }
.page-content .content-img {
    
    height: 300px;
    background: var(--gray-200);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin: 24px 0;
}
.page-content ul { margin: 14px 0 14px 20px; }
.page-content li { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 6px; list-style: disc; }


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.gallery-item {
    height: 200px;
    
    background: var(--gray-200);
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s;
}
.gallery-item:hover { opacity: 0.85; }


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: var(--font);
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 120px; }


@media (max-width: 960px) {
    .main-nav, .nav-cta { display: none; }
    .burger { display: flex; }
    .hero h1 { font-size: 1.9rem; }
    .hero-content { max-width: 400px; }
    .service-strip .container { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .join-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .doc-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .prefooter .container { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
    .topbar { display: none; }
    .header .container { height: 60px; }
    .hero { min-height: 340px; }
    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: 0.9rem; }
    .hero-content { max-width: 100%; }
    .service-strip .container { grid-template-columns: repeat(2, 1fr); }
    .service-item { padding: 12px 6px; }
    .service-item h3 { font-size: 0.78rem; }
    .news-grid { grid-template-columns: 1fr; }
    .join-grid { grid-template-columns: 1fr 1fr; }
    .doc-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bar .container { flex-direction: column; text-align: center; }
}


@media (min-width: 641px) and (max-width: 960px) {
    .container { max-width: 720px; }
    .hero-content { padding: 50px 0; }
    .section { padding: 50px 0; }
    .service-item-icon { width: 48px; height: 48px; }
    .service-item-icon svg { width: 22px; height: 22px; }
    .join-item { padding: 12px 8px; }
}
