/* =========================================================
   SARKARI KAAM
   PREMIUM GOVERNMENT PORTAL UI
   Production CSS
   Works with the supplied index.html + sarkari.js
========================================================= */


/* =========================================================
   01. ROOT / DESIGN SYSTEM
========================================================= */

:root {

    --navy-950: #07111f;
    --navy-900: #0b1b2e;
    --navy-850: #10263f;
    --navy-800: #143452;

    --blue: #155eef;
    --blue-dark: #0b4acb;
    --blue-soft: #eaf2ff;

    --saffron: #f59e0b;
    --saffron-soft: #fff7e6;

    --green: #079455;
    --green-soft: #eafaf3;

    --red: #dc2626;
    --purple: #7c3aed;
    --teal: #0891b2;

    --white: #ffffff;
    --surface: #f8fafc;
    --surface-2: #f1f5f9;

    --text: #102033;
    --text-soft: #53657a;
    --muted: #718096;

    --border: #e2e8f0;
    --border-strong: #cbd5e1;

    --shadow-sm:
        0 2px 8px rgba(15, 23, 42, .05);

    --shadow-md:
        0 12px 30px rgba(15, 23, 42, .08);

    --shadow-lg:
        0 24px 60px rgba(15, 23, 42, .12);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --container: 1240px;

    --transition:
        180ms cubic-bezier(.2,.8,.2,1);
}


/* =========================================================
   02. RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {

    min-height: 100vh;

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--surface);

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;

    transition:
        background .3s ease,
        color .3s ease;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: rgba(21, 94, 239, .18);
    color: var(--navy-950);
}


/* =========================================================
   03. GLOBAL CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   04. TOP ANNOUNCEMENT
========================================================= */

.top-announcement {

    min-height: 38px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #e8f1ff;

    background:
        linear-gradient(
            90deg,
            #07111f,
            #0d2540,
            #07111f
        );

    border-bottom:
        1px solid rgba(255,255,255,.08);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: .01em;
}

.announcement-track {

    width: max-content;

    min-width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    padding: 8px 20px;

    white-space: nowrap;
}

.announcement-track > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-divider {
    opacity: .35;
}


/* =========================================================
   05. TOP ACTIONS
========================================================= */

.top-actions {

    position: absolute;

    top: 7px;
    right: 22px;

    z-index: 20;

    display: flex;
    gap: 8px;
}

.top-actions a {

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 5px 11px;

    border-radius: 8px;

    color: #dce9fa;

    font-size: 11px;
    font-weight: 700;

    transition: var(--transition);
}

.top-actions a:hover {

    color: #fff;

    background:
        rgba(255,255,255,.09);
}


/* =========================================================
   06. HEADER
========================================================= */

header {

    position: sticky;
    top: 0;

    z-index: 1000;

    background:
        rgba(255,255,255,.92);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid rgba(226,232,240,.85);

    box-shadow:
        0 5px 20px rgba(15,23,42,.04);
}

.header-inner {

    min-height: 76px;

    display: flex;
    align-items: center;
    gap: 26px;
}


/* =========================================================
   07. BRAND
========================================================= */

.brand {

    display: flex;
    align-items: center;
    gap: 11px;

    min-width: max-content;
}

.brand-icon {

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    color: #fff;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #155eef,
            #0b4acb
        );

    box-shadow:
        0 9px 22px rgba(21,94,239,.24);

    font-size: 20px;
}

.brand-text {

    display: flex;
    flex-direction: column;

    line-height: 1.15;
}

.brand-text strong {

    color: var(--navy-900);

    font-size: 19px;
    font-weight: 850;

    letter-spacing: -.03em;
}

.brand-text small {

    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .04em;
}


/* =========================================================
   08. NAVIGATION
========================================================= */

.main-nav {

    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 3px;
}

.main-nav a {

    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 10px 12px;

    color: #526276;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.main-nav a i {
    font-size: 12px;
}

.main-nav a:hover {

    color: var(--blue);

    background:
        var(--blue-soft);
}

.main-nav a.active {

    color: var(--blue);

    background:
        var(--blue-soft);
}

.main-nav a.active::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 18px;
    height: 3px;

    border-radius: 999px;

    background: var(--blue);

    transform: translateX(-50%);
}


/* =========================================================
   09. THEME BUTTON
========================================================= */

.theme-btn {

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    color: #526276;

    border:
        1px solid var(--border);

    border-radius: 11px;

    background: #fff;

    transition: var(--transition);
}

.theme-btn:hover {

    color: var(--blue);

    border-color:
        rgba(21,94,239,.3);

    background:
        var(--blue-soft);

    transform: translateY(-2px);
}


/* =========================================================
   10. MOBILE MENU
========================================================= */

.mobile-menu-btn {

    display: none;

    width: 42px;
    height: 42px;

    place-items: center;

    margin-left: auto;

    color: var(--navy-900);

    background: transparent;

    border:
        1px solid var(--border);

    border-radius: 11px;
}


/* =========================================================
   11. HERO
========================================================= */

.hero {

    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(21,94,239,.32),
            transparent 32%
        ),
        radial-gradient(
            circle at 20% 90%,
            rgba(7,148,85,.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #07111f 0%,
            #0b1d31 48%,
            #102b48 100%
        );
}

.hero::before {

    content: "";

    position: absolute;
    inset: 0;

    opacity: .35;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size:
        42px 42px;

    pointer-events: none;
}

.hero-overlay {
    display: none;
}

.hero-container {

    position: relative;
    z-index: 2;

    min-height: 650px;

    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(340px, .85fr);

    align-items: center;

    gap: 70px;

    padding-block: 80px;
}

.hero-content {
    max-width: 720px;
}


/* =========================================================
   12. HERO BADGE
========================================================= */

.hero-badge {

    width: max-content;
    max-width: 100%;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 23px;
    padding: 8px 13px;

    color: #cfe1ff;

    border:
        1px solid rgba(148,190,255,.2);

    border-radius: 999px;

    background:
        rgba(255,255,255,.06);

    box-shadow:
        inset 0 1px rgba(255,255,255,.05);

    font-size: 12px;
    font-weight: 700;
}

.hero-badge i {
    color: #7eb0ff;
}


/* =========================================================
   13. HERO TITLE
========================================================= */

.hero h1 {

    max-width: 780px;

    margin-bottom: 22px;

    font-size:
        clamp(42px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -.055em;

    font-weight: 900;
}

.hero h1 span {
    display: block;
}

.hero h1 span:last-child {

    color: #78a9ff;

    background:
        linear-gradient(
            90deg,
            #78a9ff,
            #b5d1ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   14. HERO DESCRIPTION
========================================================= */

.hero-content > p {

    max-width: 650px;

    margin-bottom: 30px;

    color: #b8c9dc;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   15. SEARCH
========================================================= */

.hero-search {

    position: relative;

    max-width: 700px;

    display: flex;
    align-items: center;

    padding: 7px;

    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 15px;

    background:
        rgba(255,255,255,.075);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.18);
}

.hero-search > i {

    margin-left: 14px;

    color: #91a8c2;

    font-size: 15px;
}

.hero-search input {

    flex: 1;

    min-width: 0;

    height: 48px;

    padding:
        0 13px;

    color: #fff;

    border: 0;
    outline: 0;

    background: transparent;

    font-size: 14px;
}

.hero-search input::placeholder {
    color: #8ea3bb;
}

.hero-search button {

    min-width: 105px;
    height: 48px;

    padding: 0 18px;

    color: #fff;

    border: 0;
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #246bff,
            #1255db
        );

    box-shadow:
        0 7px 20px rgba(21,94,239,.3);

    font-size: 13px;
    font-weight: 800;

    transition: var(--transition);
}

.hero-search button:hover {

    transform: translateY(-1px);

    box-shadow:
        0 11px 26px rgba(21,94,239,.4);
}

.hero-search button:disabled {
    opacity: .65;
    cursor: wait;
}


/* =========================================================
   16. SEARCH RESULTS
========================================================= */

.search-message,
.search-results {

    position: relative;
    z-index: 20;

    width: 100%;
    max-width: 700px;

    margin-top: 8px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background: #fff;

    box-shadow: var(--shadow-lg);

    color: var(--text);
}

.search-results:empty {
    display: none;
}

.search-result-item {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding: 13px 16px;

    border-bottom:
        1px solid var(--border);

    font-size: 13px;
}

.search-result-item:last-child {
    border-bottom: 0;
}

.search-result-item strong {
    font-weight: 750;
}

.search-result-item a {

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--blue);

    font-weight: 750;
}

.search-result-item a:hover {
    text-decoration: underline;
}


/* =========================================================
   17. HERO BUTTONS
========================================================= */

.hero-actions {

    display: flex;
    flex-wrap: wrap;
    gap: 11px;

    margin-top: 25px;
}

.btn {

    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding:
        0 18px;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 800;

    transition: var(--transition);
}

.btn-primary {

    color: #fff;

    background:
        var(--blue);

    box-shadow:
        0 10px 25px rgba(21,94,239,.25);
}

.btn-primary:hover {

    background:
        var(--blue-dark);

    transform:
        translateY(-2px);
}

.btn-secondary {

    color: #dce9fa;

    border:
        1px solid rgba(255,255,255,.18);

    background:
        rgba(255,255,255,.06);
}

.btn-secondary:hover {

    color: #fff;

    border-color:
        rgba(255,255,255,.35);

    background:
        rgba(255,255,255,.11);

    transform:
        translateY(-2px);
}


/* =========================================================
   18. HERO TRUST
========================================================= */

.hero-trust {

    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 27px;

    color: #a8bdd5;

    font-size: 11px;
    font-weight: 650;
}

.hero-trust > span {

    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-trust i {
    color: #5ed29b;
}


/* =========================================================
   19. HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-height: 420px;

    display: grid;
    place-items: center;
}

.hero-card-main {

    position: relative;
    z-index: 3;

    width: min(330px, 80%);

    padding: 38px 32px;

    text-align: center;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.105),
            rgba(255,255,255,.035)
        );

    backdrop-filter:
        blur(20px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.25);
}

.hero-card-icon {

    width: 72px;
    height: 72px;

    display: grid;
    place-items: center;

    margin:
        0 auto 20px;

    color: #fff;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #246bff,
            #0d4ac3
        );

    box-shadow:
        0 14px 30px rgba(21,94,239,.32);

    font-size: 28px;
}

.hero-card-main h3 {

    margin-bottom: 8px;

    font-size: 24px;
    font-weight: 850;
}

.hero-card-main p {

    color: #aebfd2;

    font-size: 13px;
}

.hero-card-status {

    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 22px;
    padding: 7px 11px;

    color: #9de5bf;

    border:
        1px solid rgba(94,210,155,.16);

    border-radius: 999px;

    background:
        rgba(7,148,85,.08);

    font-size: 11px;
    font-weight: 700;
}

.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #45ce8a;

    box-shadow:
        0 0 0 5px rgba(69,206,138,.1);
}


/* =========================================================
   20. FLOATING CARDS
========================================================= */

.floating-card {

    position: absolute;
    z-index: 4;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 12px 15px;

    color: #dbe8f8;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 13px;

    background:
        rgba(10,29,48,.82);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 16px 35px rgba(0,0,0,.2);

    font-size: 12px;
    font-weight: 750;
}

.floating-card i {
    color: #79aaff;
}

.card-one {
    top: 15%;
    left: 3%;
}

.card-two {
    right: 0;
    top: 37%;
}

.card-three {
    left: 8%;
    bottom: 12%;
}


/* =========================================================
   21. STATS
========================================================= */

.stats-section {

    position: relative;
    z-index: 10;

    margin-top: -45px;
}

.stats-grid {

    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.stat-card {

    min-height: 105px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px;

    border:
        1px solid rgba(226,232,240,.9);

    border-radius: 17px;

    background:
        rgba(255,255,255,.96);

    box-shadow:
        var(--shadow-md);

    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    color: var(--blue);

    border-radius: 13px;

    background: var(--blue-soft);
}

.stat-card strong {

    display: block;

    color: var(--navy-900);

    font-size: 22px;
    line-height: 1.1;

    font-weight: 850;
}

.stat-card span {

    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 11px;
    font-weight: 650;
}


/* =========================================================
   22. ALL MAIN SECTIONS
========================================================= */

main > section:not(.hero):not(.cta) {

    padding:
        82px 0;

    background:
        var(--surface);
}

main > section:nth-of-type(even):not(.hero):not(.cta) {
    background: #fff;
}


/* =========================================================
   23. SECTION HEADING
========================================================= */

.section-heading {

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 32px;
}

.section-heading.centered {

    display: block;

    max-width: 700px;

    margin-inline: auto;

    text-align: center;
}

.section-label {

    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 10px;

    color: var(--blue);

    font-size: 10px;
    font-weight: 850;

    letter-spacing: .12em;
}

.section-label i {
    font-size: 10px;
}

.section-heading h2 {

    margin-bottom: 7px;

    color: var(--navy-900);

    font-size:
        clamp(28px, 3vw, 38px);

    line-height: 1.15;

    letter-spacing: -.035em;

    font-weight: 850;
}

.section-heading p {

    max-width: 650px;

    color: var(--text-soft);

    font-size: 14px;
}

.view-all {

    display: inline-flex;
    align-items: center;
    gap: 7px;

    flex: 0 0 auto;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    transition: var(--transition);
}

.view-all:hover {
    gap: 11px;
}


/* =========================================================
   24. CARD GRIDS
========================================================= */

.service-grid,
.job-grid,
.scheme-grid,
.bank-grid,
.result-grid,
.news-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}


/* =========================================================
   25. COMMON CARD
========================================================= */

.service-card,
.job-card,
.scheme-card,
.bank-card,
.result-card,
.news-card {

    position: relative;

    min-width: 0;

    display: flex;
    flex-direction: column;

    min-height: 250px;

    padding: 23px;

    border:
        1px solid var(--border);

    border-radius: var(--radius-md);

    background:
        #fff;

    box-shadow:
        var(--shadow-sm);

    overflow: hidden;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.service-card::before,
.job-card::before,
.scheme-card::before,
.bank-card::before,
.result-card::before,
.news-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    opacity: 0;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            #73a4ff
        );

    transition: var(--transition);
}

.service-card:hover,
.job-card:hover,
.scheme-card:hover,
.bank-card:hover,
.result-card:hover,
.news-card:hover {

    transform: translateY(-6px);

    border-color:
        rgba(21,94,239,.16);

    box-shadow:
        var(--shadow-lg);
}

.service-card:hover::before,
.job-card:hover::before,
.scheme-card:hover::before,
.bank-card:hover::before,
.result-card:hover::before,
.news-card:hover::before {
    opacity: 1;
}


/* =========================================================
   26. SERVICE CARDS
========================================================= */

.card-icon,
.scheme-icon,
.bank-icon,
.result-icon,
.job-icon {

    width: 49px;
    height: 49px;

    display: grid;
    place-items: center;

    margin-bottom: 17px;

    border-radius: 14px;

    font-size: 18px;
}

.card-icon.blue {
    color: #155eef;
    background: #eaf2ff;
}

.card-icon.orange {
    color: #d97706;
    background: #fff4dc;
}

.card-icon.green {
    color: #079455;
    background: #eafaf3;
}

.card-icon.red {
    color: #dc2626;
    background: #fff0f0;
}

.card-icon.purple {
    color: #7c3aed;
    background: #f3edff;
}

.card-icon.teal {
    color: #0891b2;
    background: #e7f9fc;
}

.service-card h3,
.job-card h3,
.scheme-card h3,
.bank-card h3,
.result-card h3,
.news-card h3 {

    margin-bottom: 8px;

    color: var(--navy-900);

    font-size: 16px;
    line-height: 1.3;

    font-weight: 800;
}

.service-card p,
.job-card p,
.scheme-card p,
.bank-card p,
.result-card p,
.news-card p {

    color: var(--text-soft);

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   27. CARD LINKS
========================================================= */

.service-card > a,
.job-card > a,
.scheme-card > a,
.bank-card > a,
.result-card > a,
.news-card > a {

    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: auto;
    padding-top: 18px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    transition: var(--transition);
}

.service-card > a:hover,
.job-card > a:hover,
.scheme-card > a:hover,
.bank-card > a:hover,
.result-card > a:hover,
.news-card > a:hover {

    gap: 11px;
}


/* =========================================================
   28. JOB CARD
========================================================= */

.job-top {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 3px;
}

.job-icon {

    margin-bottom: 12px;

    color: #155eef;
    background: #eaf2ff;
}

.verified {

    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 5px 8px;

    color: #087443;

    border-radius: 999px;

    background: #eafaf3;

    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   29. SCHEME CARD
========================================================= */

.scheme-icon {

    color: #b45309;
    background: #fff4dc;
}


/* =========================================================
   30. BANK CARD
========================================================= */

.bank-icon {

    color: #155eef;
    background: #eaf2ff;
}


/* =========================================================
   31. RESULT CARD
========================================================= */

.result-icon {

    color: #7c3aed;
    background: #f3edff;
}


/* =========================================================
   32. NEWS
========================================================= */

.news-card {

    min-height: 220px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fbfdff
        );
}

.news-tag {

    width: max-content;

    margin-bottom: 15px;
    padding: 5px 8px;

    color: var(--blue);

    border-radius: 6px;

    background: var(--blue-soft);

    font-size: 8px;
    font-weight: 850;

    letter-spacing: .08em;
}


/* =========================================================
   33. NOTICE BOARD
========================================================= */

.notice-board {

    display: grid;

    grid-template-columns:
        240px 1fr;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 19px;

    background: #fff;

    box-shadow: var(--shadow-md);
}

.notice-title {

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 25px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #0d2540,
            #102f50
        );
}

.notice-title > i {

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    color: #ffd37a;

    border-radius: 12px;

    background:
        rgba(255,255,255,.08);
}

.notice-title strong,
.notice-title span {
    display: block;
}

.notice-title strong {
    font-size: 14px;
}

.notice-title span {

    margin-top: 2px;

    color: #9fb5cc;

    font-size: 10px;
}

.notice-content {

    display: flex;
    flex-direction: column;

    padding: 8px 18px;
}

.notice-item {

    display: flex;
    align-items: center;
    gap: 12px;

    min-height: 58px;

    border-bottom:
        1px solid var(--border);

    color: var(--text-soft);

    font-size: 12px;
}

.notice-item:last-child {
    border-bottom: 0;
}

.notice-item > span:first-child {

    min-width: 48px;

    padding: 4px 6px;

    text-align: center;

    color: #087443;

    border-radius: 5px;

    background: #eafaf3;

    font-size: 8px;
    font-weight: 850;
}


/* =========================================================
   34. FAQ
========================================================= */

.faq-container {

    max-width: 850px;

    margin-inline: auto;

    display: grid;

    gap: 9px;
}

.faq-item {

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background: #fff;

    transition: var(--transition);
}

.faq-item:hover {
    border-color:
        rgba(21,94,239,.2);
}

.faq-item summary {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 17px 19px;

    color: var(--navy-900);

    cursor: pointer;

    list-style: none;

    font-size: 13px;
    font-weight: 750;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--muted);
    transition: transform .25s ease;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-item p {

    padding:
        0 19px 19px;

    color: var(--text-soft);

    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   35. CTA
========================================================= */

section.cta {

    padding:
        58px 0;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0b1b2e,
            #123b63
        );
}

.cta-inner {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.cta-inner > div > span {

    color: #7faef5;

    font-size: 10px;
    font-weight: 850;

    letter-spacing: .14em;
}

.cta-inner h2 {

    margin-top: 7px;

    font-size:
        clamp(25px, 3vw, 35px);

    line-height: 1.15;

    letter-spacing: -.035em;
}

.cta-inner p {

    margin-top: 9px;

    color: #a9bdd2;

    font-size: 13px;
}

.cta-btn {

    display: inline-flex;
    align-items: center;
    gap: 9px;

    flex: 0 0 auto;

    padding: 13px 18px;

    color: var(--navy-900);

    border-radius: 11px;

    background: #fff;

    font-size: 12px;
    font-weight: 850;

    transition: var(--transition);
}

.cta-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(0,0,0,.2);
}


/* =========================================================
   36. FOOTER
========================================================= */

footer {

    color: #a9b9ca;

    background:
        #07111f;
}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.45fr
        .8fr
        .9fr
        1fr;

    gap: 55px;

    padding:
        65px 0 45px;
}

.footer-logo {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #fff;

    font-size: 18px;
    font-weight: 850;
}

.footer-logo > span {

    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    color: #fff;

    border-radius: 10px;

    background: var(--blue);
}

.footer-brand > p {

    max-width: 330px;

    margin-top: 16px;

    color: #7f94a9;

    font-size: 12px;
    line-height: 1.8;
}

.footer-badge {

    width: max-content;

    display: flex;
    align-items: center;
    gap: 7px;

    margin-top: 16px;
    padding: 6px 9px;

    color: #8fb6ff;

    border:
        1px solid rgba(143,182,255,.12);

    border-radius: 7px;

    background:
        rgba(143,182,255,.05);

    font-size: 9px;
    font-weight: 750;
}

.footer-column {

    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column h3 {

    margin-bottom: 7px;

    color: #fff;

    font-size: 12px;
    font-weight: 800;
}

.footer-column a {

    width: max-content;

    color: #8196aa;

    font-size: 11px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-contact p {

    display: flex;
    align-items: flex-start;
    gap: 8px;

    color: #8196aa;

    font-size: 11px;
}

.footer-contact p i {
    margin-top: 4px;
    color: #6d9fff;
}

.social-icons {

    display: flex;
    gap: 7px;

    margin-top: 7px;
}

.social-icons a {

    width: 33px;
    height: 33px;

    display: grid;
    place-items: center;

    color: #8fa5ba;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 9px;

    background:
        rgba(255,255,255,.03);
}

.social-icons a:hover {

    color: #fff;

    background:
        var(--blue);

    border-color:
        var(--blue);

    transform: translateY(-2px);
}

.footer-bottom {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding:
        19px 0;

    border-top:
        1px solid rgba(255,255,255,.07);

    color: #61758a;

    font-size: 10px;
}


/* =========================================================
   37. BACK TO TOP
========================================================= */

#backToTop {

    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    color: #fff;

    border: 0;
    border-radius: 12px;

    background:
        var(--blue);

    box-shadow:
        0 12px 28px rgba(21,94,239,.3);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(15px);

    transition: var(--transition);
}

#backToTop.show {

    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}

#backToTop:hover {
    transform: translateY(-3px);
}


/* =========================================================
   38. LOADER
========================================================= */

.page-loader {

    position: fixed;
    inset: 0;

    z-index: 99999;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at 50% 40%,
            #143452,
            #07111f 65%
        );

    opacity: 1;
    visibility: visible;

    transition:
        opacity .45s ease,
        visibility .45s ease;
}

.page-loader.loaded {

    opacity: 0;
    visibility: hidden;

    pointer-events: none;
}

.loader-content {

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.loader-icon {

    width: 72px;
    height: 72px;

    display: grid;
    place-items: center;

    margin-bottom: 17px;

    color: #fff;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #155eef,
            #0b4acb
        );

    box-shadow:
        0 18px 45px rgba(21,94,239,.3);

    font-size: 27px;

    animation:
        loaderFloat 2s ease-in-out infinite;
}

.loader-content strong {

    color: #fff;

    font-size: 23px;
    font-weight: 850;
}

.loader-content > span {

    margin-top: 3px;

    color: #91a8c2;

    font-size: 11px;
}

.loader-spinner {

    width: 28px;
    height: 28px;

    margin-top: 22px;

    border:
        3px solid rgba(255,255,255,.12);

    border-top-color:
        #72a5ff;

    border-radius: 50%;

    animation:
        loaderSpin .8s linear infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}


/* =========================================================
   39. EMPTY / ERROR STATES
========================================================= */

.empty-state {

    grid-column: 1 / -1;

    padding: 35px;

    text-align: center;

    color: var(--muted);

    border:
        1px dashed var(--border-strong);

    border-radius: 15px;

    background:
        var(--surface-2);

    font-size: 13px;
}


/* =========================================================
   40. API GENERATED SMALL TEXT
========================================================= */

.scheme-card small,
.job-card small {

    display: block;

    margin-top: 10px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 650;
}


/* =========================================================
   41. DARK MODE
========================================================= */

body.dark-mode {

    --surface: #08111e;
    --surface-2: #0d1928;

    --text: #e8eef6;
    --text-soft: #aab9c9;
    --muted: #8193a6;

    --border: #1d2c3d;
    --border-strong: #2a3c51;

    background: #08111e;
    color: #e8eef6;
}

.dark-mode header {

    background:
        rgba(8,17,30,.91);

    border-color:
        rgba(255,255,255,.07);
}

.dark-mode .brand-text strong,
.dark-mode .section-heading h2,
.dark-mode .service-card h3,
.dark-mode .job-card h3,
.dark-mode .scheme-card h3,
.dark-mode .bank-card h3,
.dark-mode .result-card h3,
.dark-mode .news-card h3,
.dark-mode .stat-card strong,
.dark-mode .faq-item summary {

    color: #edf4fc;
}

.dark-mode .brand-text small,
.dark-mode .main-nav a {
    color: #8ea1b5;
}

.dark-mode .main-nav a:hover,
.dark-mode .main-nav a.active {
    color: #8db4ff;
    background:
        rgba(21,94,239,.13);
}

.dark-mode .theme-btn,
.dark-mode .mobile-menu-btn {

    color: #d5e1ef;

    border-color:
        var(--border);

    background:
        #0d1928;
}

.dark-mode main > section:not(.hero):not(.cta) {
    background: #08111e;
}

.dark-mode main > section:nth-of-type(even):not(.hero):not(.cta) {
    background: #0a1523;
}

.dark-mode .stat-card,
.dark-mode .service-card,
.dark-mode .job-card,
.dark-mode .scheme-card,
.dark-mode .bank-card,
.dark-mode .result-card,
.dark-mode .news-card,
.dark-mode .faq-item,
.dark-mode .notice-board {

    border-color:
        var(--border);

    background:
        #0d1928;

    box-shadow:
        0 12px 35px rgba(0,0,0,.18);
}

.dark-mode .stat-card:hover,
.dark-mode .service-card:hover,
.dark-mode .job-card:hover,
.dark-mode .scheme-card:hover,
.dark-mode .bank-card:hover,
.dark-mode .result-card:hover,
.dark-mode .news-card:hover {

    border-color:
        rgba(91,143,255,.25);
}

.dark-mode .notice-content {
    background: #0d1928;
}

.dark-mode .notice-item {
    border-color: var(--border);
}

.dark-mode .search-results,
.dark-mode .search-message {
    color: #e8eef6;
    border-color: var(--border);
    background: #0d1928;
}

.dark-mode .search-result-item {
    border-color: var(--border);
}

.dark-mode .search-result-item strong {
    color: #edf4fc;
}

.dark-mode .faq-item p {
    color: #9eb0c2;
}

.dark-mode .stat-card span {
    color: #8da0b3;
}

.dark-mode .card-icon.blue,
.dark-mode .job-icon,
.dark-mode .bank-icon,
.dark-mode .result-icon {
    background: rgba(21,94,239,.13);
}

.dark-mode .scheme-icon {
    background: rgba(245,158,11,.1);
}

.dark-mode .verified {
    background: rgba(7,148,85,.12);
}

.dark-mode .empty-state {
    background: #0d1928;
}


/* =========================================================
   42. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 0;
    }

    .main-nav a {
        padding-inline: 8px;
        font-size: 12px;
    }

    .hero-container {
        gap: 40px;
    }

    .service-grid,
    .job-grid,
    .scheme-grid,
    .bank-grid,
    .result-grid,
    .news-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================================
   43. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .top-actions {
        display: none;
    }

    .header-inner {
        min-height: 68px;
    }

    .mobile-menu-btn {
        display: grid;
    }

    .main-nav {

        position: absolute;

        top: calc(100% + 1px);
        left: 14px;
        right: 14px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 8px;

        border:
            1px solid var(--border);

        border-radius: 15px;

        background:
            rgba(255,255,255,.98);

        box-shadow:
            var(--shadow-lg);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 13px;
    }

    .main-nav a.active::after {
        display: none;
    }

    .dark-mode .main-nav {
        background: #0d1928;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {

        min-height: auto;

        grid-template-columns: 1fr;

        gap: 35px;

        padding:
            70px 0 80px;
    }

    .hero-content {
        max-width: none;
    }

    .hero h1 {
        font-size:
            clamp(39px, 12vw, 58px);
    }

    .hero-visual {
        min-height: 350px;
    }

    .stats-section {
        margin-top: -25px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .notice-board {
        grid-template-columns: 1fr;
    }

    .notice-title {
        padding: 20px;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        gap: 35px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   44. RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 560px) {

    .container {
        width:
            calc(100% - 24px);
    }

    .announcement-track {
        justify-content: flex-start;
        gap: 17px;
    }

    .brand-text small {
        display: none;
    }

    .brand-icon {
        width: 41px;
        height: 41px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .theme-btn {
        width: 38px;
        height: 38px;
    }

    .hero-container {
        padding-top: 55px;
    }

    .hero-badge {
        font-size: 10px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-search {
        padding: 6px;
    }

    .hero-search input {
        min-width: 0;
        font-size: 12px;
    }

    .hero-search button {
        min-width: 82px;
        padding-inline: 10px;
        font-size: 11px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 10px;
        font-size: 9px;
    }

    .hero-visual {
        min-height: 310px;
    }

    .hero-card-main {
        width: 260px;
        padding: 28px 22px;
    }

    .floating-card {
        padding: 9px 11px;
        font-size: 10px;
    }

    .card-one {
        left: 0;
    }

    .card-two {
        right: 0;
    }

    .card-three {
        left: 3%;
    }

    .stats-grid {

        grid-template-columns:
            1fr;

        gap: 10px;
    }

    main > section:not(.hero):not(.cta) {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .service-grid,
    .job-grid,
    .scheme-grid,
    .bank-grid,
    .result-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .job-card,
    .scheme-card,
    .bank-card,
    .result-card,
    .news-card {
        min-height: 220px;
    }

    .notice-content {
        padding-inline: 13px;
    }

    .notice-item {
        align-items: flex-start;
        padding: 13px 0;
        font-size: 11px;
    }

    .faq-item summary {
        font-size: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        font-size: 9px;
    }

    #backToTop {
        right: 14px;
        bottom: 14px;
    }
}


/* =========================================================
   45. ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {

    outline:
        3px solid rgba(21,94,239,.35);

    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;
    }
}