:root {
  --primary: #4D6EF2;
  --secondary: #F6A403;
  --dark: #1E293B;
  --light: #EEF1FE;
}

body {
  font-family: 'Nunito', sans-serif;
  color: #1E293B;
  background-color: #ffffff;
}

h1, h2, h3, h4, .poppins {
  font-family: 'Poppins', sans-serif;
}

.text-gradient-primary {
  background: linear-gradient(to right, #4D6EF2, #3B5BD9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #4D6EF2;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3d5ee0;
}

/* Animations (simple versions of Framer Motion) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
