body {
  font-family: 'Inter', sans-serif;
}
html {
  scroll-behavior: smooth;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Animation Classes for JS Reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-gradient {
  background: linear-gradient(to right, #1e3a8a, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}