/* Reset and Base Styles */
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-in;
}

.animate-slide-up {
  animation: slideUp 0.5s ease-out;
}

/* Custom Utilities */
.gradient-hero {
  background: linear-gradient(to bottom right, #1d4ed8, #4f46e5, #7c3aed);
}

.shadow-custom {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Link Styles */
a {
  text-decoration: none;
  color: inherit;
}

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