html{
    scroll-behavior: smooth;
    stop-opacity: 0px;

}
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer utilities {
  .text-gradient {
    background: linear-gradient(90deg, #2563eb, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradient-shift 8s ease infinite;
  }

  .card-hover {
    transition: all 0.3s ease;
  }

  .card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  @keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .tech-badge {
    transition: all 0.3s ease;
  }

  .tech-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .animate-delay-100 { animation-delay: 0.1s; }
  .animate-delay-200 { animation-delay: 0.2s; }
  .animate-delay-300 { animation-delay: 0.3s; }
  .animate-delay-400 { animation-delay: 0.4s; }

  .section-divider {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #8b5cf6, #06b6d4);
    margin: 5rem auto;
    width: 80%;
    max-width: 600px;
  }

  .section-divider::before,
  .section-divider::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #2563eb;
    border-radius: 50%;
    top: -5px;
  }

  .section-divider::after {
    right: 0;
    background: #06b6d4;
  }

  .section-divider::before {
    left: 0;
  }
}
