body{
  font-family:'Poppins',sans-serif;
  background:#f8fafc;
  color:#0f172a;
}

/* ================= HERO ================= */
.project-hero{
  background:
    linear-gradient(120deg,rgba(0,0,0,.65),rgba(83, 171, 223, 0.9)),
    url("/img/Women-Empowerment.jpg") center/cover no-repeat;
  padding:130px 20px;
  text-align:center;
  color:#fff;
}
.project-hero h1{
  font-family:'Merriweather',serif;
  font-size:52px;
}
.project-hero p{
  max-width:820px;
  margin:16px auto 0;
  font-size:18px;
  opacity:.95;
}

/* ================= CONTAINER ================= */
.container{
  max-width:1200px;
  margin:auto;
  padding:90px 20px;
}

/* ================= TITLE ================= */
.section-title{
  text-align:center;
  margin-bottom:60px;
}
.section-title h2{
  font-family:'Merriweather',serif;
  font-size:38px;
}
.section-title span{
  display:block;
  width:90px;
  height:4px;
  background:linear-gradient(90deg,#4da7d1,#e76666);
  margin:18px auto;
  border-radius:10px;
}
.section-title p{
  max-width:850px;
  margin:auto;
  color:#475569;
}

/* ================= FILTER ================= */
.filter-tabs{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:50px;
}
.filter-tabs button{
  padding:10px 22px;
  border-radius:30px;
  border:1px solid #ddd;
  background:#fff;
  font-weight:500;
  transition:.3s;
}
.filter-tabs button.active,
.filter-tabs button:hover{
  background:linear-gradient(90deg,#61c5f3,#e45454);
  color:#fff;
  border:none;
}

/* ================= GRID ================= */
.project-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:35px;
}

/* ================= CARD ================= */
.project-card{
  background:#fff;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 20px 45px rgba(0,0,0,.1);
  transition:.4s;
}
.project-card:hover{
  transform:translateY(-10px);
}

/* IMAGE */
.project-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* CONTENT */
.project-content{
  padding:26px;
}
.project-tag{
  display:inline-block;
  background:#fff3e6;
  color:#46acd4;
  font-size:13px;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:10px;
}
.project-content h3{
  font-size:20px;
  font-weight:600;
  margin-bottom:10px;
}
.project-content p{
  color:#475569;
  line-height:1.6;
  font-size:14px;
}

/* FOOTER CARD */
.project-footer{
  margin-top:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.project-footer span{
  font-size:13px;
  color:#16a34a;
  font-weight:500;
}
.project-footer a{
  background:linear-gradient(90deg,#60bbdf,#e2586a);
  color:#fff;
  padding:8px 20px;
  border-radius:30px;
  font-size:14px;
}

/* CTA */
.project-cta{
  margin-top:100px;
  background:
    linear-gradient(120deg,rgba(0,0,0,.7),rgba(68, 173, 214, 0.9)),
    url("/img/picture.jpg") center/cover;
  padding:90px 20px;
  border-radius:36px;
  text-align:center;
  color:#fff;
}
.project-cta h2{
  font-family:'Merriweather',serif;
  font-size:38px;
}
.project-cta p{
  max-width:700px;
  margin:18px auto 28px;
}
.project-cta a{
  display:inline-block;
  background:#fff;
  color:#57aada;
  padding:16px 44px;
  border-radius:45px;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:640px){
  .project-hero h1{font-size:40px;}
}