.fade-out {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0A192F;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Enhanced loader animation */
#loader img {
  animation: spin-pulse 2s ease-in-out infinite;
}

@keyframes spin-pulse {
  0%, 100% {
    transform: rotateY(0deg) scale(1);
  }
  50% {
    transform: rotateY(180deg) scale(1.1);
  }
}
