#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #004b88;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .loading-animation {
    position: relative;
    width: 150px;
    height: 150px;
    perspective: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .box {
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 10px;
    animation: rotate 1.5s ease-in-out infinite;
  }
  
 
  
  .box:nth-child(4) {
    background-color: #16e6ae;
    transform: rotateX(0deg) rotateY(270deg) rotateZ(0deg) translateZ(75px);
  }
  
  @keyframes rotate {
    0% {
      transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% {
      transform: rotateX(180deg) rotateY(0deg) rotateZ(0deg);
    }
    50% {
      transform: rotateX(180deg) rotateY(180deg) rotateZ(0deg);
    }
    75% {
      transform: rotateX(180deg) rotateY(180deg) rotateZ(180deg);
    }
    100% {
      transform: rotateX(0deg) rotateY(180deg) rotateZ(180deg);
    }
  }

  .loading-message {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
  }
  
  .loading-dots-container {
    display: flex;

  }
  
  .loading-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ffffff;
    margin: 0 5px;
   
    opacity: 0;
  }
  .dot-1{
    animation: loading-dot-appear 1s ease-in-out infinite;
    animation-delay: calc(var(--dot-index) * 0.2s);
    animation-fill-mode: both;
  }
  .dot-2{
    animation: loading-dot-appear 1.2s ease-in-out infinite;
    animation-delay: calc(var(--dot-index) * 0.2s);
    animation-fill-mode: both;
  }
  .dot-3{
    animation: loading-dot-appear 1.4s ease-in-out infinite;
    animation-delay: calc(var(--dot-index) * 0.2s);
    animation-fill-mode: both;
  }

  
  @keyframes loading-dot-appear {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes loading-dot-appear {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes loading-dot-appear {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  