.fade-up {
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.85s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zoom-image {
  animation: zoomIn 0.8s ease forwards;
}

@keyframes zoomIn {
  from {
    transform: scale(0.98);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.08);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
  }
}

.pulse {
  animation: pulseGlow 4s ease infinite;
}
