.impact-card {
  background: #fff;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  margin: 0 auto 20px auto;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  padding: 20px;
}
.impact-card:hover {
  transform: translateY(-8px) scale(1.05);
}
.impact-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  animation: pulse 3s infinite;
}
.number {
  font-size: 22px;
  font-weight: bold;
  color: #222;
  margin-bottom: 5px;
  animation: bounce 2s infinite;
}
.title {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

/* Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Bounce Animation for Numbers */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
