.onboarding-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.onboarding-card {
  background: #fff;
  width: 90%;
  max-width: 600px;
  padding: 26px;
  border-radius: 16px;
  text-align: center;
}

.onboarding-card h2 {
  color: #2f7a37;
  margin-bottom: 12px;
}

.onboarding-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 16px;
}

.onboard-list {
  text-align: left;
  margin-bottom: 20px;
}

.onboard-list li {
  margin-bottom: 6px;
  font-size: 14px;
}

.buttons.single {
  display: flex;
  justify-content: center;
}

button.primary {
  background: #2f7a37;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
}
.onboard-scroll {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 6px;
  text-align: left;
}

.onboard-scroll p,
.onboard-scroll li {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.onboard-scroll hr {
  margin: 12px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.onboard-lang-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  gap: 6px;
}

.onboard-lang-toggle button {
  border: 1px solid #2f7a37;
  background: transparent;
  color: #2f7a37;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.onboard-lang-toggle button.active {
  background: #2f7a37;
  color: #fff;
}
/* ===============================
   URDU ONBOARDING FIX
   =============================== */

#onboard-ur {
  direction: rtl;
  text-align: right;
  font-family: 'Noto Nastaliq Urdu', serif;
  line-height: 2.1;
}

#onboard-ur p,
#onboard-ur li {
  font-size: 15px;
}

/* Fix list indentation in RTL */
#onboard-ur ol {
  padding-right: 20px;
  padding-left: 0;
}

#onboard-ur li {
  margin-bottom: 10px;
}
.trust-note {
  margin-top: 14px;
  font-size: 13px;
  color: #666;
}