/* Preloader container */
.preloader {
  position: fixed !important;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;  /* higher than everything */
  margin: 0 !important;
  padding: 0 !important;
  height: 100vh;
  width: 100vw;
}

/* Hide after load */
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Logo animation */
.preloader-logo {
  width: 120px;   /* adjust to your logo size */
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}
