/* styles.css */

body {
  scroll-behavior: smooth;
}

.service-card {
  padding: 1rem;
  background-color: #1f2937; /* Tailwind bg-gray-800 */
  border: 1px solid #374151; /* Tailwind border-gray-700 */
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
}

.blur-in {
  opacity: 0;
  transform: translateY(10px);
  animation: blurFadeIn 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }
.delay-7 { animation-delay: 1.4s; }

@keyframes blurFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}