/* SECTION */
.impact {
  background: linear-gradient(90deg, #0b1c2d 0%, #1b2a55 100%);
  padding: 90px 0;
  overflow: hidden;
}

.impact-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
}

/* GRID */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  text-align: center;
}

/* ITEM */
.impact-item {
  transition: 0.4s ease;
}

.impact-item:hover {
  transform: translateY(-10px);
}

/* ICON */
.impact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(27,167,167,0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #1ba7a7;
  animation: glowPulse 3s infinite ease-in-out;
}

/* Floating effect */
.float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Glow pulse */
@keyframes glowPulse {
  0% { box-shadow: 0 0 0px rgba(27,167,167,0.4); }
  50% { box-shadow: 0 0 20px rgba(27,167,167,0.6); }
  100% { box-shadow: 0 0 0px rgba(27,167,167,0.4); }
}

.impact-item h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.impact-item p {
  color: #cbd5e1;
  font-size: 14px;
}

/* FOOTER */
.impact-footer {
  margin-top: 60px;
  font-size: 18px;
  font-weight: 600;
  color: #1ba7a7;
  text-align: center;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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