:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-016a0f4 */.progress-container {
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    font-family: 'Comfortaa';
    color: #2c3e91;
  }

  .progress-container h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .progress-container p {
    font-size: 1.1rem;
    color: #3d3d75;
    margin-bottom: 40px;
  }

  .progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto;
    width: 100%;
    counter-reset: step;
  }

  .progressbar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 10px;
    width: 100%;
    background-color: #eaf4fb;
    border-radius: 5px;
    z-index: 0;
  }

  .progress {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 10px;
    width: 29%; /* Change this value for progress (0–100%) */
    background-color: #082860;
    border-radius: 5px;
    z-index: 1;
    transition: width 0.4s ease;
  }

  .progress-step {
    position: relative;
    z-index: 2;
    background-color: #bde3f9;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
  }

  .progress-step.active {
    background-color: #082860;
  }

  .progress-step .label {
    position: absolute;
    bottom: -35px;
    font-size: 1rem;
    color: #2c3e91;
    font-weight: 500;
  }/* End custom CSS */