/*
Theme Name: JobRadar
Theme URI: https://jobradar.local/
Author: Antigravity Team
Author URI: https://jobradar.local/
Description: A modern, ultra-fast, and premium WordPress theme for Government Jobs, Results, Admit Cards, and Educational updates.
Version: 2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jobradar
*/

html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   1. CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    --font-primary: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', var(--font-primary);

    /* Color Palette */
    --primary: #1e3a8a;
    /* Deep Royal Navy */
    --primary-dark: #0f172a;
    /* Slate 900 */
    --primary-light: #3b82f6;
    /* Electric Blue */
    --primary-gradient: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    --accent-gradient: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);

    --color-job: #059669;
    /* Emerald Green for Jobs */
    --color-job-grad: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --color-result: #be123c;
    /* Rose / Crimson for Results */
    --color-result-grad: linear-gradient(135deg, #9f1239 0%, #e11d48 100%);
    --color-admit: #0369a1;
    /* Cyan / Sky for Admit Cards */
    --color-admit-grad: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
    --color-scheme: #d97706;
    /* Amber for Schemes */
    --color-scheme-grad: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    --color-syllabus: #6d28d9;
    /* Purple for Syllabus */
    --color-syllabus-grad: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);

    --bg-body: #f1f5f9;
    /* Smooth light slate */
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-card-subtle: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --border-color-light: #f1f5f9;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

    /* Radii — moderate & clean, not bubbly */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: #1d4ed8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

.site {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ==========================================================================
   3. TOPBAR & LIVE TICKER
   ========================================================================== */
.topbar {
    background: var(--primary-dark);
    color: #cbd5e1;
    min-height: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 16px;
    font-size: 11.5px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-bottom: 5px;
    box-shadow: var(--shadow-xs);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.date-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #94a3b8;
    font-weight: 500;
    font-size: 11.5px;
}

.date-chip i {
    color: var(--primary-light);
    font-size: 11px;
}

.live-ticker-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    color: #f8fafc;
    font-size: 11px;
    font-weight: 600;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

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

.topbar-links a {
    color: #94a3b8;
    font-size: 11.5px;
    font-weight: 500;
}

.topbar-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   4. BRAND HEADER & SEARCH
   ========================================================================== */
.header {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.header-top-row {
    display: contents;
}

.brand-container {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.header-search-wrap {
    flex: 1;
    max-width: 460px;
}

.modern-search-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.modern-search-form .search-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
}

.modern-search-form input {
    width: 100%;
    height: 44px;
    padding: 0 100px 0 44px;
    background: #f8fafc;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--text-main);
    transition: all var(--transition-normal);
}

.modern-search-form input:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.modern-search-form button {
    position: absolute;
    right: 4px;
    height: 36px;
    padding: 0 18px;
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius-full);
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.modern-search-form button:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.header-cta {
    display: flex;
    align-items: center;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0088cc 0%, #29b6f6 100%);
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.25);
    transition: all var(--transition-fast);
}

.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 136, 204, 0.35);
}

/* ==========================================================================
   5. NAVIGATION BAR
   ========================================================================== */
.nav-container {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
    position: sticky;
    top: 4px;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.mobile-menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    padding: 0;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-size: 19px;
    color: var(--primary-dark);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-xs);
    margin: 0;
}

.mobile-menu-toggle:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: var(--primary-light);
}

.mobile-menu-toggle.active {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

.mobile-menu-toggle i {
    transition: transform 0.2s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 6px 10px;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: #334155;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-menu a i {
    font-size: 14px;
    color: #64748b;
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    background: #f1f5f9;
    color: var(--primary-light);
}

.nav-menu a:hover i {
    color: var(--primary-light);
}

.nav-menu a.active {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.nav-menu a.active i {
    color: #ffffff;
}

/* ==========================================================================
   5A. NAVIGATION DROPDOWNS & STATES MEGA MENU
   ========================================================================== */
.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-arrow {
    font-size: 10px;
    margin-left: 2px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item-dropdown:hover .nav-dropdown-arrow,
.nav-item-dropdown.open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 40px -6px rgba(15, 23, 42, 0.18), 0 4px 12px -2px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
    z-index: 1050;
    pointer-events: none;
}

/* Hover bridge preventing accidental menu close */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-item-dropdown:hover > .nav-dropdown-menu,
.nav-item-dropdown.open > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* States Mega Menu Dropdown */
.nav-dropdown-states-mega {
    width: 720px;
    max-width: min(720px, calc(100vw - 28px));
    right: 0;
    left: auto;
    padding: 16px 18px;
}

.dropdown-states-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 12px;
    gap: 12px;
    flex-wrap: wrap;
}

.states-topbar-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.state-national-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff !important;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.state-national-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.states-quick-search-box {
    position: relative;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.states-quick-search-box i {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    font-size: 13px;
    pointer-events: none;
}

.states-quick-search-box input {
    width: 100%;
    height: 38px;
    padding: 0 14px 0 34px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 13px;
    color: #0f172a;
    font-family: inherit;
    transition: all 0.2s ease;
}

.states-quick-search-box input:focus {
    background: #ffffff;
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.states-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    max-height: 270px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
}

.state-dropdown-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: #334155 !important;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.state-dropdown-chip:hover {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #1d4ed8 !important;
    transform: translateX(2px);
}

.state-dropdown-chip.active {
    background: var(--primary-gradient);
    color: #ffffff !important;
    border-color: transparent;
}

.state-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8;
    flex-shrink: 0;
}

.state-dropdown-chip:hover .state-dot {
    background: #2563eb;
}

.state-count {
    margin-left: auto;
    font-size: 10.5px;
    background: #ffffff;
    color: #2563eb;
    padding: 1px 5px;
    border-radius: 4px;
    border: 1px solid #bfdbfe;
    font-weight: 700;
}

.states-dropdown-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 8px;
}

.states-dropdown-footer a {
    color: #2563eb;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.states-dropdown-footer a:hover {
    text-decoration: underline;
}

/* Qualifications Dropdown */
.nav-dropdown-qual {
    width: 480px;
    max-width: min(480px, calc(100vw - 28px));
    left: 0;
    padding: 16px;
}

.dropdown-header {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-grid-qual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.dropdown-grid-qual a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.15s ease;
}

.dropdown-grid-qual a:hover {
    background: #eff6ff;
    border-color: #93c5fd;
    transform: translateY(-1px);
}

.dropdown-item-icon {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0;
}

.qual-10th { background: #dcfce7; color: #166534; }
.qual-12th { background: #e0f2fe; color: #0369a1; }
.qual-grad { background: #fef3c7; color: #92400e; }
.qual-iti  { background: #fae8ff; color: #86198f; }
.qual-dip  { background: #ffedd5; color: #9a3412; }
.qual-pg   { background: #ede9fe; color: #5b21b6; }

.dropdown-item-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dropdown-item-text strong {
    font-size: 12.5px;
    color: #0f172a;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-item-text span {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   6. QUICK GRID (CATEGORY ACTION TILES)
   ========================================================================== */
.quick-grid-wrap {
    margin-bottom: 20px;
}

.quick-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.quick-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.quick-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.quick-card-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.quick-card-info {
    display: flex;
    flex-direction: column;
}

.quick-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}

.quick-card-desc {
    font-size: 11px;
    opacity: 0.88;
    margin-top: 2px;
}

/* Specific Card Themes */
.card-theme-jobs {
    background: var(--color-job-grad);
}

.card-theme-results {
    background: var(--color-result-grad);
}

.card-theme-admit {
    background: var(--color-admit-grad);
}

.card-theme-answer {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.card-theme-syllabus {
    background: var(--color-syllabus-grad);
}

.card-theme-admission {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
}

.card-theme-schemes {
    background: var(--color-scheme-grad);
}

.card-theme-states {
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
}

/* ==========================================================================
   7. 3-COLUMN HOMEPAGE PANELS (LATEST JOBS, RESULTS, ADMIT CARD)
   ========================================================================== */
.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.modern-panel {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.modern-panel:hover {
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.panel-header {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
}

.panel-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-header-badge {
    background: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

/* Header Variations */
.panel-header.job-head {
    background: var(--color-job-grad);
}

.panel-header.result-head {
    background: var(--color-result-grad);
}

.panel-header.admit-head {
    background: var(--color-admit-grad);
}

.panel-header.purple-head {
    background: var(--color-syllabus-grad);
}

.panel-header.scheme-head {
    background: var(--color-scheme-grad);
}

.panel-header.iti-head {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.panel-header.outsource-head {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
}

.modern-panel-list {
    flex: 1;
    padding: 6px 0;
}

.modern-panel-item {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color-light);
    transition: all var(--transition-fast);
    position: relative;
}

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

.modern-panel-item:hover {
    background: #f8fafc;
    padding-left: 19px;
}

.modern-panel-item:hover .item-bullet {
    color: var(--primary-light);
    transform: translateX(2px);
}

.modern-panel-item:hover .item-title-text {
    color: var(--primary);
}

.item-link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-decoration: none;
    color: var(--text-main);
}

.item-bullet {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.item-title-text {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.45;
    color: #1e293b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    transition: color var(--transition-fast);
}

.item-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding-left: 17px;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    color: #475569;
    background: #f1f5f9;
    padding: 2px 7px;
    border-radius: 4px;
    line-height: 1.2;
}

.meta-chip i {
    font-size: 10px;
}

.meta-chip-vacancies {
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 600;
    border: 1px solid #dbeafe;
}

.meta-chip-lastdate {
    background: #fff7ed;
    color: #c2410c;
    font-weight: 600;
    border: 1px solid #ffedd5;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    background: #ef4444;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    animation: bounceBadge 2s infinite ease-in-out;
}

@keyframes bounceBadge {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.item-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 2px 7px;
    border-radius: 4px;
    line-height: 1.2;
}

.item-date i {
    font-size: 10px;
    color: #94a3b8;
}

.item-empty {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #64748b;
    font-style: italic;
    padding: 4px 0;
}

.panel-footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: #f8fafc;
    color: var(--primary-dark);
    transition: all var(--transition-fast);
}

.panel-footer-btn:hover {
    background: #f1f5f9;
    color: var(--primary-light);
}

.panel-footer-btn i {
    transition: transform var(--transition-fast);
}

.panel-footer-btn:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   8. CONTENT GRID & SIDEBARS
   ========================================================================== */
.main-content-grid {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 18px;
    margin-bottom: 24px;
}

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 14px;
    margin-bottom: 16px;
    align-items: start;
    width: 100%;
}

.two-column-layout > main,
.single-post-container {
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

.two-column-layout > aside,
.single-sidebar {
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

.single-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.single-sidebar .modern-card,
.single-sidebar .community-promo-card {
    margin-bottom: 0;
}

.modern-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    margin-bottom: 0;
}

.card-title-bar {
    padding: 8px 12px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 7px;
}

.card-title-bar i {
    color: var(--primary-light);
}

.hub-links-body {
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-category-list {
    padding: 5px 8px;
}

.sidebar-category-list li {
    margin-bottom: 3px;
}

.sidebar-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.sidebar-category-list a:hover {
    background: #f1f5f9;
    color: var(--primary-light);
    transform: translateX(3px);
}

.side-job-item {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border-color-light);
    transition: background var(--transition-fast);
}

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

.side-job-item:hover {
    background: #f8fafc;
}

.side-job-item a {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 4px;
}

.side-job-item a:hover {
    color: var(--primary-light);
}

.side-job-meta {
    font-size: 11px;
    color: var(--text-muted);
}

/* Important Notice Banner */
.notice-banner {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.notice-banner i {
    font-size: 22px;
    color: var(--primary-light);
    margin-top: 2px;
}

.notice-text strong {
    display: block;
    color: #1e3a8a;
    font-size: 14.5px;
    margin-bottom: 2px;
}

.notice-text p {
    color: #3b82f6;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* State Wise Grid */
.state-chips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
    padding: 14px;
}

.state-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 12.5px;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-fast);
}

.state-chip:hover {
    background: var(--primary-gradient);
    color: #ffffff !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

/* Promo Community Box */
.community-promo-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    color: #ffffff;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.telegram-card-icon {
    font-size: 22px;
    color: #38bdf8;
    margin-bottom: 3px;
}

.community-promo-card h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #38bdf8;
}

.community-promo-card p {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 7px;
    line-height: 1.3;
}

.community-btn {
    display: block;
    width: 100%;
    padding: 6px 10px;
    background: #0284c7;
    color: #ffffff !important;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 12px;
    transition: all var(--transition-fast);
}

.community-btn:hover {
    background: #0ea5e9;
    transform: translateY(-1px);
}

/* ==========================================================================
   9. SINGLE JOB POST PAGE (SINGLE.PHP)
   ========================================================================== */
.single-post-container {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 16px 18px;
    margin-bottom: 14px;
}

.modern-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-color-light);
}

.modern-breadcrumb a {
    color: var(--text-muted);
    font-weight: 500;
}

.modern-breadcrumb a:hover {
    color: var(--primary-light);
}

.modern-breadcrumb .sep {
    color: #cbd5e1;
    font-size: 10px;
}

.modern-breadcrumb .current {
    color: var(--text-muted);
    font-weight: 500;
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
}

.job-article-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 6px;
}

.post-meta-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f8fafc;
    padding: 3px 7px;
    border-radius: var(--radius-sm);
    font-size: 11.5px;
    color: #475569;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    line-height: 1.2;
}

.meta-pill i {
    color: var(--primary-light);
    font-size: 11px;
}

.meta-pill-state {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}
.meta-pill-state i {
    color: #2563eb;
}

.meta-pill-qual {
    background: #f0fdf4;
    color: #15803d;
    border-color: #bbf7d0;
}
.meta-pill-qual i {
    color: #16a34a;
}

/* Key Highlights Summary — clean bordered grid */
.job-highlights-card {
    background: transparent;
    border: none;
    padding: 0;
    margin: 6px 0 10px 0;
    width: 100%;
}

.highlights-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0;
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.highlight-item {
    background: #fafbfc;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0;
    padding: 7px 10px;
    box-shadow: none;
    transition: all var(--transition-fast);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-item:hover {
    background: #f1f5f9;
}

.highlight-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.highlight-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 1px;
}

/* Action Bar for Apply & PDF — clean row, no wrapper */
.action-cta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 6px 0 8px 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.cta-btn {
    flex: 1;
    min-width: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 12.5px;
    font-weight: 700;
    color: #ffffff !important;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-fast);
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
    filter: brightness(1.08);
}

.cta-btn-apply {
    background: #059669;
}

.cta-btn-pdf {
    background: #dc2626;
}

.cta-btn-site {
    background: #1e40af;
}

/* Single Post Content Styling */
.post-content {
    font-size: 14.5px;
    line-height: 1.65;
    color: #1e293b;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 6px;
}

.post-content p {
    margin-bottom: 10px;
}

.post-content table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin: 14px 0 !important;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-xs);
}

.post-content th,
.post-content td {
    padding: 8px 12px !important;
    font-size: 13px !important;
    border-bottom: 1px solid var(--border-color) !important;
    border-right: 1px solid var(--border-color) !important;
}

.post-content th {
    background: #f1f5f9 !important;
    color: var(--primary-dark) !important;
    font-weight: 700 !important;
    text-align: left !important;
}

.post-content tr:nth-child(even) td {
    background: #f8fafc;
}

.post-content tr:hover td {
    background: #f1f5f9;
}

.post-content tr td:last-child,
.post-content tr th:last-child {
    border-right: none !important;
}

.post-content tr:last-child td {
    border-bottom: none !important;
}

.post-content table a {
    color: var(--primary-light);
    font-weight: 600;
}

.post-content ul,
.post-content ol {
    margin: 10px 0 14px 20px;
}

.post-content li {
    list-style: disc;
    margin-bottom: 5px;
}

/* Post Tags */
.post-tags-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--border-color-light);
}

.tag-badge {
    background: #f1f5f9;
    color: #475569;
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.tag-badge:hover {
    background: var(--primary-light);
    color: #ffffff;
}

/* Organization Profile Card (E-E-A-T) — clean accent header */
.org-profile-card {
    margin: 12px 0;
    border: 1px solid #c7d2fe;
    background: var(--bg-surface);
}

.org-profile-card .org-title-bar {
    background: #eef2ff;
    color: #1e3a8a;
    padding: 8px 14px;
    font-size: 13px;
    border-bottom: 1px solid #c7d2fe;
}

.org-profile-card .org-title-bar i {
    color: #4f46e5;
}

.org-card-body {
    padding: 10px 14px;
}

.org-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.org-name {
    margin: 0;
    font-size: 15px;
    color: #0f172a;
    font-weight: 800;
}

.org-subtext {
    font-size: 11.5px;
    color: #64748b;
}

.org-subtext i {
    color: #16a34a;
}

.org-portal-btn {
    background: #2563eb;
    color: #ffffff !important;
    padding: 5px 10px;
    font-size: 11.5px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all var(--transition-fast);
}

.org-portal-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.org-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
    font-size: 12.5px;
}

.org-label {
    color: #64748b;
    display: block;
    font-size: 10.5px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.org-val {
    color: #1e293b;
}

.org-val-verified {
    color: #166534;
}

/* Disclaimer Box */
.disclaimer-card {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 3px solid #d97706;
    border-radius: var(--radius-md);
    padding: 8px 12px;
    margin-top: 12px;
    font-size: 12px;
    color: #78350f;
    line-height: 1.45;
}

.disclaimer-card strong {
    color: #92400e;
}

/* ==========================================================================
   10. ARCHIVE & SEARCH RESULTS PAGES
   ========================================================================== */
.archive-header-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.archive-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.archive-list-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 24px 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.pagination .page-numbers:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: var(--primary-light);
}

.pagination .page-numbers.current {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

/* ==========================================================================
   11. MODERN DARK FOOTER
   ========================================================================== */
.footer-dark {
    background: var(--primary-dark);
    color: #94a3b8;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-top: 36px;
    padding: 40px 28px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #1e293b;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: #f8fafc;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #94a3b8;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 13.5px;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: #38bdf8;
    padding-left: 4px;
}

.footer-disclaimer-box {
    background: #0b1120;
    border: 1px solid #1e293b;
    border-radius: var(--radius-md);
    padding: 14px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
    font-size: 13px;
    color: #64748b;
}

.footer-bottom-bar a {
    color: #94a3b8;
}

.footer-bottom-bar a:hover {
    color: #ffffff;
}

/* ==========================================================================
   12. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1080px) {
    .main-content-grid {
        grid-template-columns: 1fr;
    }

    .quick-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .three-column-grid {
        grid-template-columns: 1fr;
    }

    .three-column-grid .panel-cat-latest-jobs {
        order: 1;
    }
    .three-column-grid .panel-cat-result {
        order: 2;
    }
    .three-column-grid .panel-cat-admit-card {
        order: 3;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site {
        padding: 0 10px;
    }

    .topbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
        padding: 3px 10px;
        min-height: 26px;
        margin-bottom: 4px;
    }

    .topbar-left {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
    }

    .topbar-links {
        display: none;
    }

    .date-chip {
        font-size: 11px;
        gap: 4px;
    }

    .live-ticker-badge {
        font-size: 10.5px;
        padding: 1.5px 6px;
        gap: 4px;
    }

    .header {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 14px;
        gap: 10px;
        margin-bottom: 10px;
    }

    .header-top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 12px;
        min-width: 0;
    }

    .brand-container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        flex: 1 1 auto;
        min-width: 0;
    }

    .brand-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        min-width: 0;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
        border-radius: var(--radius-sm);
        flex-shrink: 0;
    }

    .logo-text {
        min-width: 0;
        display: flex;
        flex-direction: column;
    }

    .logo-title {
        font-size: 20px;
        line-height: 1.1;
        white-space: nowrap;
    }

    .logo-subtitle {
        font-size: 10px;
        margin-top: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
        width: 38px !important;
        height: 38px !important;
        padding: 0 !important;
        background: #f8fafc;
        border: 1.5px solid #cbd5e1;
        border-radius: var(--radius-md);
        font-size: 19px;
        color: var(--primary-dark);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--transition-fast);
        flex: 0 0 38px !important;
        box-sizing: border-box;
        margin: 0;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    }

    .mobile-menu-toggle:hover {
        background: #f1f5f9;
        border-color: #94a3b8;
    }

    .mobile-menu-toggle.active {
        background: var(--primary-gradient);
        color: #ffffff;
        border-color: transparent;
        box-shadow: 0 3px 10px rgba(37, 99, 235, 0.35);
    }

    .header-search-wrap {
        width: 100%;
        max-width: 100%;
    }

    .modern-search-form input {
        height: 40px;
        font-size: 13px;
        padding: 0 85px 0 38px;
    }

    .modern-search-form .search-icon {
        left: 13px;
        font-size: 13px;
    }

    .modern-search-form button {
        height: 32px;
        padding: 0 14px;
        font-size: 12px;
    }

    .header-cta {
        width: 100%;
        justify-content: center;
    }

    .telegram-btn {
        width: 100%;
        justify-content: center;
        padding: 8px 14px;
        font-size: 12.5px;
    }

    .nav-container {
        display: none;
        margin-bottom: 10px;
    }

    .nav-container.open {
        display: block;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 6px 0;
        gap: 2px;
    }

    .nav-item-dropdown {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nav-dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border: 1px solid #e2e8f0;
        border-radius: var(--radius-md);
        transform: none;
        display: none;
        opacity: 1;
        visibility: visible;
        margin-top: 4px;
        padding: 12px;
    }

    .nav-item-dropdown.open > .nav-dropdown-menu {
        display: block;
    }

    .states-dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        max-height: 220px;
    }

    .dropdown-grid-qual {
        grid-template-columns: 1fr;
    }

    .quick-grid-modern {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    /* Mobile Homepage Pillar Panels: Show Latest Jobs 1st, Results 2nd, Admit Card 3rd */
    .three-column-grid .panel-cat-latest-jobs {
        order: 1;
    }
    .three-column-grid .panel-cat-result {
        order: 2;
    }
    .three-column-grid .panel-cat-admit-card {
        order: 3;
    }

    .quick-card {
        padding: 10px 10px;
        gap: 8px;
        border-radius: var(--radius-md);
        box-sizing: border-box;
    }

    .quick-card-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .quick-card-info {
        min-width: 0;
        display: flex;
        flex-direction: column;
    }

    .quick-card-title {
        font-size: 13px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .quick-card-desc {
        font-size: 10px;
        line-height: 1.2;
        margin-top: 2px;
        opacity: 0.9;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .modern-breadcrumb {
        font-size: 11.5px;
        margin-bottom: 8px;
        padding-bottom: 6px;
        gap: 5px;
    }

    .modern-breadcrumb .current {
        max-width: 140px;
    }

    .job-article-title {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .post-meta-pills {
        gap: 4px;
        margin-bottom: 8px;
    }

    .meta-pill {
        padding: 2px 6px;
        font-size: 10.5px;
        border-radius: 4px;
    }

    .eeat-trust-banner {
        padding: 5px 8px;
        margin: 5px 0 8px 0;
        font-size: 10.5px;
        line-height: 1.35;
        gap: 6px;
    }

    .eeat-trust-icon {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }

    .share-bar {
        margin: 6px 0 8px 0;
        padding: 4px 8px;
        gap: 5px;
        width: 100%;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .share-btn {
        width: 28px;
        height: 28px;
        padding: 0;
        border-radius: 50%;
    }

    .share-btn img,
    .share-btn svg {
        width: 15px;
        height: 15px;
    }

    .action-cta-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        padding: 6px;
        margin: 8px 0 10px 0;
    }

    .action-cta-bar .cta-btn-site {
        grid-column: span 2;
    }

    .cta-btn {
        width: 100%;
        min-width: 0;
        padding: 7px 8px;
        font-size: 12px;
    }
}

/* ==========================================================================
   13. SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition-normal);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* ==========================================================================
   14. SHARE BUTTONS (ICON-ONLY WIKIPEDIA SVGs)
   ========================================================================== */
.share-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 5px 0 7px 0;
    padding: 4px 9px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    width: fit-content;
    max-width: 100%;
}

.share-bar-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 2px;
    white-space: nowrap;
}

.share-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.share-btn img,
.share-btn svg {
    display: block;
}

.share-btn-whatsapp {
    background: #25d366;
}

.share-btn-telegram {
    background: #229ed9;
}

.share-btn-facebook {
    background: #0866ff;
}

.share-btn-twitter {
    background: #000000;
}

.share-btn-copy {
    background: #475569;
    color: #ffffff;
}

.share-btn-copy.copied {
    background: #10b981;
}

/* ==========================================================================
   15. TABLE OF CONTENTS (AUTO-GENERATED)
   ========================================================================== */
.toc-card {
    background: #f8fafc;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    margin-bottom: 24px;
}

.toc-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.toc-title i.toc-toggle {
    transition: transform var(--transition-fast);
    font-size: 12px;
    margin-left: auto;
}

.toc-title i.toc-toggle.collapsed {
    transform: rotate(-90deg);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 6px;
}

.toc-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.toc-list a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.toc-list a:hover {
    background: #ffffff;
    color: var(--primary-light);
    transform: translateX(4px);
}

.toc-list.hidden {
    display: none;
}

/* ==========================================================================
   16. RELATED POSTS
   ========================================================================== */
.related-posts-section {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.related-posts-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.related-post-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px 10px;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.related-post-card:hover {
    background: #ffffff;
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.related-post-card .related-post-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.35;
}

.related-post-card:hover .related-post-link {
    color: var(--primary-light);
}

.related-post-card .related-post-meta {
    font-size: 10.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-post-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 9.5px;
    font-weight: 600;
    padding: 1.5px 6px;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   17. 404 PAGE STYLES
   ========================================================================== */
.error-404-page {
    text-align: center;
}

.error-404-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-404-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.error-404-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.error-404-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.error-search-form {
    max-width: 440px;
    margin: 0 auto 28px;
}

.error-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.error-recent-section {
    text-align: left;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 18px;
}

.error-recent-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-recent-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.error-recent-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    color: #334155;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.error-recent-item:hover {
    background: #ffffff;
    color: var(--primary-light);
    transform: translateX(4px);
}

.error-recent-item i {
    font-size: 10px;
    color: var(--primary-light);
}

/* ==========================================================================
   18. SEARCH PAGE STYLES
   ========================================================================== */
.search-highlight {
    background: linear-gradient(120deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    color: var(--primary-light);
}

.archive-subtitle {
    color: var(--text-muted);
    font-size: 13.5px;
    margin-top: 6px;
}

.search-result-item {
    padding: 14px 20px;
}

.search-item-title {
    font-size: 15px;
}

.search-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.search-no-results-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
    padding: 48px 28px;
}

.search-no-results-icon {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.search-no-results-card h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.search-no-results-card p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 420px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

.search-suggestions {
    margin-top: 24px;
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.search-suggestions h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.suggestion-chip {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.suggestion-chip:hover {
    background: var(--primary-light);
    color: #ffffff;
}

/* ==========================================================================
   19. UTILITY CLASSES (INLINE STYLE REPLACEMENTS)
   ========================================================================== */
.secondary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cat-count-badge {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    color: #64748b;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    font-size: 18px;
}

.footer-brand-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand-icon {
    width: 34px;
    height: 34px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.footer-brand-name span {
    color: #38bdf8;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
}

/* Verified alert pill */
.meta-pill-verified {
    background: #dcfce7;
    color: #166534;
}

.meta-pill-verified i {
    color: #16a34a;
}

/* SEO bottom section on homepage */
.seo-content-section {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 24px;
}

.seo-content-section h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.seo-content-section p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.seo-content-section p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   20. TABLET BREAKPOINT (900px)
   ========================================================================== */
@media (max-width: 900px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .secondary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site {
        padding: 0 6px;
    }

    .single-post-container {
        padding: 10px 10px;
        border-radius: var(--radius-md);
    }

    .job-article-title {
        font-size: 17px;
    }

    .action-cta-bar {
        padding: 0;
        gap: 5px;
    }

    .cta-btn {
        padding: 7px 10px;
        font-size: 11.5px;
        min-width: 100px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .highlight-item {
        padding: 6px 8px;
    }

    .highlight-label {
        font-size: 9.5px;
    }

    .highlight-value {
        font-size: 12px;
    }

    .geo-answer-box {
        padding: 10px 10px;
        margin: 10px 0 14px 0;
    }

    .geo-answer-header {
        font-size: 13px;
    }

    .geo-answer-item {
        font-size: 12px;
        line-height: 1.45;
    }
}

/* ==========================================================================
   21. PRINT STYLES
   ========================================================================== */
@media print {

    .topbar,
    .header,
    .nav-container,
    .share-bar,
    .action-cta-bar,
    .scroll-to-top,
    .community-promo-card,
    .telegram-btn,
    .toc-card,
    .footer-dark,
    aside,
    .disclaimer-card {
        display: none !important;
    }

    body {
        background: #ffffff;
        color: #000000;
        font-size: 12pt;
    }

    .site {
        max-width: 100%;
        padding: 0;
    }

    .single-post-container {
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
    }

    .post-content table {
        border: 1px solid #000 !important;
    }

    .post-content th,
    .post-content td {
        border: 1px solid #000 !important;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .job-article-title {
        font-size: 20pt;
    }
}

/* ==========================================================================
   22. MODERN FAQ ACCORDION COMPONENT (COMPACT & SLEEK)
   ========================================================================== */
.faq-section-wrapper {
    margin: 24px 0 16px 0;
}

.faq-header-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(37, 99, 235, 0.18);
    margin-bottom: 8px;
}

.faq-section-wrapper h2 {
    font-size: 20px;
    margin: 0 0 8px 0;
    color: var(--primary-dark);
}

.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 10px;
}

.faq-accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.faq-accordion-item:hover {
    border-color: #cbd5e1;
}

.faq-accordion-item[open],
.faq-accordion-item.is-open {
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
}

.faq-accordion-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    list-style: none;
    user-select: none;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.faq-accordion-summary::-webkit-details-marker {
    display: none;
}

.faq-accordion-summary:hover {
    color: #2563eb;
    background-color: #f8fafc;
}

.faq-accordion-item[open] .faq-accordion-summary {
    color: #2563eb;
    background-color: #f8faff;
}

.faq-question-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.faq-num-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.faq-accordion-item[open] .faq-num-badge,
.faq-accordion-item.is-open .faq-num-badge {
    background: #2563eb;
    color: #ffffff;
}

.faq-icon-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 10px;
    flex-shrink: 0;
    margin-left: 10px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-accordion-item[open] .faq-icon-toggle,
.faq-accordion-item.is-open .faq-icon-toggle {
    transform: rotate(180deg);
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #2563eb;
}

.faq-accordion-content {
    padding: 10px 14px 12px 14px;
    color: #475569;
    font-size: 13.5px;
    line-height: 1.65;
    border-top: 1px solid #edf2f7;
    background: #ffffff;
    animation: faqSlideDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes faqSlideDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classic fallback support */
.faq details {
    border: 1px solid var(--border-color, #e2e8f0);
    margin: 10px 0;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.faq summary {
    cursor: pointer;
    padding: 14px 18px;
    font-weight: 700;
    color: #1e3a8a;
    background: #f8fafc;
}

.faq .answer {
    padding: 14px 18px;
    color: #475569;
    line-height: 1.7;
    background: #fff;
    border-top: 1px solid var(--border-color, #e2e8f0);
}

@media (max-width: 600px) {
    .faq-accordion-summary {
        padding: 14px 16px;
        font-size: 14.5px;
    }
    .faq-accordion-content {
        padding: 0 16px 16px 16px;
        font-size: 13.5px;
    }
    .faq-num-badge {
        display: none;
    }
}

/* ==========================================================================
   23. SHADCN / REACT DAYPICKER STYLE RECRUITMENT CALENDAR
   ========================================================================== */
.job-calendar-card {
    overflow: hidden;
}

.calendar-widget-body {
    padding: 10px 12px;
    background: #ffffff;
}

/* Nav Header */
.rdp-nav-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.rdp-caption-label {
    font-family: var(--font-heading, inherit);
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    user-select: none;
}

.rdp-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: #475569;
    font-size: 11px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.rdp-nav-btn:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #cbd5e1;
}

/* Weekdays Grid */
.rdp-weekdays-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 4px;
}

.rdp-weekdays-grid span {
    font-size: 10.5px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    user-select: none;
    padding: 2px 0;
}

/* Days Grid */
.rdp-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.rdp-day-cell {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.rdp-day {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #334155;
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
    user-select: none;
    cursor: default;
}

.rdp-day-interactive:hover {
    background: #f1f5f9;
    border-radius: 9999px;
    color: #0f172a;
}

/* Trailing / Outside Days */
.rdp-day-outside {
    color: #cbd5e1 !important;
    opacity: 0.6;
}

/* TODAY (Green Highlight) */
.rdp-day-today {
    background: #10b981 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 9999px !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
    position: relative;
}

/* LAST APPLY DATE / DEADLINE (Red Highlight) */
.rdp-day-deadline {
    background: #ef4444 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 9999px !important;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: rdp-pulse-red 2s infinite;
}

@keyframes rdp-pulse-red {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(239, 68, 68, 0);
    }
}

/* Range Middle */
.rdp-day-range-middle {
    background: rgba(37, 99, 235, 0.08);
    color: #1e293b;
    border-radius: 0 !important;
}

/* Legend & Countdown */
.rdp-calendar-legend {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rdp-legend-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 11.5px;
}

.rdp-legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #475569;
}

.rdp-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.rdp-dot-today {
    background: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.rdp-dot-deadline {
    background: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.rdp-legend-label {
    color: #64748b;
    font-weight: 500;
}

.rdp-legend-item strong {
    color: #0f172a;
    font-weight: 600;
    margin-left: auto;
}

.rdp-countdown-badge {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-size: 11.5px;
    font-weight: 700;
    color: #b91c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   24. 2026 E-E-A-T TRUST SIGNALS & ANSWER-FIRST AI OVERVIEW (GEO)
   ========================================================================== */
.eeat-trust-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border: 1px solid #a7f3d0;
    border-left: 3px solid #059669;
    border-radius: var(--radius-md);
    padding: 7px 12px;
    margin: 5px 0 8px 0;
    font-size: 11.5px;
    color: #065f46;
    line-height: 1.4;
}

.eeat-trust-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #059669;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.eeat-trust-text strong {
    color: #064e3b;
}

/* Answer-First AI Overview Box (GEO / AI Citation Magnet) - Sleek & Full-Width */
.geo-answer-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 3.5px solid #2563eb;
    border-radius: var(--radius-md);
    padding: 12px 14px;
    margin: 12px 0 16px 0;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
}

.geo-answer-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a;
}

.geo-answer-header i {
    color: #2563eb;
    font-size: 13px;
}

.geo-answer-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.geo-answer-item {
    font-size: 13px;
    color: #334155;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.geo-answer-item::before {
    content: "⚡";
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}

.geo-answer-item strong {
    color: #0f172a;
}

/* ==========================================================================
   25. 2026 PROGRAMMATIC SEO HUBS & CATEGORY LISTINGS (pSEO)
   ========================================================================== */
.p-hub-header-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.p-hub-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.p-hub-title {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.p-hub-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.p-hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 700;
}

.p-badge-live {
    background: #dcfce7;
    color: #166534;
}

.p-badge-count {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.p-badge-verified {
    background: #f8fafc;
    color: #475569;
    border: 1px solid var(--border-color);
}

.p-hub-intro-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
}

.p-hub-intro-box strong {
    color: #0f172a;
}

/* Hub-and-Spoke Navigation Pills */
.p-hub-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 14px 0;
    margin-bottom: 16px;
    scrollbar-width: thin;
}

.p-filter-pill {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    transition: all var(--transition-fast);
}

.p-filter-pill:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: var(--primary-light);
}

.p-filter-pill.active {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

/* Programmatic Job Card */
.p-job-cards-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.p-job-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    transition: all var(--transition-normal);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p-job-card:hover {
    border-color: #93c5fd;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px -4px rgba(37, 99, 235, 0.12);
}

.p-job-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.p-job-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.p-job-title a {
    color: var(--primary-dark);
    transition: color var(--transition-fast);
}

.p-job-title a:hover {
    color: #2563eb;
}

.p-job-meta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 12.5px;
}

.p-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
}

.p-meta-item strong {
    color: #0f172a;
}

.p-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.p-status-pill.open {
    background: #dcfce7;
    color: #166534;
}

.p-status-pill.closed {
    background: #fee2e2;
    color: #991b1b;
}

.p-job-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.p-btn-details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-md);
    background: #f1f5f9;
    color: var(--primary-dark);
    font-size: 12.5px;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.p-btn-details:hover {
    background: #2563eb;
    color: #ffffff;
}

.p-btn-apply-direct {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-md);
    background: #10b981;
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    margin-left: auto;
    transition: all var(--transition-fast);
}

.p-btn-apply-direct:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* ==========================================================================
   26. PROGRAMMATIC SEO (pSEO) STATS GRID & SPOKE LINKING
   ========================================================================== */
.p-hub-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 16px 0 20px 0;
}

.p-stat-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all var(--transition-fast);
}

.p-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.p-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.stat-blue .p-stat-icon {
    background: #eff6ff;
    color: #2563eb;
}

.stat-rose .p-stat-icon {
    background: #fff1f2;
    color: #e11d48;
}

.stat-green .p-stat-icon {
    background: #f0fdf4;
    color: #16a34a;
}

.stat-amber .p-stat-icon {
    background: #fefce8;
    color: #d97706;
}

.p-stat-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.p-stat-num {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-top: 2px;
}

.p-stat-link {
    color: inherit;
    text-decoration: none;
}

.p-stat-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .p-hub-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   27. 7TH CPC SALARY INSIGHTS & HUB FAQS
   ========================================================================== */
.p-salary-insight-card {
    margin-top: 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #ffffff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 100%;
}

.p-salary-header {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
    color: #ffffff;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-heading);
}

.p-salary-body {
    padding: 18px;
    background: #ffffff;
}

.p-salary-table-wrap {
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    margin-top: 12px;
}

.p-salary-table {
    width: 100%;
    min-width: 540px;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.p-salary-table th {
    background: #f8fafc;
    padding: 11px 14px;
    font-weight: 700;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}

.p-salary-table td {
    padding: 11px 14px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.p-salary-table tbody tr:hover {
    background: #f8fafc;
}

.p-hub-faq-section {
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
}

.p-faq-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-heading);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.p-faq-container {
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 14px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}