    html  {
    scroll-behavior:auto !important; /* Disables default smooth scrolling */
}
#site-preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#site-preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo img {
  width: 300px;
  opacity: 0;
  transform: translateY(20px);
}

#page-transition-mask {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9998;
  transform: translateY(100%);
}

