/* Lightweight animations to replace animate.css and aos.css */

/* Fade in animations */

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Bounce hover effect */

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Apply animations */

[data-aos="fade-in"] {
  animation: fadeIn 0.8s ease-in-out;
}

[data-aos="fade-left"] {
  animation: fadeInLeft 0.8s ease-in-out;
}

[data-aos="fade-right"] {
  animation: fadeInRight 0.8s ease-in-out;
}

/* Hover animations for interactive elements */

[data-bss-hover-animate="bounce"]:hover {
  animation: bounce 0.6s ease-in-out;
  cursor: pointer;
}

/* Smooth transitions for buttons */

.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Smooth scroll behavior */

html {
  scroll-behavior: smooth;
}

