/* 0036 Custom Styles - Coral Pink Theme */

@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-bounce-slow {
  animation: bounce-slow 3s ease-in-out infinite;
}

/* FAQ Accordion */
.faq-toggle.active i {
  transform: rotate(180deg);
}

/* Counter animation */
.counter {
  font-variant-numeric: tabular-nums;
}

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

/* Custom shadows */
.shadow-coral {
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.12);
}

/* Navbar scroll effect */
#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Hover lift */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.15);
}
