#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
  }
  
  .orbit-spinner {
    position: relative;
    width: 150px;
    height: 150px;
    animation: spinnerRotate 6s linear infinite;
    margin: 0 auto;
  }
  
  .orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .orbit-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transform: translateX(50px);
    animation: orbitMove 2s ease-in-out infinite;
  }
  
  @keyframes spinnerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes orbitMove {
    0%, 100% { transform: translateX(50px) scale(0.9); }
    50% { transform: translateX(60px) scale(1.1); }
  }
  
  .loading-text {
    margin-top: 10px;
    font-family: "Poppins";
    font-size: 0.9rem;
    color: #333;
    animation: textFade 2s ease-in-out infinite;
  }
  
  @keyframes textFade {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.5; }
  }  