body {
  font-family: 'Inter', sans-serif;
}

.google-gradient {
  background: linear-gradient(90deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
}

.slide-in-bottom {
  animation: slideInBottom 0.5s ease-out;
}

@keyframes slideInBottom {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg) translateY(50%);
}

/* Testimonial Carousel Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-400px * 6 - 2rem * 6)); }
}

.animate-scroll {
  animation: scroll 40s linear infinite;
  width: max-content;
}

.pause-scroll:hover {
  animation-play-state: paused;
}

.testimonial-card {
  perspective: 1000px;
}

.testimonial-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
}

.focus-highlight {
    animation: highlight 1.5s ease-in-out;
}

@keyframes highlight {
    0% { transform: scale(1); box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25); }
    50% { transform: scale(1.03); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.2); }
    100% { transform: scale(1); box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25); }
}
