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

body{
    font-family:'Poppins', sans-serif;
    background:#f5f7fb;
    color:#222;
}

.navbar{
    width:100%;
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:999;
}

.nav-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 25px;
}

.logo img{
    height:65px;
    width:auto;
    display:block;
}

.nav-menu{
    display:flex;
    gap:30px;
}

.nav-menu a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:0.3s;
}

.nav-menu a:hover{
    color:#0b5ed7;
}

.hero{
    width:100%;
    min-height:85vh;
    background:
    linear-gradient(rgba(5,20,40,0.75), rgba(5,20,40,0.75)),
    url('https://images.unsplash.com/photo-1521295121783-8a321d551ad2?q=80&w=1974&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:1200px;
    margin:auto;
    padding:40px;
    color:white;
}

.hero-content h1{
    font-size:64px;
    margin-bottom:20px;
    line-height:1.1;
}

.hero-content p{
    max-width:700px;
    font-size:18px;
    line-height:1.7;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    padding:16px 34px;
    background:#00b4d8;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:0.3s;
}

.hero-btn:hover{
    background:#0096c7;
}

.about-section{
    padding:100px 20px;
    background:white;
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.about-section h2,
.services-section h2{
    font-size:42px;
    margin-bottom:25px;
    color:#07142a;
}

.about-section p{
    line-height:1.9;
    font-size:17px;
    color:#555;
    margin-bottom:25px;
}

.services-section{
    padding:100px 20px;
    background:#f5f7fb;
}

.section-container{
    max-width:1200px;
    margin:auto;
}

.center{
    text-align:center;
}

.section-intro{
    max-width:700px;
    margin:0 auto 60px auto;
    line-height:1.8;
    color:#666;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:white;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card h3{
    margin-bottom:20px;
    font-size:24px;
    color:#0b5ed7;
}

.service-card p{
    line-height:1.8;
    color:#555;
}

.footer{
    background:#07142a;
    color:white;
    padding:60px 20px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
}

.footer h2,
.footer h3{
    margin-bottom:20px;
}

.footer p{
    max-width:400px;
    line-height:1.8;
}

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

.footer-links a{
    color:white;
    text-decoration:none;
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.15);
}

@media(max-width:900px){
    .nav-menu{
        gap:15px;
    }

    .hero-content h1{
        font-size:42px;
    }
}

@media(max-width:768px){
    .nav-container{
        flex-direction:column;
        gap:20px;
    }

    .nav-menu{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:34px;
    }

    .about-container{
        grid-template-columns:1fr;
    }
}

.page-hero{
    padding:120px 20px;
    background:
    linear-gradient(rgba(5,20,40,0.75), rgba(5,20,40,0.75)),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1974&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
}

.page-hero-content{
    max-width:900px;
    margin:auto;
}

.page-hero h1{
    font-size:56px;
    margin-bottom:20px;
}

.page-hero p{
    font-size:18px;
    line-height:1.8;
}

.projects-section{
    padding:100px 20px;
    background:#f5f7fb;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.project-card{
    background:white;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.35s;
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.project-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.project-content{
    padding:35px;
}

.project-content h3{
    font-size:28px;
    margin-bottom:20px;
    color:#07142a;
}

.project-content p{
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.project-btn{
    display:inline-block;
    padding:14px 28px;
    background:#0b5ed7;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:0.3s;
}

.project-btn:hover{
    background:#084298;
}

.documents-section{
    padding:100px 20px;
    background:#f5f7fb;
}

.documents-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.document-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    text-align:left;
    transition:0.3s;
}

.document-card:hover{
    transform:translateY(-8px);
}

.document-card span{
    display:inline-block;
    background:#00b4d8;
    color:white;
    padding:7px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.document-card h3{
    font-size:22px;
    color:#07142a;
    margin-bottom:15px;
}

.document-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.document-card a{
    color:#0b5ed7;
    text-decoration:none;
    font-weight:600;
}

.donate-section{
    padding:100px 20px;
    background:white;
}

.donate-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1.3fr 0.7fr;
    gap:50px;
    align-items:center;
}

.donate-section h2{
    font-size:42px;
    color:#07142a;
    margin-bottom:25px;
}

.donate-section p{
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}

.donate-info{
    margin-top:35px;
    padding:30px;
    background:#f5f7fb;
    border-left:5px solid #0b5ed7;
    border-radius:15px;
}

.donate-info h3{
    color:#07142a;
    margin-bottom:20px;
}

.donate-box{
    background:#07142a;
    color:white;
    padding:45px;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.donate-box h3{
    font-size:30px;
    margin-bottom:20px;
}

.donate-box p{
    color:rgba(255,255,255,0.85);
    margin-bottom:30px;
}

@media(max-width:768px){
    .donate-container{
        grid-template-columns:1fr;
    }
}

.contact-section{
    padding:100px 20px;
    background:#f5f7fb;
}

.contact-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info h2,
.contact-form h2{
    font-size:42px;
    color:#07142a;
    margin-bottom:25px;
}

.contact-info p{
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.contact-box{
    background:white;
    padding:25px;
    border-radius:18px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-box h3{
    color:#0b5ed7;
    margin-bottom:10px;
}

.contact-form{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-family:'Poppins', sans-serif;
    font-size:16px;
}

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

.contact-form button{
    padding:18px;
    background:#0b5ed7;
    color:white;
    border:none;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#084298;
}

@media(max-width:768px){

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

}

.sponsors-section{
    padding:100px 20px;
    background:white;
}

.sponsors-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:60px;
}

.sponsor-card{
    background:#f5f7fb;
    padding:40px 25px;
    border-radius:22px;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.sponsor-card:hover{
    transform:translateY(-8px);
    background:white;
}

.sponsor-card img{
    width:80px;
    height:80px;
    object-fit:contain;
    margin-bottom:25px;
}

.sponsor-card h3{
    color:#07142a;
    font-size:22px;
}

.menu-toggle{
    display:none;
    background:#0b5ed7;
    color:white;
    border:none;
    font-size:28px;
    padding:8px 14px;
    border-radius:8px;
    cursor:pointer;
}

@media(max-width:768px){

    .nav-container{
        flex-direction:row;
        justify-content:space-between;
        position:relative;
    }

    .menu-toggle{
        display:block;
    }

    .nav-menu{
        display:none;
        position:absolute;
        top:85px;
        left:20px;
        right:20px;
        background:white;
        flex-direction:column;
        gap:0;
        padding:20px;
        border-radius:16px;
        box-shadow:0 15px 35px rgba(0,0,0,0.15);
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu a{
        padding:14px;
        border-bottom:1px solid #eee;
    }

    .nav-menu a:last-child{
        border-bottom:none;
    }
}

.impact-section{
    padding:100px 20px;
    background:linear-gradient(135deg,#ffffff,#eef5ff);
}

.impact-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:0.8fr 1.2fr;
    gap:70px;
    align-items:center;
}

.impact-logo-box{
    background:white;
    padding:45px;
    border-radius:30px;
    box-shadow:0 20px 45px rgba(0,0,0,0.10);
    text-align:center;
    transition:0.3s;
}

.impact-logo-box:hover{
    transform:translateY(-10px);
}

.impact-logo-box img{
    max-width:320px;
    width:100%;
}

.section-label{
    display:inline-block;
    background:#dff7ff;
    color:#0b5ed7;
    padding:8px 18px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:20px;
}

.impact-content h2{
    font-size:44px;
    color:#07142a;
    line-height:1.2;
    margin-bottom:25px;
}

.impact-content p{
    color:#555;
    line-height:1.9;
    font-size:17px;
    margin-bottom:35px;
}

.impact-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:35px;
}

.impact-stats div{
    background:white;
    padding:22px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.07);
}

.impact-stats strong{
    display:block;
    font-size:30px;
    color:#0b5ed7;
    margin-bottom:8px;
}

.impact-stats span{
    color:#555;
    font-size:14px;
}

@media(max-width:768px){
    .impact-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .impact-stats{
        grid-template-columns:1fr;
    }

    .impact-content h2{
        font-size:34px;
    }
}