/* .preLoader {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
} */

.pre-loader-scrollbar {
  overflow: hidden;
}

/* Add this to your existing CSS */
.pre-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(
    241,
    245,
    249,
    1
  ); /* Semi-transparent white background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it's above other content */
}

#svg-container {
  width: 160px;
  height: 172px;
  position: relative;
  animation: fillAnimation 4s linear infinite;
}

@keyframes fillAnimation {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
