*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f5f5f5;
color:#333;
}

header{
background:#003366;
color:white;
padding:20px;
}

.container{
width:90%;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

nav a{
color:white;
text-decoration:none;
margin:10px;
font-weight:bold;
}

nav a:hover{
color:gold;
}

.hero{
height:500px;
background:url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1600&q=80") center/cover;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
}

.hero h2{
font-size:50px;
margin-bottom:20px;
text-shadow:2px 2px 5px black;
}

.hero p{
font-size:22px;
margin-bottom:20px;
}

.hero a{
background:#ff5722;
padding:15px 35px;
color:white;
text-decoration:none;
border-radius:30px;
font-size:20px;
}

.about{
padding:70px;
text-align:center;
background:white;
}

.about h2{
font-size:38px;
margin-bottom:20px;
color:#003366;
}

.about p{
max-width:900px;
margin:auto;
font-size:20px;
}

footer{
background:#003366;
color:white;
text-align:center;
padding:20px;
}
/* Vision & Mission */

.vision,
.mission{
    width:80%;
    margin:60px auto;
    text-align:center;
    background:#f8f9fa;
    padding:40px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.vision h2,
.mission h2{
    color:#003366;
    font-size:38px;
    margin-bottom:20px;
}

.vision p,
.mission p{
    font-size:20px;
    line-height:1.8;
    color:#444;
}
/* Programs */

.programs{
    width:90%;
    margin:80px auto;
    text-align:center;
}

.programs h2{
    font-size:42px;
    color:#003366;
    margin-bottom:40px;
}

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

.card{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.10);
    transition:.3s;
}

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

.card h3{
    color:#003366;
    margin-bottom:15px;
}

.card p{
    line-height:1.7;
    color:#555;
}
.about ul{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.about li{
    padding:8px;
    font-size:22px;
}

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

.card{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,.15);
    text-align:left;
}

.card h3{
    color:#003366;
    margin-bottom:10px;
}

.card p{
    line-height:1.6;
}
/* Impact Section */

.impact{
padding:70px 10%;
background:#f5f9ff;
text-align:center;
}

.impact h2{
font-size:42px;
color:#003366;
margin-bottom:40px;
}

.impact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.impact-box{
background:white;
padding:35px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

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

.impact-box h3{
font-size:45px;
color:#ff6600;
margin-bottom:10px;
}

.impact-box p{
font-size:20px;
color:#444;
}
