/* ===== CSS RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;;
}

/* ================= GLOBAL TYPOGRAPHY ================= */

/* Base font applied once */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Make EVERYTHING use the same font */
*, *::before, *::after {
    font-family: inherit;
}

/* Headings styling */
h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 700;
    color: #333;
}

/* Ensure form elements inherit the font */
button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}


/* ===== URDU CONTENT ONLY ===== */
.urdu-content {
  direction: rtl;
  text-align: right;
  font-family: 'Noto Nastaliq Urdu', serif;
  line-height: 2;
}

/* Headings spacing */
.urdu-content h1,
.urdu-content h2,
.urdu-content h3 {
  margin-bottom: 15px;
}

/* Paragraph spacing */
.urdu-content p {
  margin-bottom: 12px;
}

.urdu-content h3 {
    line-height: 2;
    word-spacing: 2px;
}

.urdu-content p {
    line-height: 2;
}