*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,sans-serif;
}

body{
    background:#f8fbff;
    color:#222;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:white;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo img{
    height:120px;
    width:auto;
    object-fit:cover;
    object-position:center;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#003c7e;
    font-weight:600;
}

.btn{
    background:#28a745;
    color:white;
    text-decoration:none;
    padding:12px 24px;
    border-radius:30px;
}

.hero{
    min-height:85vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    background:
    linear-gradient(rgba(0,50,90,.8),
    rgba(0,50,90,.8)),
    url('../assets/hero.jpg');

    background-size:cover;
    background-position:center;
}

.hero h1{
    font-size:4rem;
    color:white;
}

.hero p{
    color:white;
    max-width:800px;
    margin:20px auto;
    font-size:1.2rem;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-outline{
    border:2px solid white;
    color:white;
    text-decoration:none;
    padding:12px 24px;
    border-radius:30px;
}

.section{
    padding:100px 8%;
}

.container{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.section h2{
    color:#003c7e;
    margin-bottom:20px;
    font-size:2.5rem;
}

.mission-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    padding:80px 8%;
}

.mission-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
}

.mission-card i{
    font-size:45px;
    color:#28a745;
    margin-bottom:15px;
}

.campaigns{
    padding:100px 8%;
    background:white;
}

.campaigns h2{
    text-align:center;
    margin-bottom:50px;
}

.campaign-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.campaign-card{
    background:#f4f8fc;
    padding:30px;
    border-radius:20px;
    border-top:5px solid #28a745;
}

.card-btn{
    display:inline-block;
    margin-top:15px;
    background:#003c7e;
    color:white;
    padding:10px 20px;
    text-decoration:none;
    border-radius:30px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    padding:100px 8%;
}

.feature{
    text-align:center;
}

.feature i{
    font-size:50px;
    color:#28a745;
    margin-bottom:15px;
}

.events{
    background:#003c7e;
    color:white;
    padding:100px 8%;
    text-align:center;
}

.event-card{
    background:white;
    color:black;
    padding:25px;
    border-radius:15px;
    margin:20px auto;
    max-width:600px;
}

.donate{
    padding:100px 8%;
    text-align:center;
}

.btn-large{
    display:inline-block;
    margin-top:20px;
    background:#28a745;
    color:white;
    text-decoration:none;
    padding:18px 40px;
    border-radius:50px;
    font-size:1.1rem;
}

footer{
    background:#001d3d;
    color:white;
    text-align:center;
    padding:50px;
}

footer img{
    height:100px;
    margin-bottom:15px;
}

@media(max-width:900px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:2.5rem;
    }
}

.fundraising-hub{
    padding:100px 8%;
    background:#f5f9ff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.8rem;
    color:#003c7e;
    margin-bottom:15px;
}

.initiative-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.initiative-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.initiative-card:hover{
    transform:translateY(-10px);
}

.initiative-card i{
    font-size:50px;
    color:#28a745;
    margin-bottom:20px;
}

.initiative-card h3{
    color:#003c7e;
    margin-bottom:15px;
}

.initiative-card ul{
    margin:20px 0;
    padding-left:20px;
}

.initiative-card li{
    margin-bottom:10px;
}

.impact{
    background:#eaf7ed;
    color:#28a745;
    padding:12px;
    border-radius:10px;
    margin-bottom:20px;
    font-weight:600;
}

.voting-system{
    padding:100px 8%;
    background:#003c7e;
    color:white;
    text-align:center;
}

.vote-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    margin-top:50px;
}

.vote-card{
    background:white;
    color:#003c7e;
    padding:40px;
    border-radius:20px;
}

.vote-card h3{
    margin-bottom:15px;
}

.vote-card span{
    font-size:2rem;
    color:#28a745;
    font-weight:bold;
}

.impact-section{
    padding:100px 8%;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.impact-card{
    background:white;
    text-align:center;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.impact-card h3{
    color:#28a745;
    font-size:3rem;
    margin-bottom:10px;
}

.nomination-section{
    padding:100px 8%;
    background:linear-gradient(
        135deg,
        #003c7e,
        #0054b3
    );
    color:white;
    text-align:center;
}

.nomination-section h2{
    font-size:2.8rem;
    margin-bottom:20px;
}

.nomination-section p{
    max-width:700px;
    margin:15px auto;
    font-size:1.1rem;
    line-height:1.8;
}

.nomination-section .btn-large{
    margin-top:30px;
    background:#28a745;
    color:white;
    text-decoration:none;
    padding:18px 40px;
    border-radius:50px;
    display:inline-block;
    transition:.3s;
}

.nomination-section .btn-large:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.2);
}

.events-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}

.event-poster{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.event-poster img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.event-poster h3{
    color:#003c7e;
    padding:20px 20px 5px;
}

.event-poster p{
    padding:0 20px 20px;
    color:#666;
}