  .container {
      width: 100%;
      display: inline-block;
      margin: 0px auto; 
  }
  /* ══════════════════════════════════════
     MODERN STEPPER
     States: .done (completed) · .active (current) · default (upcoming)
     ══════════════════════════════════════ */
  .progressbar {
      counter-reset: step;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      width: 100%;
      padding: 18px 0 10px;
      margin: 0;
      list-style: none;
  }
  .progressbar li {
      counter-increment: step;
      list-style: none;
      flex: 1;
      max-width: 200px;
      position: relative;
      text-align: center;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.7px;
      text-transform: uppercase;
      color: #adb5bd;
      padding-top: 4px;
  }
  /* ── Circle ── */
  .progressbar li::before {
      content: counter(step);
      counter-increment: none;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      font-size: 14px;
      font-weight: 700;
      border: 2.5px solid #ced4da;
      border-radius: 50%;
      background-color: #fff;
      color: #adb5bd;
      margin: 0 auto 10px;
      position: relative;
      z-index: 1;
      transition: all 0.25s ease;
      box-sizing: border-box;
  }
  /* ── Connecting line (left of each li except first) ── */
  .progressbar li::after {
      content: '';
      position: absolute;
      top: 24px;
      left: -50%;
      width: 100%;
      height: 2px;
      background-color: #dee2e6;
      z-index: 0;
      transition: background-color 0.25s ease;
  }
  .progressbar li:first-child::after {
      content: none;
  }

  /* ── DONE: green filled circle + checkmark ── */
  .progressbar li.done {
      color: #28a745;
  }
  .progressbar li.done::before {
      content: '\2713';
      background-color: #28a745;
      border-color: #28a745;
      color: #fff;
      font-size: 18px;
      box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.15);
  }
  .progressbar li.done::after {
      background-color: #28a745;
  }
  /* segment between done → next step */
  .progressbar li.done + li::after {
      background-color: #28a745;
  }

  /* ── ACTIVE: green outlined circle + number highlighted ── */
  .progressbar li.active {
      color: #28a745;
  }
  .progressbar li.active::before {
      border-color: #28a745;
      border-width: 2.5px;
      color: #28a745;
      font-weight: 800;
      box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.15);
  }
  /* line coming INTO the active step is green */
  .progressbar li.active::after {
      background-color: #28a745;
  }
  .btn-group.special {
    display: flex;
}

button.button-right {
    border-radius:0;
    border-top-right-radius:3px;
    border-bottom-right-radius:3px;
}

.special .btn {
  flex: 1
}

.select-project-class{
  width: 200px;
  margin:5px 0px;
}

@media (max-width: 991px){
  .navbar-custom-menu .navbar-nav>li>a {
    padding: 0px!important;
  }
  .navbar-custom-menu>.navbar-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
  }
  .navbar-custom-menu>.navbar-nav>li{
    margin: 0px 5px;
  }
  .select-project-class{
    width: 100px;
    margin:5px 0px;
  }
}

@media (max-width: 767px){
  .skin-green-light .main-header .navbar .dropdown-menu li a {
      color: #333!important;
  }
}

