body {
  min-height: 100vh;
  background: radial-gradient(1000px 500px at 10% 10%, rgba(13, 110, 253, 0.08), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(25, 135, 84, 0.08), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color: #1f2937;
}

.noc-shell {
  padding-top: 1.25rem;
  padding-bottom: 2.5rem;
}

.noc-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.noc-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.noc-brand-title {
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
  font-size: 1.05rem;
}

.noc-brand-subtitle {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  opacity: 0.85;
}

.urdu {
  font-family: "Noto Nastaliq Urdu", "Noto Sans Arabic", serif;
  font-weight: 500;
}

.noc-card {
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
}

.noc-card .card-header {
  border: 0;
  background: transparent;
  padding: 1.25rem 1.25rem 0.75rem 1.25rem;
}

.noc-card .card-body {
  padding: 1.25rem;
}

.noc-help {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.noc-stepper {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.noc-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(31, 41, 55, 0.85);
  font-size: 0.9rem;
}

.noc-step-badge {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.07);
  color: rgba(31, 41, 55, 0.95);
  font-weight: 700;
  font-size: 0.85rem;
}

.noc-step-active {
  border-color: rgba(13, 110, 253, 0.25);
  background: rgba(13, 110, 253, 0.08);
  color: #0b5ed7;
}

.noc-step-active .noc-step-badge {
  background: #0d6efd;
  color: #fff;
}

.noc-step-done {
  border-color: rgba(25, 135, 84, 0.25);
  background: rgba(25, 135, 84, 0.08);
  color: #146c43;
}

.noc-step-done .noc-step-badge {
  background: #198754;
  color: #fff;
}

.field-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(31, 41, 55, 0.92);
}

.muted-hint {
  font-size: 0.85rem;
  color: rgba(31, 41, 55, 0.68);
}

.noc-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.alert {
  border-radius: 0.9rem;
}

.validation-error {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
}

@media (min-width: 992px) {
  .noc-card .card-body {
    padding: 1.5rem;
  }
}

