/* Scroll Animation Styles */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

.animate-on-scroll.delay-5 {
  transition-delay: 0.5s;
}

.animate-on-scroll.delay-6 {
  transition-delay: 0.6s;
}

/* Professional Header Animation - Subtle & Clean */
.site-header {
  animation: headerFadeIn 0.6s ease-out;
}

@keyframes headerFadeIn {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Removed conflicting navbar styles - now handled in header.html */

/* Special animation for section titles */
.section-title.animate-on-scroll {
  transform: translateY(20px);
}

/* Stagger animation for service cards */
.service-card.animate-on-scroll {
  transform: translateY(40px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card.animate-on-scroll.animate-in {
  transform: translateY(0) scale(1);
}

/* Contact cards animation */
.contact-option.animate-on-scroll {
  transform: translateY(30px) scale(0.98);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-option.animate-on-scroll.animate-in {
  transform: translateY(0) scale(1);
}

/* Hero Animation Styles */
.hero-animate {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-animate.delay-1 {
  animation-delay: 0.2s;
}

.hero-animate.delay-2 {
  animation-delay: 0.4s;
}

.hero-animate.delay-3 {
  animation-delay: 0.6s;
}

.hero-animate.delay-4 {
  animation-delay: 0.8s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Special logo animation */
.logo-animate {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  animation: logoEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes logoEntrance {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Tagline special animation */
.tagline-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: taglineSlide 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

@keyframes taglineSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons animate with a slight bounce */
.buttons-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: buttonsEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards;
}

@keyframes buttonsEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero scroll fade effect */
.hero-content {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Generic content animations for any page */
.page-header.animate-on-scroll {
  transform: translateY(30px);
}

.content-section.animate-on-scroll {
  transform: translateY(25px);
}

.card.animate-on-scroll {
  transform: translateY(35px) scale(0.97);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.animate-on-scroll.animate-in {
  transform: translateY(0) scale(1);
}

.list-item.animate-on-scroll {
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.list-item.animate-on-scroll.animate-in {
  transform: translateX(0);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    transition: opacity 0.3s ease;
    transform: none;
  }
  
  .animate-on-scroll.animate-in {
    transform: none;
  }
  
  .hero-animate, .logo-animate, .tagline-animate, .buttons-animate {
    opacity: 1;
    transform: none;
    animation: none;
  }
  
  .hero-content {
    transition: none;
  }
  
  .site-header {
    animation: none;
  }
} 