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

body {
  background-color: #0f172a;
  /* color: #cbd5e1;   */
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 60px 20px;
  background: #dbe9f8;
}

/* ===== ABOUT PROJECT ===== */
.about-project {
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}

.about-project h1 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.about-project p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ===== MISSION ===== */
.mission-container {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 60px;
  align-items: center;
}

.mission-image img {
  width: 250px;
  border-radius: 55px;
}

.mission-text h2 {
  margin-top: 10px;
}

.mission-text p {
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services-section {
  text-align: center;
  margin-bottom: 60px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: #bad9f3;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.service-btn {
  background: linear-gradient(135deg, #1E88E5, #1565C0);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
  align-self: center;
}

.service-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.28);
}
.values-section{
text-align:center;
margin-bottom:60px;
}

.values-section ul{
list-style:none;
margin-top:20px;
}

.values-section li{
background:#bad9f3;
padding:12px;
margin:10px auto;
border-radius:10px;
max-width:500px;
} 

/* ===== IMPACT ===== */
.impact-section {
  text-align: center;
  margin-bottom: 60px;
}

.impact-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.impact-card {
  background: #bad9f3;
  padding: 20px;
  border-radius: 15px;
}

.impact-card h3 {
  font-size: 1.8rem;
}

/* ===== WHY ===== */
.why-section {
  text-align: center;
  margin-bottom: 60px;
}

.why-section ul {
  list-style: none;
  padding: 0;
}

.why-section li {
  margin: 10px 0;
}

/* ===== TEAM ===== */
.team-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-member {
  background: #bad9f3;
  padding: 20px;
  border-radius: 15px;
}

.team-member img {
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
  }

  .services-container,
  .impact-container,
  .team-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .services-container,
  .impact-container,
  .team-container {
    grid-template-columns: 1fr;
  }
}