  .pre-loader {
    position: fixed;
    top: 0; /* Add this */
    left: 0; /* Add this */
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Stack items vertically */
  }
  
  .loader-progress .bar {
    width: 0%;
    height: 10px;
    background: #000000;
    transition: width 0.3s;
    border-radius: 10px;
  }
  
  .loading-text {
    text-align: center;
    margin-top: 10px;
  }
  