/* FADE IN */
@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
  }
  
  /* HOVER GLOW BUTTON */
  .btn {
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .btn:hover {
    background-color: #d62828;
    box-shadow: 0 0 10px #ff6b6b, 0 0 20px #ffa69e;
    transform: translateY(-3px);
  }
  