
#custom-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #faffd9;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.loader-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
}

.loader-logo {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.rotating-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top: 4px solid #003b2f;
  animation: spin 1.5s linear infinite;
  z-index: 1;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
