		#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3c5f75; /* Match your brand colors */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader-logo {
  width: 230px; /* Adjust size as needed */
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

#loader-logo {
  animation: bounce 1.5s infinite ease-in-out;
}
