body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo {
  font-weight: 600;
  font-size: 1.5em;
  color: #1E90FF;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hero {
  background: linear-gradient(135deg, #1E90FF, #6C63FF);
  color: #fff;
  padding: 100px 40px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.cta {
  background-color: #fff;
  color: #1E90FF;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.about, .projects, .impact, .contact {
  padding: 60px 40px;
  text-align: center;
}

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

.card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 1.2em;
  flex-wrap: wrap;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

.contact input, .contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

.contact button {
  background-color: #1E90FF;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.socials {
  margin-top: 20px;
}

.socials a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: 500;
}

footer {
  background-color: #1E90FF;
  color: #fff;
  text-align: center;
  padding: 20px;
}
