* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
}

.header {
  width: 100%;
  padding: 25px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.logo img {
  max-height: 430px;
  width: auto;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 8%;
  background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}

.hero-content {
  max-width: 900px;
}

.badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 18px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.hero h1 {
  font-size: 72px;
  margin-bottom: 25px;
  color: #0f172a;
  letter-spacing: 2px;
}

.hero p {
  font-size: 22px;
  color: #334155;
  margin-bottom: 35px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.section {
  padding: 90px 8%;
  background: #ffffff;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section h2,
.funding h2,
.partners h2 {
  font-size: 38px;
  margin-bottom: 30px;
  color: #0f172a;
  text-align: center;
}

.section p {
  font-size: 19px;
  color: #374151;
  margin-bottom: 20px;
  text-align: center;
}

.funding {
  padding: 90px 8%;
  background: #0f172a;
  color: #ffffff;
  text-align: center;
}

.funding h2 {
  color: #ffffff;
}

.funding-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.funding-logos img {
  max-height: 110px;
  max-width: 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
}

.partners {
  padding: 80px 8%;
  background: #f8fafc;
  text-align: center;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.partner-logos img {
  max-height: 75px;
  max-width: 180px;
}

/* .partner-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
} */

.footer {
  padding: 25px 8%;
  background: #020617;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 46px;
  }

  .hero p {
    font-size: 18px;
  }

  .section h2,
  .funding h2,
  .partners h2 {
    font-size: 30px;
  }

  .section p {
    font-size: 17px;
  }

  .funding-logos img {
    max-width: 220px;
  }
}