/* ============================================
   GLOBAL FONT FAMILY
   ============================================ */
* {
  font-family: 'Inter', sans-serif;
}

/* ============================================
   ANIMATED SHIMMER TEXT
   ============================================ */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.animated-shimmer-text {
  background: linear-gradient(
    to right,
    #60a5fa 0%,
    #22d3ee 25%,
    #818cf8 50%,
    #22d3ee 75%,
    #60a5fa 100%
  );
  background-size: 1000px 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  display: inline-block;
}

/* ============================================
   CUSTOM ANIMATIONS
   ============================================ */
@keyframes spark {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.animate-spark {
  animation: spark 3s ease-in-out infinite;
}

/* ============================================
   SLIDER ANIMATIONS
   ============================================ */
[data-slider] {
  position: relative;
  min-height: 600px;
  width: 100%;
}

.service-slide {
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  filter: blur(6px);
  transition: all 400ms ease;
  pointer-events: none;
  position: absolute;
  inset: 0;
  visibility: hidden;
  width: 100%;
}

.service-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
  position: relative;
  visibility: visible;
  width: 100%;
}

/* ============================================
   PAGINATION DOTS
   ============================================ */
[data-dots] button {
  cursor: pointer;
  transition: all 300ms ease;
  height: 8px;
  border-radius: 9999px;
}

[data-dots] button.active {
  width: 32px;
  background-color: #4f46e5;
}

[data-dots] button:not(.active) {
  width: 8px;
  background-color: #cbd5e1;
}

/* ============================================
   SMOOTH SCROLLING
   ============================================ */
html {
  scroll-behavior: smooth;
}

/* ============================================
   GENERAL UTILITIES
   ============================================ */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

/* Disable default button styles for custom buttons */
button:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

