/* Custom CSS Stylesheet for Hostinger Deployment */

/* Global Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Animations and Transitions */
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Scroll Mt class for sections targeting offsets */
.scroll-mt-20 {
  scroll-margin-top: 5rem;
}

/* Custom rounded spacing variables matching tailwind classes if needed */
.rounded-2\.5xl {
  border-radius: 1.25rem;
}

.p-6\.5 {
  padding: 1.625rem;
}

.py-4\.5 {
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}

/* Modal visual active transition support */
.fade-in {
  animation: fadeIn 0.2s ease-out forwards;
}

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

@keyframes zoomIn {
  from {
    transform: scale(0.95);
  }
  to {
    transform: scale(1);
  }
}

/* Custom scrollbars inside the modal elements */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Custom CSS slow motion timings */
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animate-spin-slow {
  animation: spinSlow 12s linear infinite;
}

@keyframes pulseSlow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.94;
    transform: scale(0.99);
  }
}
.animate-pulse-slow {
  animation: pulseSlow 3.5s ease-in-out infinite;
}

