.hero-gradient {
  background: linear-gradient(135deg, #2B6CB0 0%, #4299E1 100%);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.pulse-animation {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(1);
  }
}
