/* Custom styles for front page */

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

.animate-fadeIn {
  animation: fadeIn 1s ease-out forwards;
}

.delay-100 {
  animation-delay: 0.1s;
  opacity: 0;
}

.delay-200 {
  animation-delay: 0.2s;
  opacity: 0;
}

.delay-300 {
  animation-delay: 0.3s;
  opacity: 0;
}

/* Product tabs */
.product-tab {
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-tab:first-of-type {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.product-tab:last-of-type {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

/* Process steps */
.process-step {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.process-step.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Review cards */
.review-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.review-card.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Feature cards */
.feature-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.feature-card.animated {
  opacity: 1;
  transform: translateY(0);
}

/* CTA section */
section.py-20.bg-gradient-to-r {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

section.py-20.bg-gradient-to-r.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive fixes */
@media (max-width: 768px) {
  .md\:w-1\/2 {
    width: 100%;
  }
  
  .md\:flex-row {
    flex-direction: column;
  }
  
  .md\:mb-0 {
    margin-bottom: 2rem;
  }
  
  .md\:pl-10 {
    padding-left: 0;
  }
}

/* Mobile menu */
.mobile-menu {
  transition: all 0.3s ease;
}

/* Additional animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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