/* ==========================================================================
   Dreamsoft Group KZ - Animations Stylesheet (animations.css)
   ========================================================================== */

/* Fade-in & Slide-up Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 116, 204, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 116, 204, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 116, 204, 0);
  }
}

/* Modal Pop In */
@keyframes modalPopIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.modal-dialog {
  animation: modalPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card hover animation enhancements */
.service-card,
.product-card,
.advantage-card,
.review-card {
  will-change: transform, box-shadow;
}
