
    .form-container {
      background-color: #ffffff;
      padding: 2rem;
      border-radius: 0.75rem;
      /* Rounded-xl */
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      /* Shadow-lg */
      border: 1px solid #e2e8f0;
      /* Border-gray-200 */
      max-width: 900px;
      /* Max-w-4xl (approx) */
      margin: 1.5rem auto;
      /* My-4 sm:my-8 */
    }

    .section-heading {
      font-size: 1.25rem;
      /* text-[20px] */
      font-weight: 600;
      /* font-semibold */
      color: #114499;
      /* text-blue-700 */
      padding-bottom: 0.75rem;
      /* pb-3 */
      margin-bottom: 1.5rem;
      /* mb-6 */
      border-bottom: 1px solid #cfe2ff;
      /* border-b border-blue-200 */
      text-align: left;
    }

    .sub-section-heading {
      font-size: 1.25rem;
      /* text-[20px] */
      font-weight: 500;
      /* font-medium */
      color: #114499;
      /* text-blue-600 */
      border-bottom: 2px dashed #cfe2ff;
      /* border-b-2 border-dashed border-blue-200 */
      padding-bottom: 0.5rem;
      /* pb-2 */
      margin-bottom: 1rem;
      /* mb-4 */
    }

    .form-label-custom {
      font-size: 0.75rem;
      /* text-[12px] */
      font-weight: 500;
      /* font-medium */
      color: #4a5568;
      /* text-gray-700 */
      text-align: left;
      padding-right: 1rem;
      min-width: 14rem;
      /* md:w-56 */
    }

    .form-control-custom {
      height: 2.5rem;
      /* h-2 (adjust for visual height) */
      padding: 0.375rem 0.75rem;
      /* p-3 */
      border-radius: 0.375rem;
      /* rounded-md */
      transition: all 0.2s ease-in-out;
      font-size: 0.875rem;
    }

    .form-control-custom:focus {
      box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
      /* focus:ring-2 focus:ring-blue-300 */
      border-color: #114499;
      /* focus:border-blue-500 */
    }

    .form-check-input-custom {
      transform: scale(1.1);
      /* transform scale-110 */
      accent-color: #114499;
      /* accent-blue-600 */
      margin-right: 0.5rem;
      /* mr-2 */
    }

    .form-group-flex {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
      /* gap-y-2 */
      margin-bottom: 1rem;
      /* mb-4 */
    }

    @media (min-width: 768px) {
      .form-group-flex {
        flex-direction: row;
        align-items: center;
        /* md:items-left */
        gap: 1rem;
        /* md:gap-x-4 */
      }

      .form-label-custom {
        text-align: left;
        /* md:text-left */
        padding-right: 1rem;
        /* md:pr-4 */
      }
    }

    .radio-group-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      /* gap-x-4 gap-y-2 */
    }

    .radio-group-flex-gender {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      /* gap-x-6 gap-y-3 */
    }

    .progress-bar-custom {
      height: 0.625rem;
      /* h-2.5 */
      border-radius: 9999px;
      /* rounded-full */
      background-color: #e2e8f0;
      /* bg-gray-200 */
    }

    .progress-bar-fill {
      height: 100%;
      border-radius: 9999px;
      background-color: #114499;
      /* bg-blue-600 */
      transition: width 0.5s ease-out;
      /* transition-all duration-500 ease-out */
    }

    .disclaimer-text {
      font-size: 0.875rem;
      /* text-sm */
      color: #4a5568;
      /* text-gray-600 */
      margin-top: 2rem;
      /* mt-8 */
      padding-top: 1.25rem;
      /* pt-5 */
      border-top: 1px solid #e2e8f0;
      /* border-t border-gray-200 */
      text-align: justify;
      font-style: italic;
    }

    .document-upload-section {
      background-color: #e0f2fe;
      /* bg-blue-50 */
      border: 1px solid #90cdf4;
      /* border-blue-200 */
      border-radius: 0.5rem;
      /* rounded-lg */
      box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
      /* shadow-inner */
      padding: 1.5rem;
      /* p-6 */
    }

    .document-upload-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      /* gap-4 */
    }

    @media (min-width: 576px) {
      .document-upload-grid {
        grid-template-columns: repeat(2, 1fr);
        /* sm:grid-cols-2 */
      }
    }

    .document-upload-label {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 0.75rem;
      /* p-3 */
      border: 1px solid #cbd5e0;
      /* border-gray-300 */
      border-radius: 0.375rem;
      /* rounded-md */
      background-color: #ffffff;
      /* bg-white */
      cursor: pointer;
      transition: all 0.2s;
    }

    .document-upload-label:hover {
      border-color: #114499;
      /* hover:border-blue-500 */
    }

    .document-upload-label input[type="file"] {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
      z-index: 1;
      /* Ensure it's clickable */
    }

    .document-upload-label span:first-child {
      font-weight: 500;
      /* font-medium */
      color: #4a5568;
      /* text-gray-700 */
      margin-bottom: 0.25rem;
      /* mb-1 */
      z-index: 2;
    }

    .document-upload-label span:last-child {
      font-size: 0.875rem;
      /* text-sm */
      color: #718096;
      /* text-gray-500 */
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-top: 0.25rem;
      /* mt-1 */
      z-index: 2;
    }

    .file-input-wrapper {
      position: relative;
      width: 100%;
    }

    .file-input-wrapper input[type="file"] {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
    }

    .file-input-wrapper .input-group-text {
      cursor: pointer;
    }

    .file-input-wrapper .form-control {
      cursor: pointer;
    }

    .required-docs-message {
      color: #dc3545;
      /* text-red-600 */
      font-size: 0.875rem;
      /* text-sm */
      margin-top: 1rem;
      /* mt-4 */
      font-weight: 600;
      /* font-semibold */
    }

    .btn-custom {
      padding: 0.5rem 1.5rem;
      /* py-2 px-6 */
      font-weight: 600;
      /* font-semibold */
      border-radius: 0.5rem;
      /* rounded-lg */
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      /* shadow-md */
      transition: all 0.2s ease-in-out;
    }

    .btn-prev {
      background-color: #adb5bd;
      /* bg-gray-300 */
      color: #2d3748;
      /* text-gray-800 */
    }

    .btn-prev:hover {
      background-color: #6c757d;
      /* hover:bg-gray-400 (adjusted for darker hover) */
      color: #ffffff;
    }

    .btn-next {
      background-color: #114499;
      /* bg-blue-600 */
      color: #ffffff;
    }

    .btn-next:hover {
      background-color: #0a58ca;
      /* hover:bg-blue-700 (darker blue) */
    }

    /* Animation for steps (simple display change) */
    .step-content {
      display: none;
      /* No complex fade-in animation with pure CSS for simplicity in multi-step form */
    }

    .step-content.active {
      display: block;
    }

    /* progress-bar css */
    .step-progressbar {
  position: relative;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.step-progressbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #092448; /* Your theme color */
  border-radius: 2px;
  transition: width 0.4s ease;
  z-index: 0;
}

.step {
  position: relative;
  width: 28px;
  height: 28px;
  background-color: #e0e0e0;
  color: #333;
  font-weight: 600;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 0.875rem;
  z-index: 1;
  transition: background-color 0.3s, color 0.3s;
}

.step.active {
  background-color: #092448;
  color: #fff;
}

.step.completed {
  background-color: #2cb67d;
  color: #fff;
}
