@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Premium High-Tech Light Mode */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.7);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-glow: rgba(79, 70, 229, 0.15);
    
    --border: rgba(15, 23, 42, 0.08);
    --border-color: rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.1);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    
    /* Category Colors - Light Tech */
    --color-job: #10b981;
    --color-job-light: rgba(16, 185, 129, 0.08);
    --color-admit: #3b82f6;
    --color-admit-light: rgba(59, 130, 246, 0.08);
    --color-result: #ef4444;
    --color-result-light: rgba(239, 68, 68, 0.08);
    --color-key: #f59e0b;
    --color-key-light: rgba(245, 158, 11, 0.08);
    --color-syllabus: #8b5cf6;
    --color-syllabus-light: rgba(139, 92, 246, 0.08);
    --color-admission: #ec4899;
    --color-admission-light: rgba(236, 72, 153, 0.08);
    --color-important: #06b6d4;
    --color-important-light: rgba(6, 182, 212, 0.08);
    --color-verify: #14b8a6;
    --color-verify-light: rgba(20, 184, 166, 0.08);

    --grid-bg: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
    --grid-size: 24px 24px;
}

[data-theme="dark"] {
    /* Premium High-Tech AI Dark Mode */
    --bg-primary: #030712; /* Pitch black */
    --bg-secondary: #0b0f19; /* Deep tech slate */
    --bg-card: rgba(11, 15, 25, 0.65);
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --primary: #6366f1; /* Glowing Indigo */
    --primary-hover: #818cf8;
    --primary-glow: rgba(99, 102, 241, 0.25);
    
    --border: rgba(255, 255, 255, 0.07);
    --border-color: rgba(255, 255, 255, 0.07);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
    
    /* Neon glow Category Colors */
    --color-job: #10b981;
    --color-job-light: rgba(16, 185, 129, 0.15);
    --color-admit: #3b82f6;
    --color-admit-light: rgba(59, 130, 246, 0.15);
    --color-result: #f43f5e;
    --color-result-light: rgba(244, 63, 94, 0.15);
    --color-key: #fbbf24;
    --color-key-light: rgba(251, 191, 36, 0.15);
    --color-syllabus: #a855f7;
    --color-syllabus-light: rgba(168, 85, 247, 0.15);
    --color-admission: #ec4899;
    --color-admission-light: rgba(236, 72, 153, 0.15);
    --color-important: #06b6d4;
    --color-important-light: rgba(6, 182, 212, 0.15);
    --color-verify: #14b8a6;
    --color-verify-light: rgba(20, 184, 166, 0.15);

    --grid-bg: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s;
    background-image: var(--grid-bg);
    background-size: var(--grid-size);
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

button, input, select, textarea {
    font-family: inherit;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: -2;
    transition: opacity 0.4s;
}

[data-theme="dark"] body::before {
    background: radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 55%),
                radial-gradient(circle at 15% 75%, rgba(168, 85, 247, 0.05) 0%, transparent 35%);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: background 0.3s, border 0.3s;
}

[data-theme="dark"] header {
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-job);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.logo-dot::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--color-job);
    opacity: 0;
    animation: ripple 2s infinite ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 14.5px;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background-color: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.1);
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

/* Quick Action Bar / Highlights (Marquee) */
.highlights-bar {
    background: rgba(99, 102, 241, 0.06);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-primary);
    padding: 10px 0;
    overflow: hidden;
    transition: all 0.3s;
}

[data-theme="dark"] .highlights-bar {
    background: rgba(11, 15, 25, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.marquee-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.marquee-badge {
    background: linear-gradient(135deg, #ef4444, #f43f5e);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.25);
    animation: flash 1.8s infinite alternate;
}

@keyframes flash {
    0% { opacity: 0.85; transform: scale(0.97); }
    100% { opacity: 1; transform: scale(1.03); }
}

.marquee-wrapper {
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-width: 0;
}

.marquee-text {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: marquee 100s linear infinite;
}

.marquee-text a {
    color: var(--text-primary);
    transition: color 0.2s;
    font-size: 14px;
}

.marquee-text a:hover {
    color: var(--primary);
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    line-height: 1.15;
    background: linear-gradient(to right, var(--text-primary) 30%, var(--primary) 70%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 16px;
    font-weight: 400;
}

/* Search Box Styling */
.search-wrapper {
    max-width: 540px;
    margin: 0 auto 30px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .search-input {
    background-color: rgba(11, 15, 25, 0.7);
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow), 0 8px 30px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .search-input:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.25), 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* Category Grid Setup */
.category-section {
    padding-bottom: 60px;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3-col,
    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .navbar {
        flex-direction: column;
        height: auto;
        padding: 18px 0;
        gap: 12px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* Category Cards (Glassmorphism) */
.category-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 480px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .category-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-sm);
}

/* Custom glow borders on hover matching category type */
.category-card:hover {
    transform: translateY(-5px);
}

.category-card:has(.category-header.job):hover {
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.12);
}
.category-card:has(.category-header.admit):hover {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.12);
}
.category-card:has(.category-header.result):hover {
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.12);
}
.category-card:has(.category-header.key):hover {
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.12);
}
.category-card:has(.category-header.syllabus):hover {
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.12);
}
.category-card:has(.category-header.admission):hover {
    border-color: rgba(236, 72, 153, 0.35);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.12);
}
.category-card:has(.category-header.important):hover {
    border-color: rgba(6, 182, 212, 0.35);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.12);
}
.category-card:has(.category-header.verify):hover {
    border-color: rgba(20, 184, 166, 0.35);
    box-shadow: 0 12px 30px rgba(20, 184, 166, 0.12);
}

/* Category Headers */
.category-header {
    padding: 18px 20px;
    color: var(--text-primary) !important;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    letter-spacing: -0.01em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: relative;
    background: rgba(0, 0, 0, 0.01);
}

[data-theme="dark"] .category-header {
    background: rgba(255, 255, 255, 0.02);
}

.category-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.category-header.job::after { background: var(--color-job); }
.category-header.admit::after { background: var(--color-admit); }
.category-header.result::after { background: var(--color-result); }
.category-header.key::after { background: var(--color-key); }
.category-header.syllabus::after { background: var(--color-syllabus); }
.category-header.admission::after { background: var(--color-admission); }
.category-header.important::after { background: var(--color-important); }
.category-header.verify::after { background: var(--color-verify); }

.category-header i {
    margin-right: 8px;
}

.category-header.job i { color: var(--color-job); }
.category-header.admit i { color: var(--color-admit); }
.category-header.result i { color: var(--color-result); }
.category-header.key i { color: var(--color-key); }
.category-header.syllabus i { color: var(--color-syllabus); }
.category-header.admission i { color: var(--color-admission); }
.category-header.important i { color: var(--color-important); }
.category-header.verify i { color: var(--color-verify); }

.category-header a {
    font-size: 11px;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.6;
    transition: opacity 0.2s, color 0.2s, border-color 0.2s;
    border: 1px solid var(--border);
    padding: 4px 8px;
    border-radius: 6px;
    color: var(--text-secondary);
}

.category-header a:hover {
    opacity: 1;
    text-decoration: none !important;
    border-color: var(--primary);
    color: var(--primary);
}

.category-body {
    padding: 8px 0;
    overflow-y: auto;
    flex-grow: 1;
    scrollbar-width: thin;
}

/* Custom Scrollbar for Category Lists */
.category-body::-webkit-scrollbar {
    width: 4px;
}
.category-body::-webkit-scrollbar-track {
    background: transparent;
}
.category-body::-webkit-scrollbar-thumb {
    background-color: var(--border);
    border-radius: 4px;
}

/* Post Items in lists */
.post-item {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 14px;
    position: relative;
}

.post-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    transition: height 0.25s ease;
}

.post-item.job::before { background-color: var(--color-job); }
.post-item.admit::before { background-color: var(--color-admit); }
.post-item.result::before { background-color: var(--color-result); }
.post-item.key::before { background-color: var(--color-key); }
.post-item.syllabus::before { background-color: var(--color-syllabus); }
.post-item.admission::before { background-color: var(--color-admission); }
.post-item.important::before { background-color: var(--color-important); }
.post-item.verify::before { background-color: var(--color-verify); }

.post-item:hover {
    background-color: rgba(99, 102, 241, 0.03);
    padding-left: 25px;
}

[data-theme="dark"] .post-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.post-item:hover::before {
    height: 100%;
}

.post-item:last-child {
    border-bottom: none;
}

.post-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.post-item:hover .post-bullet {
    transform: scale(1.3);
}

.post-item.job .post-bullet { background-color: var(--color-job); }
.post-item.admit .post-bullet { background-color: var(--color-admit); }
.post-item.result .post-bullet { background-color: var(--color-result); }
.post-item.key .post-bullet { background-color: var(--color-key); }
.post-item.syllabus .post-bullet { background-color: var(--color-syllabus); }
.post-item.admission .post-bullet { background-color: var(--color-admission); }
.post-item.important .post-bullet { background-color: var(--color-important); }
.post-item.verify .post-bullet { background-color: var(--color-verify); }

.post-badge {
    background: linear-gradient(135deg, #ef4444, #f43f5e);
    color: white;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Detail Post Page Styling */
.post-container {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px;
    margin: 40px auto;
    max-width: 900px;
    width: 100%;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    word-wrap: break-word;
    transition: background-color 0.3s, border 0.3s;
}

[data-theme="dark"] .post-container {
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.06);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.post-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    line-height: 1.3;
}

.post-content-body {
    margin-top: 25px;
    max-width: 100%;
    width: 100%;
}

.post-content-body * {
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
}

/* Responsive table wrapper to contain side-scrolling */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 25px 0;
    border: 1px solid var(--border);
    border-radius: 8px;
}

/* Table Override Styles for detail content */
.post-content-body table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
    font-size: 14.5px;
    border: none !important;
}

.post-content-body tr {
    border-bottom: 1px solid var(--border);
    transition: background-color 0.2s;
}

.post-content-body tr:hover {
    background-color: rgba(99, 102, 241, 0.02);
}

.post-content-body td,
.post-content-body th {
    padding: 14px 18px !important;
    text-align: left !important;
    border: 1px solid var(--border) !important;
}

.post-content-body tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.01);
}

[data-theme="dark"] .post-content-body tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.01);
}

.post-content-body th {
    background-color: rgba(99, 102, 241, 0.08) !important;
    color: var(--text-primary) !important;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    border-bottom: 2px solid var(--border) !important;
}

[data-theme="dark"] .post-content-body th {
    background-color: rgba(99, 102, 241, 0.15) !important;
}

.post-content-body a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--primary);
    transition: all 0.2s;
}

.post-content-body a:hover {
    color: var(--primary-hover);
    border-bottom-style: solid;
}

/* Floating Sidebar Social Sticky Buttons */
.social-sidebar {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.social-btn.telegram { background-color: #0088cc; }
.social-btn.whatsapp { background-color: #25d366; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-btn.facebook { background-color: #1877f2; }

/* Footers */
.site-footer {
    background-color: #090d16;
    color: #94a3b8;
    padding: 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: inherit;
}

.site-footer a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.2s;
}

.site-footer a:hover {
    color: var(--primary) !important;
    text-decoration: none;
}

.sarkari-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    text-align: center;
}

.sarkari-wrapper h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    letter-spacing: -0.01em;
}

.sarkari-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.sarkari-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: #cbd5e1;
    padding: 10px 16px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
}

.sarkari-grid a::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
}

.sarkari-grid a:hover {
    background-color: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.gb-container-d1f47294 {
    background-color: #05080f;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.gb-headline-e41178b2 {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 18px;
}

.gb-headline-e41178b2 strong a {
    color: #ffffff;
    font-weight: 700;
}

.gb-container-658f27a5 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 15px;
}

.gb-button-text {
    font-size: 14px;
    color: #94a3b8 !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gb-button-text:hover {
    color: #ffffff !important;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 16px;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--bg-secondary);
}

.theme-toggle:hover {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--primary);
}

[data-theme="dark"] .theme-toggle {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

/* SARKARI RESULT COLOR HIGHLIGHT GRID BOXES */
.highlight-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.highlight-box-card {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px 14px;
    min-height: 85px;
    border-radius: 12px;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13.5px;
    line-height: 1.4;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.01em;
}

/* Modern Neon-Tinted Highlight Card Designs */
.highlight-box-card.color-0 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.02)) !important;
    border-color: rgba(16, 185, 129, 0.25) !important;
    color: #10b981 !important;
}
.highlight-box-card.color-1 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.02)) !important;
    border-color: rgba(59, 130, 246, 0.25) !important;
    color: #3b82f6 !important;
}
.highlight-box-card.color-2 {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(249, 115, 22, 0.02)) !important;
    border-color: rgba(249, 115, 22, 0.25) !important;
    color: #f97316 !important;
}
.highlight-box-card.color-3 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(236, 72, 153, 0.02)) !important;
    border-color: rgba(236, 72, 153, 0.25) !important;
    color: #ec4899 !important;
}
.highlight-box-card.color-4 {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.02)) !important;
    border-color: rgba(239, 68, 68, 0.25) !important;
    color: #ef4444 !important;
}
.highlight-box-card.color-5 {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(20, 184, 166, 0.02)) !important;
    border-color: rgba(20, 184, 166, 0.25) !important;
    color: #14b8a6 !important;
}
.highlight-box-card.color-6 {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(168, 85, 247, 0.02)) !important;
    border-color: rgba(168, 85, 247, 0.25) !important;
    color: #a855f7 !important;
}
.highlight-box-card.color-7 {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(6, 182, 212, 0.02)) !important;
    border-color: rgba(6, 182, 212, 0.25) !important;
    color: #06b6d4 !important;
}

[data-theme="dark"] .highlight-box-card.color-0 { background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(16, 185, 129, 0.03)) !important; }
[data-theme="dark"] .highlight-box-card.color-1 { background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0.03)) !important; }
[data-theme="dark"] .highlight-box-card.color-2 { background: linear-gradient(135deg, rgba(249, 115, 22, 0.16), rgba(249, 115, 22, 0.03)) !important; }
[data-theme="dark"] .highlight-box-card.color-3 { background: linear-gradient(135deg, rgba(236, 72, 153, 0.16), rgba(236, 72, 153, 0.03)) !important; }
[data-theme="dark"] .highlight-box-card.color-4 { background: linear-gradient(135deg, rgba(239, 68, 68, 0.16), rgba(239, 68, 68, 0.03)) !important; }
[data-theme="dark"] .highlight-box-card.color-5 { background: linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(20, 184, 166, 0.03)) !important; }
[data-theme="dark"] .highlight-box-card.color-6 { background: linear-gradient(135deg, rgba(168, 85, 247, 0.16), rgba(168, 85, 247, 0.03)) !important; }
[data-theme="dark"] .highlight-box-card.color-7 { background: linear-gradient(135deg, rgba(6, 182, 212, 0.16), rgba(6, 182, 212, 0.03)) !important; }

/* Highlights Card Hover Effects */
.highlight-box-card:hover {
    transform: translateY(-4px) scale(1.03);
}

.highlight-box-card.color-0:hover { border-color: #10b981 !important; box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3) !important; }
.highlight-box-card.color-1:hover { border-color: #3b82f6 !important; box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3) !important; }
.highlight-box-card.color-2:hover { border-color: #f97316 !important; box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3) !important; }
.highlight-box-card.color-3:hover { border-color: #ec4899 !important; box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3) !important; }
.highlight-box-card.color-4:hover { border-color: #ef4444 !important; box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3) !important; }
.highlight-box-card.color-5:hover { border-color: #14b8a6 !important; box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3) !important; }
.highlight-box-card.color-6:hover { border-color: #a855f7 !important; box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3) !important; }
.highlight-box-card.color-7:hover { border-color: #06b6d4 !important; box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3) !important; }

@media (max-width: 992px) {
    .highlight-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .highlight-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-bottom: 25px;
    }

    .highlight-box-card {
        font-size: 12px;
        padding: 10px 8px;
        min-height: 60px;
        border-radius: 8px;
    }
}

/* Custom premium list and bullet styling inside post body content */
.post-content-body ul {
    list-style-type: none !important;
    padding-left: 0 !important;
    margin: 10px 0 !important;
}

.post-content-body li {
    position: relative !important;
    padding-left: 20px !important;
    margin-bottom: 8px !important;
    line-height: 1.6 !important;
}

.post-content-body li::before {
    content: "•" !important;
    position: absolute !important;
    left: 4px !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    top: -1px !important;
}

.premium-bullet {
    color: var(--primary) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    margin-right: 6px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    line-height: 1 !important;
}

/* FAQ Container Section */
.faq-section {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: var(--shadow-sm);
    transition: background-color 0.3s, border 0.3s;
}

[data-theme="dark"] .faq-section {
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.06);
}

.faq-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    letter-spacing: -0.01em;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.faq-item .question {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.faq-item .answer {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SEO content details styling */
.seo-description-container {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: var(--shadow-sm);
    line-height: 1.7;
    color: var(--text-primary);
    transition: background-color 0.3s, border 0.3s;
}

[data-theme="dark"] .seo-description-container {
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.06);
}

.seo-description-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: var(--text-primary);
}

.seo-description-container p {
    margin-bottom: 15px;
    font-size: 14.5px;
    color: var(--text-secondary);
}

.seo-description-container table {
    width: 80% !important;
    max-width: 800px;
    margin: 25px auto !important;
    border-collapse: collapse !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px;
    overflow: hidden;
}

.seo-description-container td {
    padding: 12px 18px !important;
    border: 1px solid var(--border) !important;
    text-align: center !important;
    font-size: 14px;
    color: var(--text-secondary);
}

.seo-description-container tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.01);
}

[data-theme="dark"] .seo-description-container tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.01);
}

.seo-description-container a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.seo-description-container ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.seo-description-container li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Tablet Viewport Overrides (max-width: 992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 40px 0 25px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .category-card {
        height: 420px;
    }

    .post-container {
        padding: 20px !important;
        margin: 20px auto !important;
        border-radius: 16px !important;
    }
}

/* Mobile Large Viewport (max-width: 768px) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 14.5px;
        margin-bottom: 25px;
    }

    .category-card {
        height: 400px;
    }

    .post-item {
        padding: 10px 16px;
        font-size: 13.5px;
    }

    .post-container {
        padding: 16px !important;
        margin: 15px auto !important;
        border-radius: 12px !important;
    }

    .post-title {
        font-size: 22px !important;
    }
}

/* Mobile Small Viewport (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo {
        font-size: 21px;
    }

    .hero {
        padding: 30px 0 15px;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.25;
    }

    .hero p {
        font-size: 13.5px;
    }

    .search-input {
        padding: 13px 20px;
        font-size: 14px;
    }

    .category-header {
        padding: 14px 16px;
        font-size: 14.5px;
    }

    .post-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .post-container {
        padding: 12px !important;
        margin: 10px auto !important;
        border-radius: 8px !important;
    }

    .post-title {
        font-size: 17px !important;
    }
}

/* Dynamic color assignments for category result pages */
.category-latest_job { --current-cat-color: var(--color-job); }
.category-admit_card { --current-cat-color: var(--color-admit); }
.category-result { --current-cat-color: var(--color-result); }
.category-answer_key { --current-cat-color: var(--color-key); }
.category-syllabus { --current-cat-color: var(--color-syllabus); }
.category-search_admission { --current-cat-color: var(--color-admission); }
.category-important { --current-cat-color: var(--color-important); }
.category-certificate_verification { --current-cat-color: var(--color-verify); }

/* Category result page listing details layout */
.category-page-container {
    padding: 40px 20px;
    position: relative;
}

/* Color-matched background aurora glow for category pages */
.category-page-container::after {
    content: '';
    position: fixed;
    bottom: -50px;
    right: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--current-cat-color) 0%, transparent 70%);
    opacity: 0.04;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.4s;
}

[data-theme="dark"] .category-page-container::after {
    opacity: 0.1;
}

.category-page-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.category-page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.category-page-title i {
    color: var(--current-cat-color, var(--primary));
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.2));
}

.category-posts-list {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

[data-theme="dark"] .category-posts-list {
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.06);
}

.category-posts-list:hover {
    border-color: var(--current-cat-color);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .category-posts-list:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.category-post-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.category-post-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background-color: var(--current-cat-color, var(--primary));
    transition: height 0.25s ease;
}

.category-post-item:hover {
    background-color: rgba(99, 102, 241, 0.02);
    padding-left: 30px;
}

[data-theme="dark"] .category-post-item:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.category-post-item:hover::before {
    height: 100%;
}

.category-post-item:last-child {
    border-bottom: none;
}

.category-post-title {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-primary);
    padding-right: 15px;
    line-height: 1.5;
    transition: color 0.2s;
}

.category-post-item:hover .category-post-title {
    color: var(--current-cat-color, var(--primary));
}

.category-post-date {
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 992px) {
    .category-page-container {
        padding: 30px 16px;
    }

    .category-page-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .category-page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .category-post-item {
        padding: 14px 20px;
    }

    .category-post-title {
        font-size: 14.5px;
    }
}

@media (max-width: 480px) {
    .category-page-title {
        font-size: 22px;
        margin-bottom: 15px;
        gap: 8px;
    }

    .category-post-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 16px;
    }

    .category-post-item:hover {
        padding-left: 20px;
    }

    .category-post-title {
        font-size: 14px;
        padding-right: 0;
    }
}

/* NIOS Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-secondary);
    min-width: 185px;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    z-index: 101;
    overflow: hidden;
    padding: 6px 0;
}
.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}
.nav-dropdown-content a {
    color: var(--text-secondary);
    padding: 10px 18px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    text-align: left;
}
.nav-dropdown-content a:hover {
    background-color: rgba(99, 102, 241, 0.05);
    color: var(--primary);
}
[data-theme="dark"] .nav-dropdown-content {
    background-color: var(--bg-secondary);
}