/* 
   style.css 
   Minimal custom styles for the lead-gen page
*/

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
  }
  
  .floating-msg {
    animation: float 6s ease-in-out infinite;
    will-change: transform;
  }
  
  .float-delay-1 { animation-delay: 0s; }
  .float-delay-2 { animation-delay: 2s; }
  .float-delay-3 { animation-delay: 4s; }
  
  /* Optional: Smooth fade in for the whole page */
  body {
    animation: fadeIn 0.8s ease-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  