/* Custom Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fade-in-up 0.8s ease-out forwards;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #4ade80, #86efac);
  bottom: 10%;
  left: 50%;
  animation-delay: 4s;
}

.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* FAQ Accordion */
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

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

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

::-webkit-scrollbar-thumb {
  background: #16a34a;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #15803d;
}
