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

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

header{
    background:#003366;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:90px;
    height:90px;
    object-fit:contain;
}

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

nav a:hover{
    color:#FFD700;
}

.hero{
    background:linear-gradient(rgba(0,51,102,.7),rgba(0,51,102,.7));
    color:white;
    text-align:center;
    padding:100px 20px;
}

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

.hero p{
    font-size:20px;
    margin-bottom:30px;
}
.btn{
    background:#FFC107;
    color:#002B5B;
    padding:15px 30px;
    text-decoration:none;
    border-radius:8px;
    font-size:18px;
    font-weight:bold;
    display:inline-block;
    margin:10px;
    transition:.3s;
}

.btn:hover{
    background:#ffffff;
    color:#002B5B;
}

.btn:hover{
    background:white;
}

.about,.programs{
    padding:60px 20px;
    text-align:center;
}

.programs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.card{
    background:white;
    width:250px;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    font-weight:bold;
}

footer{
    background:#003366;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}
/* ===== Hero Section ===== */

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:60px 40px;
    background:#f5f7fa;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:42px;
    color:#003366;
    margin-bottom:20px;
}

.hero-text p{
    font-size:20px;
    color:#555;
    line-height:1.6;
    margin-bottom:30px;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:500px;
    height:auto;
    border-radius:12px;
    display:block;
    margin:auto;
}

.btn{
    display:inline-block;
    padding:14px 28px;
    background:#0b7a3b;
    color:white;
    text-decoration:none;
    border-radius:6px;
    margin:10px;
    font-weight:bold;
}

.btn:hover{
    background:#095d2d;
}

@media (max-width:768px){
    .hero{
        flex-direction:column;
        text-align:center;
        padding:40px 20px;
    }

    .hero-text h1{
        font-size:32px;
    }

    .hero-text p{
        font-size:18px;
    }
}
/* ===== About Section ===== */

.about{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:60px 40px;
    background:white;
}

.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    width:100%;
    max-width:450px;
    border-radius:12px;
    display:block;
    margin:auto;
}

.about-content{
    flex:1;
}

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

.about-content p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

@media (max-width:768px){

    .about{
        flex-direction:column;
        text-align:center;
        padding:40px 20px;
    }

    .about-content h2{
        font-size:30px;
    }

}
/* ===== Programs Section ===== */

.programs{
    padding:60px 20px;
    background:#f4f8fc;
    text-align:center;
}

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

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

.program-card{
    background:white;
    border-radius:15px;
    padding:30px 20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.program-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.icon{
    font-size:50px;
    margin-bottom:15px;
}

.program-card h3{
    color:#003366;
    margin-bottom:15px;
    font-size:24px;
}

.program-card p{
    color:#555;
    line-height:1.6;
}
/* ===== Impact Section ===== */

.impact{
    background:#003366;
    color:white;
    padding:70px 20px;
    text-align:center;
}

.impact h2{
    font-size:36px;
    margin-bottom:40px;
}

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

.impact-card{
    background:white;
    color:#003366;
    padding:30px 20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    transition:0.3s;
}

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

.impact-card h3{
    font-size:40px;
    color:#0b7a3b;
    margin-bottom:10px;
}

.impact-card p{
    font-size:18px;
    font-weight:bold;
}
/* ===== News Section ===== */

.news{
    padding:70px 20px;
    background:#ffffff;
    text-align:center;
}

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

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

.news-card{
    background:#f8f9fa;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    transition:0.3s;
}

.news-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

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

.news-card h3{
    color:#003366;
    font-size:24px;
    margin:20px 15px 10px;
}

.news-card p{
    color:#555;
    padding:0 15px 20px;
    line-height:1.6;
}
/* ===== Testimonials ===== */

.testimonials{
    padding:70px 20px;
    background:#f4f8fc;
    text-align:center;
}

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

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

.testimonial-card{
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.testimonial-card p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    font-style:italic;
}

.testimonial-card h4{
    margin-top:20px;
    color:#0b7a3b;
    font-size:20px;
}
/* ===== Volunteer Page ===== */

.page-banner{
    background:#003366;
    color:white;
    text-align:center;
    padding:70px 20px;
}

.page-banner h1{
    font-size:42px;
    margin-bottom:15px;
}

.page-banner p{
    font-size:20px;
}

.volunteer-form{
    max-width:800px;
    margin:60px auto;
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.volunteer-form h2{
    text-align:center;
    color:#003366;
    margin-bottom:30px;
}

.volunteer-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

.volunteer-form textarea{
    resize:vertical;
}

.volunteer-form button{
    border:none;
    cursor:pointer;
    font-size:18px;
}
/* ===== Donate Page ===== */

.donation{
    max-width:800px;
    margin:60px auto;
    background:#ffffff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.donation h2{
    text-align:center;
    color:#003366;
    margin-bottom:30px;
}

.donation form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.donation input,
.donation select,
.donation textarea{
    width:100%;
    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

.donation textarea{
    resize:vertical;
    min-height:120px;
}

.donation button{
    border:none;
    cursor:pointer;
    font-size:18px;
}
/* ===== Admin Login ===== */

.admin-login{
    max-width:450px;
    margin:70px auto;
    background:#ffffff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
    text-align:center;
}

.admin-login h2{
    color:#003366;
    margin-bottom:30px;
}

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

.admin-login input{
    width:100%;
    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

.admin-login button{
    border:none;
    cursor:pointer;
    font-size:18px;
}
/* ===== Website Settings ===== */

.settings-form{
    max-width:800px;
    margin:30px auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.settings-form label{
    font-weight:bold;
    color:#003366;
}

.settings-form input,
.settings-form textarea{
    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
    width:100%;
}

.settings-form input[type=file]{
    padding:10px;
}
/* ===== Professional Header Upgrade ===== */

header{
position:sticky;
top:0;
z-index:1000;
background:#003366;
padding:12px 30px;
box-shadow:0 4px 15px rgba(0,0,0,.15);
}

.logo img{
width:70px;
height:70px;
transition:.3s;
}

.logo img:hover{
transform:rotate(5deg) scale(1.08);
}

nav{
display:flex;
align-items:center;
gap:18px;
flex-wrap:wrap;
}

nav a{
padding:10px 14px;
border-radius:6px;
transition:.3s;
font-size:16px;
}

nav a:hover{
background:#0b7a3b;
color:white;
}

@media(max-width:768px){

header{
flex-direction:column;
padding:15px;
}

nav{
justify-content:center;
margin-top:15px;
}

}
/* ===== Professional Hero Upgrade ===== */

.hero{

min-height:85vh;

display:flex;

align-items:center;

justify-content:space-between;

padding:80px 60px;

background:linear-gradient(135deg,#003366,#0b7a3b);

color:white;

}

.hero-text{

flex:1;

animation:fadeLeft 1s ease;

}

.hero-text h1{

font-size:52px;

line-height:1.2;

margin-bottom:25px;

color:white;

}

.hero-text p{

font-size:22px;

line-height:1.8;

margin-bottom:35px;

color:#f5f5f5;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.hero-image{

flex:1;

text-align:center;

animation:fadeRight 1s ease;

}

.hero-image img{

max-width:500px;

width:100%;

border-radius:18px;

box-shadow:0 20px 40px rgba(0,0,0,.3);

}

@keyframes fadeLeft{

from{

opacity:0;

transform:translateX(-50px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes fadeRight{

from{

opacity:0;

transform:translateX(50px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@media(max-width:768px){

.hero{

flex-direction:column;

text-align:center;

padding:50px 20px;

}

.hero-text h1{

font-size:36px;

}

.hero-text p{

font-size:18px;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

margin-top:30px;

}

}
/* ===== Premium Programs Section ===== */

.programs{
background:linear-gradient(to bottom,#f8fbff,#eef7ff);
padding:80px 30px;
}

.programs h2{
font-size:42px;
text-align:center;
margin-bottom:50px;
color:#003366;
position:relative;
}

.programs h2::after{
content:"";
display:block;
width:80px;
height:4px;
background:#0b7a3b;
margin:15px auto 0;
border-radius:10px;
}

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

.program-card{
background:#fff;
border-radius:18px;
padding:35px 25px;
text-align:center;
transition:all .35s ease;
border-top:5px solid #0b7a3b;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.program-card:hover{
transform:translateY(-10px);
box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.program-card .icon{
font-size:60px;
margin-bottom:20px;
}

.program-card h3{
font-size:24px;
color:#003366;
margin-bottom:15px;
}

.program-card p{
font-size:17px;
line-height:1.7;
color:#555;
}

@media(max-width:768px){

.programs{
padding:60px 20px;
}

.programs h2{
font-size:32px;
}

.program-card{
padding:25px 20px;
}

}
/* ===== Premium Impact Section ===== */

.impact{
background:#003366;
padding:80px 30px;
color:white;
}

.impact h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
color:white;
}

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

.impact-card{

background:white;

color:#003366;

padding:35px;

text-align:center;

border-radius:18px;

transition:.35s;

box-shadow:0 10px 25px rgba(0,0,0,.18);

}

.impact-card:hover{

transform:translateY(-10px);

background:#0b7a3b;

color:white;

}

.impact-card h3{

font-size:48px;

margin-bottom:10px;

font-weight:bold;

}

.impact-card p{

font-size:20px;

}

@media(max-width:768px){

.impact{

padding:60px 20px;

}

.impact h2{

font-size:32px;

}

.impact-card h3{

font-size:36px;

}

.impact-card p{

font-size:18px;

}

}
