 @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  .animate-bounce { animation: bounce 2s infinite; }

            body {
        padding-top: 50px!important; /* Adjust this value based on your header height */
    }