/* Custom Animations */

.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

.icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(22, 163, 74, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.modern-card:hover .icon-box {
  background-color: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

/* Pulse animation for CTA */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}
