.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  
    @media (max-width: 768px) {
      font-size: 12px;
    }
  }

  
  .stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
  }
  
  .stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
  }
  
  .stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 6px;
    border: 1px #000 solid;
  }
  
  .stepper-item.active {
    font-weight: bold;
  }
  
  .stepper-item.completed .step-counter {
    background-color: #00C535;
    color: #fff;
    border:0;
  }
  
  .stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #00C535;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
  }
  
  .stepper-item:first-child::before {
    content: none;
  }
  .stepper-item:last-child::after {
    content: none;
  }

  /* Image */
  .upload-icon { bottom: 5px; right: 5px; background-color: #00C535; color: white; border-radius: 50%;
    padding: 5px; font-size: 16px; cursor: pointer; border: 2px solid white; position: absolute; }
   .profile-upload { width: 160px; height: 160px; position: relative; margin: 0 auto; }
   .img-fluid { max-width: 100%; height: auto; }
   .border-orange { border: 2px solid #00C535; }
   .text-orange { color: #00C535 !important; }

   @media (max-width: 600px) {
    .step-name{display: none;} 
   }