.progress-container {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%,0);
    font-family: "Vazirmatn";
    transition: 1s;

  }

  .progress-bar {
    width: 100%;
    height: 12px;
    background-color: #e9f0f6;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
  }

  .progress-fill {
    height: 100%;
    background-color: #4eb1ea;
    width: 0;
    transition: width 0.5s ease-in-out;
  }

  .steps {
    display: flex;
    justify-content: space-between;
    font-size: 0px;
    color: #007bff46;
    margin-top: 8px;
    transition: .3s ease-in-out;
  }

  .step.active {
    font-weight: bold;
    font-size: 14px;
    color: #4eb1ea;

  }
