.scrollbar-hide {
    -ms-overflow-style: none; 
    scrollbar-width: none;
  }
  
  .scrollbar-hide::-webkit-scrollbar {
    display: none; 
  }

  .navbar{
    transition: background-color 0.3s ease;
  }
   
  .navbar-scrolled{
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
  }
  html {
    scroll-behavior: smooth;
  }
  