/* Custom Animations and Styles */

/* Fade in animations */
.fade-in {
  animation: fadeIn 0.8s ease-in;
}

.fade-in-delayed {
  animation: fadeIn 0.8s ease-in 0.3s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating note icons animation */
.note-icon {
  position: absolute;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    opacity: 0.1;
    transform: translateY(0) translateX(0);
  }
  25% {
    opacity: 0.3;
    transform: translateY(-100px) translateX(50px);
  }
  50% {
    opacity: 0.2;
    transform: translateY(-200px) translateX(-30px);
  }
  75% {
    opacity: 0.3;
    transform: translateY(-300px) translateX(70px);
  }
}

/* Floating cards animation */
.float-card {
  animation: floatCard 3s ease-in-out infinite;
}

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

/* CTA Button pulse effect */
.cta-button {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 10px 25px rgba(126, 211, 33, 0.3);
  }
  50% {
    box-shadow: 0 15px 35px rgba(126, 211, 33, 0.5);
  }
}

/* Scroll reveal animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Feature card hover effects */
.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonial card effects */
.testimonial-card {
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Pricing card effects */
.pricing-card {
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #357ABD;
}