/* Factiva Landing Page Styles */
:root {
  --primary-color: #0441a9;
  --secondary-color: #4f46e5;
  --dark-color: #111827;
  --light-color: #f9fafb;
}

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Custom animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.7);
  }
}

.pulse-glow {
  animation: pulse-glow 3s infinite;
}

/* Smooth transition utility */
.transition-all-custom {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-6px);
}
