/* ============================================================
   UDYOJAK SANGH - Platform Style CSS
   Bilingual (Hindi + English) Interface
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700&family=Noto+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1a3a6e;
    --primary-dark: #0f2449;
    --primary-light: #2d5399;
    --saffron: #f37a20;
    --saffron-dark: #d4621a;
    --green: #138808;
    --white: #ffffff;
    --light-bg: #f4f6fb;
    --border: #c8d3e8;
    --text: #1a2035;
    --muted: #666b80;
    --danger: #c0392b;
    --success: #27ae60;
    --warning: #f39c12;
    --shadow: 0 2px 12px rgba(26, 58, 110, 0.10);
    --shadow-md: 0 4px 24px rgba(26, 58, 110, 0.15);
    --radius: 4px;
    --radius-md: 8px;
    --font-main: 'Noto Sans', 'Noto Sans Devanagari', Arial, sans-serif;
    --header-h: 120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--light-bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--saffron);
    text-decoration: underline;
}

/* ---- BILINGUAL LABELS ---- */
.lbl-en {
    font-weight: 600;
    font-size: 0.93em;
}

.lbl-sep {
    color: var(--muted);
    margin: 0 2px;
    font-size: 0.85em;
}

.lbl-hi {
    color: var(--primary-light);
    font-size: 0.88em;
    font-weight: 500;
}

/* ---- TRICOLOR TOP BAR ---- */
.tricolor-bar {
    height: 5px;
    background: linear-gradient(to right, #FF9933 33.3%, #ffffff 33.3% 66.6%, #138808 66.6%);
}

/* ---- GOV HEADER ---- */
.gov-header {
    background: var(--primary);
    color: #fff;
    padding: 0;
}

.gov-header-top {
    background: var(--primary-dark);
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gov-header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gov-header-top a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin-left: 16px;
}

.gov-header-top a:hover {
    color: var(--saffron);
    text-decoration: none;
}

.gov-header-main {
    padding: 16px 0;
}

.gov-header-main .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gov-emblem {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.gov-emblem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gov-title-block {
    flex: 1;
}

.gov-title-block .dept-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gov-title-block .site-name-hi {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.gov-title-block .site-name-en {
    font-size: 18px;
    font-weight: 600;
    color: var(--saffron);
    letter-spacing: 0.5px;
}

.gov-title-block .tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.gov-header-right {
    text-align: right;
    flex-shrink: 0;
}

.header-logo-right {
    height: 50px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* ---- TICKER ---- */
.ticker-bar {
    background: var(--saffron);
    color: #fff;
    padding: 7px 0;
    overflow: hidden;
    position: relative;
    font-size: 13px;
    font-weight: 600;
}

.ticker-label {
    background: var(--primary-dark);
    color: #fff;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    letter-spacing: 0.5px;
}

.ticker-content {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 120px;
}

.ticker-content span {
    display: inline-block;
    animation: ticker 50s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ---- MAIN NAV ---- */
.main-nav {
    background: var(--primary-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li>a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: background .2s;
}

.nav-list li>a:hover,
.nav-list li>a.active {
    background: var(--primary-dark);
    color: var(--saffron);
    text-decoration: none;
}

.nav-list li>a .hi {
    font-size: 12px;
    display: block;
    color: rgba(255, 255, 255, 0.65);
}

.nav-auth {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-nav-login {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font-main);
    transition: all .2s;
}

.btn-nav-login:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-nav-register {
    background: var(--saffron);
    border: none;
    color: #fff;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    transition: all .2s;
}

.btn-nav-register:hover {
    background: var(--saffron-dark);
}

/* ---- CONTAINER ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- HERO SECTION ---- */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.hero::after {
    content: '';
    position: absolute;
    left: -50px;
    bottom: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--saffron);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 38px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero h1 .hi {
    display: block;
    font-size: 26px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- SEARCH BOX ---- */
.search-box {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 12px;
    align-items: flex-end;
    max-width: 860px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
}

.search-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--text);
    outline: none;
    transition: border-color .2s;
}

.search-field input:focus,
.search-field select:focus {
    border-color: var(--primary);
}

.btn-search {
    background: var(--saffron);
    color: #fff;
    border: none;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font-main);
    white-space: nowrap;
    transition: background .2s;
    height: 42px;
}

.btn-search:hover {
    background: var(--saffron-dark);
}

/* ---- STATS BAR ---- */
.stats-bar {
    background: var(--primary-dark);
    padding: 20px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 12px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item .num {
    font-size: 32px;
    font-weight: 700;
    color: var(--saffron);
    line-height: 1;
    display: block;
}

.stat-item .lbl-en {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.stat-item .lbl-sep {
    color: rgba(255, 255, 255, 0.4);
}

.stat-item .lbl-hi {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

/* ---- SECTION ---- */
.section {
    padding: 48px 0;
}

.section-alt {
    background: #fff;
}

.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--saffron);
    border-radius: 2px;
}

.section-title .hi {
    display: block;
    font-size: 15px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 4px;
}

.section-header .view-all {
    float: right;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 8px;
}

/* ---- JOB CARDS ---- */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.job-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0;
    transition: box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.job-card-header {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.job-card-header .job-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 2px;
}

.job-card-header .company-name {
    font-size: 13px;
    color: var(--muted);
}

.job-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--saffron);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.job-badge.bulk {
    background: var(--green);
}

.job-badge.featured {
    background: var(--saffron);
}

.job-card-body {
    padding: 16px 18px;
}

.job-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.job-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
}

.job-meta-item i {
    color: var(--primary-light);
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.job-meta-item .meta-label {
    font-size: 11px;
    color: var(--muted);
    display: block;
}

.job-meta-item .meta-value {
    font-weight: 600;
    color: var(--text);
    display: block;
    line-height: 1.2;
}

.job-meta-item .meta-hi {
    font-size: 11px;
    color: var(--muted);
}

.job-card-footer {
    border-top: 1px solid var(--border);
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vacancy-badge {
    background: #e8f5e9;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 3px;
    border: 1px solid #c8e6c9;
}

.last-date {
    font-size: 12px;
    color: var(--muted);
}

.last-date strong {
    color: var(--danger);
}

/* ---- BTN ---- */
.btn {
    display: inline-block;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    text-align: center;
    transition: all .2s;
    text-decoration: none !important;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-saffron {
    background: var(--saffron);
    color: #fff;
}

.btn-saffron:hover {
    background: var(--saffron-dark);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-success {
    background: var(--success);
    color: #fff;
}

.btn-success:hover {
    background: #219a52;
    color: #fff;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 13px 32px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ---- CATEGORY CARDS ---- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.cat-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 12px;
    text-align: center;
    transition: all .2s;
    cursor: pointer;
    text-decoration: none !important;
    color: var(--text);
    display: block;
}

.cat-card:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.cat-card:hover .cat-icon,
.cat-card:hover .cat-name-hi,
.cat-card:hover .cat-count {
    color: rgba(255, 255, 255, 0.85) !important;
}

.cat-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
    transition: color .2s;
}

.cat-card:hover .cat-icon {
    color: var(--saffron) !important;
}

.cat-name-en {
    font-size: 13px;
    font-weight: 600;
    display: block;
    line-height: 1.3;
}

.cat-name-hi {
    font-size: 12px;
    color: var(--muted);
    display: block;
    transition: color .2s;
}

.cat-count {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
    display: block;
    transition: color .2s;
}

/* ---- HOW TO APPLY ---- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

.step-title-en {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.step-title-hi {
    font-size: 13px;
    color: var(--muted);
}

.step-desc {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

/* ---- FORM STYLES ---- */
.form-page {
    padding: 36px 0 56px;
    min-height: calc(100vh - var(--header-h));
}

.form-container {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.form-header {
    background: var(--primary);
    color: #fff;
    padding: 20px 32px;
    border-bottom: 3px solid var(--saffron);
}

.form-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.form-header .hi {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.form-notice {
    background: #e8f4fd;
    border-left: 4px solid var(--primary-light);
    padding: 12px 16px;
    font-size: 13px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---- STEP INDICATOR ---- */
.step-indicator {
    display: flex;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}

.step-tab {
    flex: 1;
    padding: 16px 12px;
    text-align: center;
    position: relative;
    cursor: default;
    border-right: 1px solid var(--border);
    min-width: 160px;
}

.step-tab:last-child {
    border-right: none;
}

.step-tab .step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    transition: all .3s;
}

.step-tab.active .step-circle {
    background: var(--saffron);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(243, 122, 32, 0.2);
}

.step-tab.done .step-circle {
    background: var(--success);
    color: #fff;
}

.step-tab .step-name-en {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    display: block;
    line-height: 1.2;
}

.step-tab .step-name-hi {
    font-size: 11px;
    color: var(--muted);
    display: block;
}

.step-tab.active .step-name-en,
.step-tab.active .step-name-hi {
    color: var(--saffron);
    font-weight: 700;
}

.step-tab.done .step-name-en,
.step-tab.done .step-name-hi {
    color: var(--success);
}

/* ---- FORM BODY ---- */
.form-body {
    padding: 32px;
}

.form-section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin: 24px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
    position: relative;
}

.form-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--saffron);
}

.form-section-title .hi {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.form-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

.form-row-1 {
    grid-template-columns: 1fr;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.form-group label .hi {
    color: var(--primary-light);
    font-weight: 500;
    font-size: 12px;
}

.form-group label .req {
    color: var(--danger);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 58, 110, 0.08);
}

.form-control.is-invalid {
    border-color: var(--danger);
}

.form-control.is-valid {
    border-color: var(--success);
}

.invalid-feedback {
    font-size: 12px;
    color: var(--danger);
    margin-top: 4px;
    display: none;
}

.form-control.is-invalid~.invalid-feedback {
    display: block;
}

.form-hint {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--light-bg);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 13px;
}

.form-check input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* ---- SKILL / EDU REPEATER ---- */
.repeater-item {
    background: var(--light-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
}

.repeater-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.repeater-item-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.btn-remove-item {
    background: #fee;
    color: var(--danger);
    border: 1px solid #fcc;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font-main);
}

.btn-add-item {
    background: transparent;
    border: 2px dashed var(--primary-light);
    color: var(--primary);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font-main);
    width: 100%;
    transition: all .2s;
    margin-top: 8px;
}

.btn-add-item:hover {
    background: var(--primary);
    color: #fff;
    border-style: solid;
}

/* ---- DOCUMENT UPLOAD ---- */
.doc-upload-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.doc-upload-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    background: #fff;
}

.doc-upload-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.doc-upload-card .doc-hi {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px;
    display: block;
}

.file-upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    position: relative;
}

.file-upload-area:hover {
    border-color: var(--primary);
    background: var(--light-bg);
}

.file-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.file-upload-area i {
    font-size: 28px;
    color: var(--muted);
    display: block;
    margin-bottom: 8px;
}

.file-upload-area .upload-text-en {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.file-upload-area .upload-text-hi {
    font-size: 12px;
    color: var(--muted);
}

.file-preview {
    margin-top: 8px;
    font-size: 12px;
    color: var(--success);
    display: none;
}

/* ---- FORM FOOTER / NAV ---- */
.form-footer {
    background: var(--light-bg);
    border-top: 1px solid var(--border);
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-info {
    font-size: 13px;
    color: var(--muted);
}

.form-footer-btns {
    display: flex;
    gap: 12px;
}

/* ---- ALERT ---- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #1b5e20;
}

.alert-danger {
    background: #fdecea;
    border: 1px solid #ef9a9a;
    color: #b71c1c;
}

.alert-info {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    color: #0d47a1;
}

.alert-warning {
    background: #fffde7;
    border: 1px solid #fff176;
    color: #f57f17;
}

/* ---- JOBS LIST (full page) ---- */
.jobs-page {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    padding: 32px 0;
}

.filter-sidebar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 70px;
}

.filter-sidebar h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.filter-sidebar h3 .hi {
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.filter-group label .hi {
    text-transform: none;
    font-weight: 500;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    font-family: var(--font-main);
    outline: none;
}

.filter-group select:focus,
.filter-group input:focus {
    border-color: var(--primary);
}

.jobs-list {}

.jobs-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.jobs-list-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.jobs-list-header .hi {
    font-size: 13px;
    color: var(--muted);
}

.results-count {
    font-size: 13px;
    color: var(--muted);
}

.job-list-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow .2s;
    position: relative;
}

.job-list-card:hover {
    box-shadow: var(--shadow-md);
}

.job-list-card .company-logo-lg {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.job-list-card .job-info {
    flex: 1;
}

.job-list-card .job-title-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 4px;
}

.job-list-card .job-title-hi {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 10px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.job-tag {
    background: var(--light-bg);
    color: var(--primary);
    border: 1px solid var(--border);
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-tag i {
    font-size: 11px;
}

.job-list-card .job-action {
    flex-shrink: 0;
    text-align: right;
}

.job-list-card .vacancy-count {
    background: #e8f5e9;
    color: var(--green);
    border: 1px solid #c8e6c9;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 10px;
    white-space: nowrap;
}

/* ---- PAGINATION ---- */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.page-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    text-decoration: none;
}

.page-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    text-decoration: none;
}

.page-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ---- DASHBOARD ---- */
.dashboard-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    padding: 32px 0;
}

.dashboard-sidebar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: fit-content;
}

.dash-profile-block {
    background: var(--primary);
    padding: 24px;
    text-align: center;
    color: #fff;
}

.dash-profile-block .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 12px;
    color: var(--saffron);
    overflow: hidden;
}

.dash-profile-block .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dash-profile-block .user-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dash-profile-block .reg-no {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.dash-nav-list {
    list-style: none;
}

.dash-nav-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    font-size: 13px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: all .2s;
    text-decoration: none;
}

.dash-nav-list li a:hover,
.dash-nav-list li a.active {
    background: var(--light-bg);
    color: var(--primary);
    border-left: 3px solid var(--saffron);
    padding-left: 17px;
    text-decoration: none;
}

.dash-nav-list li a i {
    width: 18px;
    color: var(--primary-light);
}

.dash-nav-list li a .nav-hi {
    font-size: 11px;
    color: var(--muted);
    display: block;
}

.dash-content {}

.dash-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.dash-card-header {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.dash-card-body {
    padding: 20px;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--saffron);
}

.stat-card .stat-icon {
    font-size: 28px;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.stat-card .stat-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.stat-card .stat-label {
    font-size: 12px;
    color: var(--muted);
}

/* ---- TABLE ---- */
.table-wrap {
    overflow-x: auto;
}

table.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

table.data-table th {
    background: var(--primary);
    color: #fff;
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

table.data-table th .hi {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

table.data-table td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

table.data-table tr:hover {
    background: var(--light-bg);
}

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
}

.status-applied {
    background: #e3f2fd;
    color: #1565c0;
}

.status-shortlisted {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-interview {
    background: #fff3e0;
    color: #e65100;
}

.status-selected {
    background: #e8f5e9;
    color: #1b5e20;
}

.status-rejected {
    background: #fdecea;
    color: #b71c1c;
}

/* ---- FOOTER ---- */
.main-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0 0;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.footer-brand .brand-hi {
    color: var(--saffron);
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--saffron);
    display: inline-block;
}

.footer-col h4 .hi {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--saffron);
    text-decoration: none;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 14px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .hi {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* ---- BREADCRUMB ---- */
.breadcrumb-bar {
    background: var(--primary-dark);
    padding: 10px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    list-style: none;
}

.breadcrumb li::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--saffron);
}

.breadcrumb .active {
    color: var(--saffron);
}

/* ---- PROGRESS BAR ---- */
.profile-progress-bar {
    background: var(--border);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 6px;
    overflow: hidden;
}

.profile-progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-light), var(--saffron));
    border-radius: 4px;
    transition: width .5s ease;
}

/* ---- LOGIN PAGE ---- */
.login-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--light-bg);
}

.login-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    box-shadow: var(--shadow-md);
}

.login-card-header {
    background: var(--primary);
    padding: 28px 32px;
    text-align: center;
    border-bottom: 3px solid var(--saffron);
}

.login-card-header .emblem {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    opacity: 0.9;
}

.login-card-header h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.login-card-header .hi {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.login-card-body {
    padding: 32px;
}

/* ---- JOB DETAIL ---- */
.job-detail-header {
    background: var(--primary);
    color: #fff;
    padding: 32px 0;
}

.job-detail-header .job-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.job-detail-header .job-title-hi {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.job-detail-header .job-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.job-detail-header .meta-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 3px;
}

.job-detail-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    padding: 32px 0;
}

.job-detail-main {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
}

.job-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 80px;
    align-self: start;
}

.detail-section {
    margin-bottom: 28px;
}

.detail-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}

.detail-section h3 .hi {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
}

.detail-list {
    list-style: none;
}

.detail-list li {
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--light-bg);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.detail-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.key-val-table {
    width: 100%;
    font-size: 14px;
}

.key-val-table tr td {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-bg);
    vertical-align: top;
}

.key-val-table tr td:first-child {
    color: var(--muted);
    width: 45%;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ---- NOTICE BOARD ---- */
.notice-board {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.notice-board-header {
    background: var(--danger);
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-board-list {
    list-style: none;
}

.notice-board-list li {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.notice-board-list li::before {
    content: '▶';
    color: var(--saffron);
    font-size: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ---- ADMIN ---- */
.admin-sidebar {
    width: 240px;
    background: var(--primary-dark);
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
}

.admin-sidebar-header {
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-header .brand {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.admin-sidebar-header .brand-hi {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.admin-nav {
    list-style: none;
}

.admin-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    transition: all .2s;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.admin-nav li a:hover,
.admin-nav li a.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-left-color: var(--saffron);
}

.admin-nav li a i {
    width: 18px;
}

.admin-nav .nav-hi {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    display: block;
}

.admin-main {
    margin-left: 240px;
    padding: 24px;
    min-height: 100vh;
    background: var(--light-bg);
}

.admin-topbar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.admin-topbar h1 {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}

.admin-topbar .hi {
    font-size: 12px;
    color: var(--muted);
}

/* ---- HAMBURGER BUTTON (hidden on desktop) ---- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

.nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {

    /* --- Top utility bar --- */
    .gov-header-top {
        display: none;
    }

    /* --- Gov header main --- */
    .gov-header-main {
        padding: 10px 0;
    }

    .gov-header-main .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 0 16px;
    }

    .gov-emblem {
        width: 56px;
        height: 56px;
    }

    .gov-title-block .dept-name {
        font-size: 10px;
    }

    .gov-title-block .site-name-hi {
        font-size: 18px;
    }

    .gov-title-block .site-name-en {
        font-size: 14px;
    }

    .gov-title-block .tagline {
        font-size: 10px;
        display: none;
    }

    .gov-header-right {
        display: none;
    }

    /* --- Navigation --- */
    .main-nav .container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 0 12px;
        position: relative;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 3;
        background: var(--primary-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list.nav-open {
        display: flex;
    }

    .nav-list li>a {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-list li>a .hi {
        display: inline;
        font-size: 11px;
        margin-left: 4px;
    }

    .nav-auth {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 4;
        gap: 0;
        background: var(--primary-dark);
        padding: 8px 12px 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-auth.nav-open {
        display: flex;
    }

    .nav-auth .btn-nav-login,
    .nav-auth .btn-nav-register {
        width: 100%;
        text-align: center;
        margin: 4px 0;
    }

    /* --- Other page elements --- */
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .jobs-page {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        position: static;
    }

    .job-detail-body {
        grid-template-columns: 1fr;
    }

    .job-detail-sidebar {
        position: static;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .search-box {
        flex-direction: column;
    }

    .stat-cards {
        grid-template-columns: 1fr 1fr;
    }

    .form-row-3 {
        grid-template-columns: 1fr 1fr;
    }

    .doc-upload-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .gov-emblem {
        width: 48px;
        height: 48px;
    }

    .gov-title-block .site-name-hi {
        font-size: 16px;
    }

    .gov-title-block .site-name-en {
        font-size: 13px;
    }

    .gov-title-block .dept-name {
        font-size: 9px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row-3,
    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .stat-cards {
        grid-template-columns: 1fr;
    }
}

/* ---- UTILITIES ---- */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-4 {
    margin-top: 4px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-8 {
    gap: 8px;
}

.gap-16 {
    gap: 16px;
}

.w-100 {
    width: 100%;
}

.text-muted {
    color: var(--muted);
}

.text-primary {
    color: var(--primary);
}

.text-saffron {
    color: var(--saffron);
}

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.font-bold {
    font-weight: 700;
}

.font-small {
    font-size: 12px;
}

.hidden {
    display: none;
}