/* ===== Projects Page Styling ===== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8fff9;
  color: #333;
  margin: 0;
  padding: 0;
}

.projects-section {
  padding: 100px 20px 80px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #006400;
  margin-bottom: 15px;
}

.section-subtitle {
  max-width: 750px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.project-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 100, 0, 0.08);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 150, 80, 0.15);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-content {
  padding: 25px;
  text-align: left;
}

.project-content h3 {
  color: #006400;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.project-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.project-status {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.project-status.ongoing {
  background: #00a86b;
}

.project-status.completed {
  background: #4caf50;
}

.project-status.planned {
  background: #8bc34a;
}

/* Footer styling (same as focus page) */
.site-footer {
  background: #004d1a;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-logo {
  width: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #b5f5c9;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #00ff99;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer-contact i {
  margin-right: 8px;
  color: #00ff99;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.9rem;
}

.project-icon {
  width: 90px;
  height: 90px;
  margin: 25px auto 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #198754, #28a745);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-icon i {
  font-size: 38px;
  color: #ffffff;
}

.project-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.project-content {
  padding: 20px;
  text-align: center;
}

/* === SDG COLOR THEMES === */

.sdg-1  { background: #e5243b; }   /* No Poverty */
.sdg-2  { background: #dda63a; }   /* Zero Hunger */
.sdg-3  { background: #4c9f38; }   /* Good Health */
.sdg-4  { background: #c5192d; }   /* Quality Education */
.sdg-5  { background: #ff3a21; }   /* Gender Equality */
.sdg-6  { background: #26bde2; }   /* Clean Water */
.sdg-7  { background: #fcc30b; }   /* Clean Energy */
.sdg-8  { background: #a21942; }   /* Economic Growth */
.sdg-9  { background: #fd6925; }   /* Innovation */
.sdg-11 { background: #fd9d24; }   /* Sustainable Cities */
.sdg-12 { background: #bf8b2e; }   /* Responsible Consumption */
.sdg-13 { background: #3f7e44; }   /* Climate Action */
.sdg-17 { background: #19486a; }   /* Partnerships */

/* Icon container (already exists, just reinforcing) */
.project-icon {
  width: 90px;
  height: 90px;
  margin: 25px auto 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-icon i {
  font-size: 38px;
  color: #ffffff;
}
