/* animations.css – Simple slide-in animation for sections */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to section elements */
.section {
  animation: slideIn 0.6s ease-out;
}
