*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#fff;
color:#222;
padding-top:80px; /* same height as navbar */
}


.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#004aad;
z-index:999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
color:white;
font-weight:800;
font-size:22px;
}

.logo span{
color:#fff;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav a{
text-decoration:none;
color:white;
font-weight:500;
}




.full-banner{
width:100%;
margin:0;
padding:0;
}

.full-banner img{
width:100%;
height:auto;
display:block;
}




.hero{
height:100vh;
background-image:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url('https://patrickchikwanda.com/media/Chikwanda-MP-Banner.jpg');
background-position:center;
background-size:cover;
background-repeat:no-repeat;
display:flex;
align-items:center;
justify-content:center;
position:relative;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
text-align:center;
color:white;
max-width:700px;
padding:20px;
}

.hero h1{
font-size:60px;
font-weight:800;
}

.hero h2{
margin:15px 0;
}

.btn{
display:inline-block;
margin-top:20px;
padding:14px 35px;
background:#004aad;
color:white;
text-decoration:none;
border:none;
border-radius:5px;
cursor:pointer;
}

.stats{
padding:80px 0;
background:#f8f8f8;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.stat-box{
text-align:center;
}

.stat-box h3{
font-size:42px;
color:#004aad;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:40px;
color:#004aad;
}

.about,
.projects,
.contact{
padding:100px 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about img{
width:100%;
border-radius:10px;
}

.agenda{
padding:100px 0;
background:#f5f7fb;
}

.agenda-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.project-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.project img{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
}

.project-content{
padding:15px 0;
}



.social-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:20px;
}

.social-box{
padding:20px;
text-align:center;
border-radius:10px;
color:#fff;
font-weight:600;
text-decoration:none;
display:block;
transition:0.3s ease;
}

.social-box:hover{
transform:translateY(-5px);
}

/* Colors */
.facebook{ background:#1877f2; }
.instagram{ background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4); }
.whatsapp{ background:#25D366; }
.email{ background:#004aad; }




footer{
background:#004aad;
color:white;
text-align:center;
padding:30px;
}

.menu-btn{
display:none;
color:white;
font-size:30px;
cursor:pointer;
}

@media(max-width:768px){

.about-grid{
grid-template-columns:1fr;
}

nav{
display:none;
}

.menu-btn{
display:block;
}

.hero h1{
font-size:42px;
}

}