/* ========================================
   GOVERNMENT JOB ALERTS - CLEAN LIGHT MODE
   Modern, Professional, Trustworthy Design
======================================== */

/* CSS Variables */
:root {
    /* Color Palette - Clean Light Theme */
    --primary: #2563EB;
    --primary-light: #3B82F6;
    --primary-dark: #1D4ED8;
    --primary-50: #EFF6FF;
    --primary-100: #DBEAFE;

    --secondary: #10B981;
    --secondary-light: #34D399;
    --accent: #F97316;
    --accent-light: #FB923C;
    --danger: #EF4444;

    /* Backgrounds */
    --bg-body: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-gray: #F1F5F9;
    --bg-hover: #E2E8F0;

    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;

    /* Borders */
    --border-color: #E2E8F0;
    --border-light: #F1F5F9;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    --border-radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 4px 14px rgba(37, 99, 235, 0.25);
    --shadow-secondary: 0 4px 14px rgba(16, 185, 129, 0.25);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', var(--font-primary);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

/* ========================================
   HEADER & NAVIGATION
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-xs);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    padding: 10px 16px;
    border-radius: var(--border-radius-full);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-gray);
}

.nav-link.active {
    color: var(--primary);
    background: var(--primary-50);
}

.nav-link.highlight {
    background: var(--secondary);
    color: var(--text-white);
    font-weight: 600;
}

.nav-link.highlight:hover {
    background: var(--secondary-light);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--bg-white) 50%, #F0FDF4 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Search Box */
.search-box {
    display: flex;
    max-width: 580px;
    margin: 0 auto 48px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.search-input {
    flex: 1;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    margin: 6px;
    background: var(--primary);
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.search-btn svg {
    stroke: currentColor;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border-color);
}

/* ========================================
   SECTIONS COMMON
======================================== */
section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius-full);
    border: 2px solid var(--primary);
    background: transparent;
    transition: var(--transition-fast);
}

.view-all-btn:hover {
    background: var(--primary);
    color: var(--text-white);
}

/* ========================================
   CATEGORIES SECTION
======================================== */
.categories-section {
    background: var(--bg-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 20px;
    background: var(--bg-body);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
}

.category-card.maharashtra-special {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    border-color: var(--secondary);
}

.category-card.maharashtra-special:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-secondary);
}

.category-icon {
    font-size: 2.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.category-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    background: var(--secondary);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   JOBS GRID & CARDS
======================================== */
.jobs-section {
    background: var(--bg-body);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

.job-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    padding: 28px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.job-card.maharashtra {
    border-left: 4px solid var(--secondary);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.job-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-category-tag {
    flex-shrink: 0;
    padding: 6px 12px;
    background: var(--primary-100);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-org {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 500;
}

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

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 10px 12px;
    background: var(--bg-gray);
    border-radius: var(--border-radius);
}

.job-meta-item svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
    stroke: currentColor;
}

.job-meta-item.vacancies {
    color: var(--secondary);
    background: #F0FDF4;
}

.job-meta-item.deadline {
    color: var(--accent);
    background: #FFF7ED;
}

.job-footer {
    display: flex;
    gap: 12px;
}

.job-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.job-btn.primary {
    background: var(--primary);
    color: var(--text-white);
}

.job-btn.primary:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
    box-shadow: var(--shadow-primary);
}

.job-btn.secondary {
    background: var(--bg-gray);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
}

.job-btn.secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

/* Maharashtra Special Badge */
.maha-badge {
    position: absolute;
    top: 0;
    right: 24px;
    padding: 8px 14px;
    background: var(--secondary);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

/* ========================================
   MAHARASHTRA SECTION
======================================== */
.maharashtra-section {
    background: linear-gradient(180deg, #F0FDF4 0%, var(--bg-body) 100%);
}

.maharashtra-banner {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--border-radius-xl);
    padding: 48px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.maharashtra-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-content {
    position: relative;
}

.banner-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.banner-content p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--secondary);
    color: var(--text-white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--border-radius-full);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-secondary);
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

/* ========================================
   QUALIFICATION SECTION
======================================== */
.qualification-section {
    background: var(--bg-white);
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.qualification-card {
    background: var(--bg-body);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    padding: 36px;
    text-align: center;
    transition: var(--transition-normal);
}

.qualification-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.12);
    background: var(--bg-white);
}

.qual-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.qualification-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.qualification-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   LOADING SKELETON
======================================== */
.loading-skeleton {
    display: contents;
}

.skeleton-card {
    background: linear-gradient(90deg, var(--bg-gray) 25%, var(--bg-hover) 50%, var(--bg-gray) 75%);
    background-size: 200% 100%;
    border-radius: var(--border-radius-xl);
    height: 240px;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--text-primary);
    color: var(--text-white);
    padding: 72px 0 32px;
}

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

.footer .logo-text {
    color: var(--text-white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    max-width: 300px;
    line-height: 1.7;
}

.footer-stats {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-light);
}

.footer-bottom a:hover {
    color: var(--text-white);
}

/* ========================================
   JOBS PAGE SPECIFIC
======================================== */
.page-header {
    padding-top: 100px;
    padding-bottom: 48px;
    background: linear-gradient(180deg, var(--primary-50) 0%, var(--bg-body) 100%);
}

.page-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Filters */
.filters-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
    background: var(--bg-white);
}

.filters-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-select {
    padding: 12px 18px;
    background: var(--bg-body);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    min-width: 160px;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary);
    outline: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pagination-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Job Detail Page */
.job-detail-header {
    padding-top: 100px;
    padding-bottom: 32px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.job-detail-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.job-detail-org {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.job-detail-content {
    padding: 48px 0;
}

.job-detail-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.job-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    padding: 32px;
}

.job-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.job-info-list {
    list-style: none;
}

.job-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.job-info-list li:last-child {
    border-bottom: none;
}

.job-info-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.job-info-value {
    color: var(--text-primary);
    font-weight: 600;
}

.apply-sidebar {
    position: sticky;
    top: 100px;
}

.apply-card {
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-xl);
    padding: 32px;
    text-align: center;
}

.apply-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.apply-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.apply-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: var(--primary);
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
}

.apply-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
    box-shadow: var(--shadow-primary);
}

/* ========================================
   EMPTY STATE
======================================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.empty-state p {
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-detail-main {
        grid-template-columns: 1fr;
    }

    .apply-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--bg-white);
        padding: 24px;
        gap: 8px;
        transform: translateX(100%);
        transition: var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        padding: 16px 20px;
        border-radius: var(--border-radius);
        font-size: 1.05rem;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .search-box {
        flex-direction: column;
    }

    .search-btn {
        margin: 8px;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-value {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

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

    .page-title {
        font-size: 2rem;
    }

    .maharashtra-banner {
        padding: 32px 24px;
    }

    .banner-content h3 {
        font-size: 1.35rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

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

    .category-card {
        padding: 20px 12px;
    }

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

    .job-card {
        padding: 20px;
    }

    .job-meta {
        grid-template-columns: 1fr;
    }

    .job-footer {
        flex-direction: column;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-success {
    color: var(--secondary);
}

.text-warning {
    color: var(--accent);
}

.text-danger {
    color: var(--danger);
}

.bg-primary {
    background: var(--primary);
}

.bg-success {
    background: var(--secondary);
}

.bg-warning {
    background: var(--accent);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ========================================
   ENHANCED JOB DETAIL PAGE STYLES
======================================== */

/* Breadcrumb */
.breadcrumb {
    padding: 80px 0 16px;
    background: var(--bg-white);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb-list li::after {
    content: '›';
    margin-left: 8px;
    color: var(--text-muted);
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list a {
    color: var(--primary);
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* Job Detail Page Layout */
.job-detail-page {
    padding: 40px 0 80px;
    background: var(--bg-body);
}

.job-detail-page>.container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

.job-detail-container {
    min-height: 400px;
}

/* Job Detail Card */
.job-detail-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.job-detail-card header.job-detail-header {
    padding: 32px;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--bg-white) 100%);
    border-bottom: 1px solid var(--border-color);
}

.job-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.maha-tag {
    padding: 6px 12px;
    background: var(--secondary);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--border-radius-full);
}

.featured-tag {
    padding: 6px 12px;
    background: var(--accent);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--border-radius-full);
}

.job-detail-card .job-detail-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.job-detail-card .job-detail-org {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

/* Job Sections */
.job-section {
    padding: 28px 32px;
    border-bottom: 1px solid var(--border-light);
}

.job-section:last-of-type {
    border-bottom: none;
}

.job-section h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-100);
}

/* Highlights Grid */
.highlights-section {
    background: var(--primary-50);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.highlight-item {
    background: var(--bg-white);
    padding: 16px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
}

.highlight-item.deadline {
    background: #FFF7ED;
    border-color: var(--accent);
}

.highlight-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.highlight-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.highlight-item.deadline .highlight-value {
    color: var(--accent);
}

/* Dates Table */
.dates-table table,
.fee-table table,
.vacancy-table table {
    width: 100%;
    border-collapse: collapse;
}

.dates-table td,
.fee-table td,
.vacancy-table td,
.fee-table th {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
}

.dates-table tr:last-child td,
.fee-table tbody tr:last-child td,
.vacancy-table tr:last-child td {
    border-bottom: none;
}

.dates-table td:first-child {
    color: var(--text-secondary);
    font-weight: 500;
    width: 50%;
}

.dates-table td:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

.dates-table .highlight-row {
    background: #FFF7ED;
}

.dates-table .highlight-row td {
    color: var(--accent);
}

/* Fee Table */
.fee-table th {
    background: var(--bg-gray);
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
}

.fee-table td:last-child {
    font-weight: 600;
    color: var(--primary);
}

/* Eligibility */
.eligibility-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eligibility-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.eligibility-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.age-relaxation {
    margin-top: 8px;
    color: var(--text-muted) !important;
    font-size: 0.9rem;
}

/* Selection Process */
.selection-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Essential Links */
.essential-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.essential-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition-fast);
    border: 2px solid var(--border-color);
    background: var(--bg-white);
}

.essential-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.essential-link .link-icon {
    font-size: 1.5rem;
}

.essential-link .link-text {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.essential-link.apply {
    background: var(--primary);
    border-color: var(--primary);
    grid-column: span 2;
}

.essential-link.apply .link-text {
    color: var(--text-white);
}

.essential-link.apply:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-primary);
}

.essential-link.notification {
    background: #FEF3C7;
    border-color: #F59E0B;
}

.essential-link.official {
    background: #ECFDF5;
    border-color: var(--secondary);
}

/* Job Detail Footer */
.job-detail-card footer.job-detail-footer {
    padding: 20px 32px;
    background: var(--bg-gray);
    text-align: center;
}

.posted-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}

/* Sidebar */
.job-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.sidebar-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.sidebar-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.sidebar-btn:last-child {
    margin-bottom: 0;
}

.sidebar-btn.telegram {
    background: #0088cc;
    color: var(--text-white);
}

.sidebar-btn.telegram:hover {
    background: #0077b5;
}

.sidebar-btn.whatsapp {
    background: #25D366;
    color: var(--text-white);
}

.sidebar-btn.whatsapp:hover {
    background: #20bd5a;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.quick-links li:last-child {
    border-bottom: none;
}

.quick-links a {
    color: var(--primary);
    font-weight: 500;
}

.quick-links a:hover {
    text-decoration: underline;
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-state p {
    margin-top: 16px;
    color: var(--text-secondary);
}

/* Responsive Job Detail */
@media (max-width: 992px) {
    .job-detail-page>.container {
        grid-template-columns: 1fr;
    }

    .job-detail-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1 1 280px;
    }
}

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

    .essential-links {
        grid-template-columns: 1fr;
    }

    .essential-link.apply {
        grid-column: span 1;
    }

    .job-section {
        padding: 20px;
    }

    .job-detail-card header.job-detail-header {
        padding: 24px 20px;
    }

    .job-detail-card .job-detail-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .breadcrumb {
        padding-top: 72px;
    }
}

/* ========================================
   DARK MODE THEME
======================================== */
[data-theme="dark"] {
    /* Dark Color Palette */
    --primary: #3B82F6;
    --primary-light: #60A5FA;
    --primary-dark: #2563EB;
    --primary-50: rgba(59, 130, 246, 0.1);
    --primary-100: rgba(59, 130, 246, 0.15);

    --secondary: #10B981;
    --secondary-light: #34D399;

    /* Dark Backgrounds */
    --bg-body: #0F172A;
    --bg-white: #1E293B;
    --bg-gray: #334155;
    --bg-hover: #475569;

    /* Dark Text Colors */
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    /* Dark Borders */
    --border-color: #334155;
    --border-light: #1E293B;

    /* Dark Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    --shadow-primary: 0 4px 14px rgba(59, 130, 246, 0.3);
    --shadow-secondary: 0 4px 14px rgba(16, 185, 129, 0.3);
}

[data-theme="dark"] .header {
    background: rgba(30, 41, 59, 0.95);
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, var(--bg-body) 50%, rgba(16, 185, 129, 0.05) 100%);
}

[data-theme="dark"] .categories-section {
    background: var(--bg-white);
}

[data-theme="dark"] .maharashtra-banner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

[data-theme="dark"] .category-card.maharashtra-special {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
}

[data-theme="dark"] .job-meta-item.vacancies {
    background: rgba(16, 185, 129, 0.15);
}

[data-theme="dark"] .job-meta-item.deadline {
    background: rgba(249, 115, 22, 0.15);
}

[data-theme="dark"] .footer {
    background: #020617;
}

[data-theme="dark"] .page-header {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, var(--bg-body) 100%);
}

[data-theme="dark"] .pagination-btn {
    background: var(--bg-white);
}

[data-theme="dark"] .gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* ========================================
   THEME TOGGLE BUTTON
======================================== */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-gray);
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1.25rem;
    margin-left: 8px;
}

.theme-toggle:hover {
    background: var(--bg-hover);
    transform: scale(1.05);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    transition: var(--transition-fast);
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: none;
}

[data-theme="light"] .theme-toggle .icon-moon,
:root:not([data-theme]) .theme-toggle .icon-moon {
    display: none;
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.back-to-top:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

/* ========================================
   TOAST NOTIFICATIONS
======================================== */
.toast-container {
    position: fixed;
    bottom: 100px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    font-weight: 500;
    color: var(--text-primary);
    pointer-events: auto;
    animation: slideInRight 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
    max-width: 360px;
}

.toast.success {
    border-left: 4px solid var(--secondary);
}

.toast.success .toast-icon {
    color: var(--secondary);
}

.toast.error {
    border-left: 4px solid var(--danger);
}

.toast.error .toast-icon {
    color: var(--danger);
}

.toast.info {
    border-left: 4px solid var(--primary);
}

.toast.info .toast-icon {
    color: var(--primary);
}

.toast-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

@media (max-width: 768px) {
    .toast-container {
        left: 16px;
        right: 16px;
        bottom: 80px;
    }

    .toast {
        max-width: 100%;
    }
}

/* ========================================
   COUNTDOWN BADGE
======================================== */
.countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-badge.urgent {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #DC2626;
    animation: pulse 2s infinite;
}

.countdown-badge.warning {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #D97706;
}

.countdown-badge.normal {
    background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
    color: #16A34A;
}

.countdown-badge.expired {
    background: var(--bg-gray);
    color: var(--text-muted);
}

[data-theme="dark"] .countdown-badge.urgent {
    background: rgba(220, 38, 38, 0.2);
}

[data-theme="dark"] .countdown-badge.warning {
    background: rgba(217, 119, 6, 0.2);
}

[data-theme="dark"] .countdown-badge.normal {
    background: rgba(22, 163, 74, 0.2);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ========================================
   BOOKMARK & SHARE BUTTONS
======================================== */
.job-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-gray);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.action-btn:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    transform: scale(1.1);
}

.action-btn.bookmarked {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.action-btn.bookmarked:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* Bookmark Animation */
@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.action-btn.bookmarked.animate {
    animation: heartBeat 0.6s ease;
}

/* Share Modal */
.share-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.share-modal.active {
    opacity: 1;
    visibility: visible;
}

.share-modal-content {
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    padding: 32px;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.share-modal.active .share-modal-content {
    transform: scale(1);
}

.share-modal h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.share-modal p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.share-options {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg-gray);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
    min-width: 80px;
}

.share-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.share-option.whatsapp:hover {
    background: #25D366;
    color: white;
}

.share-option.telegram:hover {
    background: #0088CC;
    color: white;
}

.share-option.copy:hover {
    background: var(--primary);
    color: white;
}

.share-option span:first-child {
    font-size: 1.75rem;
}

.share-option span:last-child {
    font-size: 0.85rem;
    font-weight: 500;
}

.share-close {
    width: 100%;
    padding: 14px;
    background: var(--bg-gray);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.share-close:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

/* ========================================
   EXPIRED JOB INDICATOR
======================================== */
.job-card.expired {
    opacity: 0.7;
}

.job-card.expired::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-body);
    opacity: 0.3;
    pointer-events: none;
    border-radius: inherit;
}

.expired-badge {
    position: absolute;
    top: 0;
    left: 24px;
    padding: 8px 14px;
    background: var(--text-muted);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-card.expired .job-btn.primary {
    background: var(--text-muted);
    cursor: not-allowed;
}

/* ========================================
   ENHANCED MICRO-ANIMATIONS
======================================== */
/* Card Hover Lift */
.job-card,
.category-card,
.qualification-card,
.sidebar-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Button Press Effect */
.job-btn,
.search-btn,
.banner-btn,
.view-all-btn,
.sidebar-btn {
    transition: all 0.15s ease;
}

.job-btn:active,
.search-btn:active,
.banner-btn:active,
.view-all-btn:active,
.sidebar-btn:active {
    transform: scale(0.97);
}

/* Category Card Glow */
.category-card:hover {
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.category-card.maharashtra-special:hover {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

/* Stats Counter Glow */
.stat-value {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.stat-item:hover .stat-value {
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

/* Nav Link Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
    left: 10%;
}

.nav-link {
    position: relative;
}

/* Search Input Focus Glow */
.search-box:focus-within {
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

/* Loading Pulse Enhancement */
.skeleton-card {
    position: relative;
    overflow: hidden;
}

.skeleton-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerSlide 1.5s infinite;
}

@keyframes shimmerSlide {
    to {
        left: 100%;
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
======================================== */
/* Focus Visible States */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--primary);
    color: var(--text-white);
    font-weight: 600;
    border-radius: var(--border-radius);
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 16px;
}

/* High Contrast Focus for Dark Mode */
[data-theme="dark"] :focus-visible {
    outline-color: var(--primary-light);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}