.progress-bar{
  /* background:#1a9649; */
}

.progress {
position: relative;
height: 20px;
background-color: #e9ecef;
border-radius: 5px;
overflow: hidden;
}

.progress-bar {
width: 50%; /* Example width */
height: 100%;
/* background-color: #007bff; */
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 40px 40px;
animation: progress-stripes 2s linear infinite;
transition: width 0.5s ease-in-out; /* Animate width changes */
}

@keyframes progress-stripes {
0% {
  background-position: 40px 0;
}
100% {
  background-position: 0 0;
}
}
.step-indicator .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* Space between icon and text */
}

.step-indicator .step i {
  font-size: 1.5rem; /* Adjust icon size as needed */
}

.step-indicator .step span {
  font-size: 0.675rem; /* Adjust text size as needed */
}


.form-section {
      display: none;
  }
  .form-section.active {
      display: block;
  }
  .step-indicator {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
      overflow-x: auto;
      padding-bottom: 2px;
  }
  .step-indicator .step {
      flex: 1;
      text-align: center;
      /* white-space: nowrap; */
      position: relative;
      padding: 8px 5px;
      font-size: 0.8rem;
      border-radius: 4px;
      margin: 0 2px;
      cursor: pointer;
      min-width: 80px;
  }
  .step-indicator .step.active {
      background-color: var(--theme-default);
      color: white;
      font-weight: 500;
  }
  .step-indicator .step.completed {
      background-color: var(--theme-default);
      color: #ffffff;
      border-radius:0px;
      border-top-right-radius: 50%;
      border-top-left-radius: 50%;

  }
  .step-indicator .step.completed::after{
      content: "\f058";
      position: absolute;
      font-family: 'Line Awesome Free';
      font-weight: 900;
      top: 13px;
      right: 0%;
      transform: translate(-50%, -50%);
      width: 25px;
      height: 25px;
      background-color: #ffffff;
      border-radius: 50%;
      border: 2px solid #198754;
      color:#198754;
      transition: all 0.3s;
  }
  .step-indicator .step.disabled {
      background-color: #e9ecef;
      color: #6c757d;
      cursor: not-allowed;
  }
  .document-upload-box {
      border: 2px dashed #dee2e6;
      padding: 20px;
      text-align: center;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s;
  }
  .document-upload-box:hover {
      /* border-color: #0d6efd; */
      background-color: rgba(13, 110, 253, 0.05);
  }
  .document-upload-box.uploaded {
      border-color: #198754;
      background-color: rgba(25, 135, 84, 0.05);
  }
  .document-upload-box.error {
      border-color: #dc3545;
      background-color: rgba(220, 53, 69, 0.05);
  }
  .review-section {
      border: 1px solid #dee2e6;
      border-radius: 5px;
      margin-bottom: 15px;
  }
  .review-section-header {
      background-color: #f8f9fa;
      padding: 10px 15px;
      border-bottom: 1px solid #dee2e6;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  .review-section-content {
      padding: 15px;
      display: none;
  }
  .review-section-content.show {
      display: block;
  }
  .required-field::after {
      content: "*";
      color: red;
      margin-left: 3px;
  }
  .hidden-file-input {
      display: none;
  }
  .progress {
      height: 8px;
  }

  /* Add this to your existing CSS file or within a <style> tag in your HTML */
.is-invalid {
border-color: #dc3545 !important; /* Red border color */
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); /* Optional: Red glow effect */
}

/* Optional: Style for input fields with the is-invalid class */
.is-invalid:focus {
border-color: #dc3545 !important;
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Optional: Style for error messages */
.invalid-feedback {
display: block; /* Show the error message */
color: #dc3545; /* Red text color */
font-size: 0.875rem; /* Slightly smaller text */
margin-top: 0.25rem; /* Space above the error message */
}
