* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #1f2233;
  line-height: 1.7;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1f2233;
}

.logo img {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #1f2233;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active-link {
  color: #0b7c66;
  border-bottom: 2px solid #f04f2b;
  padding-bottom: 6px;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #fff7df 0%, #ffffff 48%, #f8dfb6 100%);
}

.page-hero {
  min-height: 60vh;
}

.hero-content {
  max-width: 950px;
}

.eyebrow {
  display: inline-block;
  background: #d8f3e6;
  color: #116149;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 68px;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 1000px;
  color: #1f2233;
}

.hero p {
  font-size: 22px;
  max-width: 760px;
  color: #4c4c4c;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn,
.btn-outline {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.btn {
  background: #0b7c66;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #095f50;
}

.btn-outline {
  border: 2px solid #0b7c66;
  color: #0b7c66;
}

.btn-outline:hover {
  background: #0b7c66;
  color: #ffffff;
}

.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
}

.section h1,
.section h2 {
  font-size: 52px;
  margin-bottom: 24px;
  line-height: 1.1;
  color: #1f2233;
}

.section p {
  font-size: 20px;
  color: #4c4c4c;
  max-width: 900px;
  margin-bottom: 20px;
}

.section.light {
  background: #fff7df;
  max-width: none;
}

.section.light > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.values-grid,
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.value-card,
.program-card,
.contact-card,
.step-card,
.impact-card,
.founder-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.value-card:hover,
.program-card:hover,
.step-card:hover,
.impact-card:hover {
  transform: translateY(-4px);
  border-color: #f4b04f;
}

.value-card h3,
.program-card h3,
.contact-card h3,
.step-card h3 {
  font-size: 30px;
  margin-bottom: 16px;
  color: #1f2233;
}

.program-card p,
.value-card p,
.step-card p,
.impact-card p,
.contact-card p {
  color: #555555;
}

.program-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fdf1df;
  color: #7a350f;
  font-size: 14px;
  font-weight: 700;
}

.social-section {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  color: #0b7c66;
  font-weight: 700;
  font-size: 18px;
}

.quote {
  margin-top: 34px;
  padding: 24px 28px;
  border-left: 4px solid #2fb58e;
  color: #1f2233;
  font-size: 22px;
  font-style: italic;
  max-width: 900px;
  background: #fff7df;
  border-radius: 12px;
}

.timeline {
  margin-top: 45px;
  border-left: 2px solid #2fb58e;
  padding-left: 28px;
  max-width: 900px;
}

.timeline-item {
  margin-bottom: 34px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #2fb58e;
  border-radius: 50%;
}

.timeline-item span {
  display: block;
  color: #0b7c66;
  font-weight: 700;
  margin-bottom: 10px;
}

.founder-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  max-width: 1000px;
  margin-top: 36px;
}

.founder-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #eee9ff;
  color: #3e2c7d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
}

.founder-card h3 {
  font-size: 30px;
  margin-bottom: 8px;
  color: #1f2233;
}

.founder-title {
  color: #0b7c66 !important;
  font-weight: 700;
  margin-bottom: 22px !important;
}

.steps-grid,
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.step-card span {
  display: inline-block;
  color: #f04f2b;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

.impact-card h3 {
  font-size: 54px;
  color: #0b7c66;
  margin-bottom: 10px;
}

.card-link {
  display: inline-block;
  margin-top: 22px;
  color: #0b7c66;
  font-weight: 700;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

.contact-hero {
  padding: 120px 40px 70px;
  background:
    radial-gradient(circle at 18% 18%, rgba(11, 124, 102, 0.08), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(244, 176, 79, 0.14), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(240, 79, 43, 0.06), transparent 24%),
    #ffffff;
  min-height: 100vh;
  text-align: center;
}

.contact-hero h1 {
  font-size: 72px;
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #1f2233;
}

.contact-intro {
  max-width: 760px;
  margin: 0 auto 60px;
  font-size: 20px;
  color: #555555;
}

.contact-form {
  max-width: 1300px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #dddddd;
  font-size: 18px;
  background: #ffffff;
  color: #1f2233;
  outline: none;
  font-family: Arial, sans-serif;
}

.contact-form textarea {
  min-height: 260px;
  resize: vertical;
  margin-bottom: 28px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0b7c66;
  box-shadow: 0 0 0 4px rgba(11, 124, 102, 0.12);
}

.contact-form .btn {
  font-size: 18px;
}

.contact-details {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 70px;
}

.contact-card {
  min-width: 320px;
  text-align: left;
}

.contact-card p {
  color: #555555;
}

footer {
  padding: 40px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  color: #555555;
}

@media (max-width: 900px) {
  .steps-grid,
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 60px 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .section {
    padding: 70px 24px;
  }

  .section h1,
  .section h2 {
    font-size: 36px;
  }

  .values-grid,
  .program-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 46px;
  }

  .contact-hero {
    padding: 80px 24px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .steps-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    padding: 28px;
  }
}

.animated-map-bg {
  position: relative;
  overflow: hidden;
}

.animated-map-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(11, 124, 102, 0.12) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.18;
  mask-image:
    linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  animation: mapDrift 22s linear infinite;
  pointer-events: none;
}

.animated-map-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(11, 124, 102, 0.08), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(244, 176, 79, 0.14), transparent 28%),
    radial-gradient(circle at 50% 82%, rgba(240, 79, 43, 0.06), transparent 25%);
  pointer-events: none;
}

.contact-hero > * {
  position: relative;
  z-index: 1;
}

@keyframes mapDrift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 220px 80px;
  }
}

.social-icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.25s;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.04);
}

.instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 78%, #4f5bd5 100%);
}

.linkedin {
  background: #0a66c2;
}

.facebook {
  background: #1877f2;
}

.x-twitter {
  background: #000000;
}