/* Base */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  /* background: #fff; */
  background-image: linear-gradient(to bottom, #bce6e1, #dbeeec, #c1eaff, #bce6e1, #dbeeec, #c1eaff);
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* HERO */
.hero {
  padding: 60px 20px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.hero-buttons {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-images img {
  border-radius: 15px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  background: #0abe37;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
}
.badge.secondary {
  background: #eee;
  color: #333;
}

/* IMPACT BAR */
.impact-bar {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* FEATURES */
.features .card {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 15px;
  background: #fff;
}

/* STORIES */
.stories {
  background: #f9f9f9;
  padding: 60px 20px;
}
.stories h2 {
  margin-bottom: 10px;
}
.video-card {
  position: relative;
}
.video-card img {
  width: 100%;
  border-radius: 15px;
}
.play-btn {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255,255,255,0.9);
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
}
.more-videos {
  margin-top: 20px;
  text-align: center;
}

/* WHY */
.why {
  padding: 60px 20px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.why-images img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 10px;
  object-fit: cover;
}

/* TESTIMONIALS */
.testimonials {
  background: #f9f9f9;
  padding: 60px 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.testimonials .card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #eee;
}

/* MISCELLANEOUS */
.spanning {
  display:flex;
  flex-direction: column;
  justify-content: center;
}



/* PARTNERS */
.partners {
  padding: 60px 20px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.logos div {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  font-weight: bold;
}
.partner-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #6366f1, #2f11db69);
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* FOOTER */
.footer {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: gray;
  background: #fafafa;
}

/* BUTTONS */
.btn {
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s ease;
}
.btn-primary {
  background: #4f46e5;
  color: white;
}
.btn-outline {
  border: 2px solid #4f46e5;
  color: #4f46e5;
  background: transparent;
}
.btn-light {
  background: white;
  color: #4f46e5;
}
.btn:hover {
  opacity: 0.9;
}

/* ========================= */
/* RESPONSIVE MEDIA QUERIES */
/* ========================= */

@media (max-width: 992px) {
  .hero-grid,
  .why-grid,
  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .hero {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-images {
    grid-template-columns: 1fr 1fr;
  }
  .why-images {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-images {
    grid-template-columns: 1fr;
  }
  .why-images {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .cta h2 {
    font-size: 1.5rem;
  }
}
