/* ============================================
   FullTimeJob.com – Modern Clone
   Premium LIGHT MODE Design System
   ============================================ */

/* === CSS Variables / Design Tokens === */
:root {
    /* Primary Palette */
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #3730a3;
    --primary-glow: rgba(79, 70, 229, 0.2);
    --primary-bg: rgba(99, 102, 241, 0.06);

    /* Accent */
    --accent: #e11d48;
    --accent-light: #f43f5e;
    --accent-glow: rgba(225, 29, 72, 0.15);

    /* Success / WhatsApp */
    --success: #16a34a;
    --success-dark: #15803d;
    --success-light: rgba(22, 163, 74, 0.08);

    /* Warning / Orange */
    --warning: #ea580c;
    --warning-bg: rgba(234, 88, 12, 0.08);

    /* Backgrounds */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-hover: rgba(255, 255, 255, 0.9);
    --bg-subtle: #f1f5f9;
    --bg-hero: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 30%, #fdf2f8 60%, #eff6ff 100%);

    /* Text */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;

    /* Borders */
    --border: #e2e8f0;
    --border-hover: #cbd5e1;
    --border-active: var(--primary);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4f46e5, #7c3aed, #db2777);
    --gradient-soft: linear-gradient(135deg, #eef2ff, #faf5ff, #fdf2f8);
    --gradient-card: linear-gradient(145deg, rgba(99, 102, 241, 0.04), rgba(168, 85, 247, 0.02));

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 4px 30px rgba(79, 70, 229, 0.12);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 8px 30px rgba(79, 70, 229, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);

    /* Layout */
    --container-max: 1280px;
    --header-height: 70px;
    --nav-height: 50px;
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-xl: 0;
    --radius-full: 0;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

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

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-subtle);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    max-width: 100%;
    width: 100%;
    position: relative;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-subtle);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* === Background Particles === */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 0;
    background: var(--primary);
    opacity: 0.04;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.04;
    }

    90% {
        opacity: 0.04;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* === Announcement Bar === */
.announcement-bar {
    background: var(--gradient-primary);
    padding: 6px 0;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.announcement-inner {
    overflow: hidden;
    position: relative;
}

.announcement-marquee {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.announcement-marquee span {
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.announcement-marquee span::after {
    content: '•';
    margin-left: 52px;
    opacity: 0.5;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* === Header === */
.header {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
    box-shadow: 0 6px 25px var(--primary-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-primary {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

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

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 480px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar .search-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}

.search-bar input {
    width: 100%;
    padding: 12px 110px 12px 44px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

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

.search-bar input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.search-btn {
    position: absolute;
    right: 4px;
    padding: 8px 20px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 0;
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 0;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--primary-bg);
    color: var(--primary);
    border-color: var(--primary);
    transform: rotate(15deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 0;
    transition: var(--transition);
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* === Navigation === */
.nav {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--header-height);
    z-index: 999;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.nav::-webkit-scrollbar {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: var(--nav-height);
    white-space: nowrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link i {
    font-size: 0.8rem;
}

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

.nav-link.active {
    color: white;
    background: var(--primary);
    box-shadow: 0 2px 8px var(--primary-glow);
}

/* === Hero Section === */
.hero {
    position: relative;
    padding: 80px 0 60px;
    background: var(--bg-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 0;
    background: radial-gradient(circle, rgba(219, 39, 119, 0.06), transparent 70%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
    letter-spacing: -1px;
    color: var(--text-primary);
}

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

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Hero Actions */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-whatsapp {
    background: var(--success);
    color: white;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.25);
}

.btn-whatsapp:hover {
    background: var(--success-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(22, 163, 74, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 26px;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === Categories Section === */
.categories-section {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}

.category-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    box-shadow: var(--shadow-xs);
}

.category-chip:hover {
    border-color: var(--primary);
    background: var(--gradient-soft);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.chip-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
}

.category-chip:hover .chip-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.category-chip span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.category-chip:hover span {
    color: var(--text-primary);
}

/* === Main Content Grid === */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    padding: 40px 0 60px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

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

.title-icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 4px;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-subtle);
    padding: 4px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.filter-tab {
    padding: 6px 16px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    color: var(--text-primary);
    background: white;
}

.filter-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 10px var(--primary-glow);
}

/* === Job Cards === */
.job-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    animation: fadeInUp 0.4s ease both;
    box-shadow: var(--shadow-card);
}

.job-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.job-card.featured {
    border-left: 3px solid var(--primary);
}


.job-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
}

.featured-badge {
    background: rgba(225, 29, 72, 0.08);
    color: var(--accent);
    border: 1px solid rgba(225, 29, 72, 0.15);
}

.result-badge {
    background: rgba(22, 163, 74, 0.08);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.15);
}

/* Job Body - Image + Text Layout (like original site) */
.job-body {
    overflow: hidden;
    margin-bottom: 12px;
}

.job-thumb-img {
    float: left;
    width: 200px;
    height: 120px;
    margin: 4px 20px 10px 0;
    border-radius: 0;
    object-fit: cover;
    border: 1px solid var(--border);
}



/* Gradient Icon Thumbnails (for cards without real images) */
.job-thumb-icon {
    float: left;
    width: 200px;
    height: 120px;
    margin: 4px 20px 10px 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: white;
    text-align: center;
}



.job-thumb-icon i {
    font-size: 2rem;
    opacity: 0.9;
}

.job-thumb-icon span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.railway-grad {
    background: linear-gradient(135deg, #ea580c, #dc2626);
}

.army-grad {
    background: linear-gradient(135deg, #4d7c0f, #166534);
}

.banking-grad {
    background: linear-gradient(135deg, #0369a1, #1e40af);
}

.bsnl-grad {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.result-grad {
    background: linear-gradient(135deg, #059669, #0d9488);
}

.rbi-grad {
    background: linear-gradient(135deg, #1e3a5f, #0e7490);
}

.sbi-grad {
    background: linear-gradient(135deg, #3730a3, #4f46e5);
}

.private-grad {
    background: linear-gradient(135deg, #7c3aed, #db2777);
}

.admission-grad {
    background: linear-gradient(135deg, #0891b2, #0284c7);
}

/* Read More Link (original site style) */
.read-more-link {
    display: inline-block;
    color: #990000;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 14px;
}

.read-more-link:hover {
    color: #cc0000;
    text-decoration: underline;
}

.job-content {
    padding: 24px;
}

.job-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.job-tag {
    padding: 4px 12px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-govt {
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
}

.tag-private {
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
}

.tag-banking {
    background: rgba(22, 163, 74, 0.08);
    color: var(--success);
}

.tag-railway {
    background: rgba(234, 88, 12, 0.08);
    color: var(--warning);
}

.tag-defence {
    background: rgba(14, 116, 144, 0.08);
    color: #0e7490;
}

.tag-upsc {
    background: rgba(225, 29, 72, 0.08);
    color: var(--accent);
}

.tag-result {
    background: rgba(22, 163, 74, 0.08);
    color: var(--success);
}

.job-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.job-title a {
    color: #990000;
    text-decoration: none;
}

.job-title a:hover {
    color: #cc0000;
    text-decoration: underline;
}

.job-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: justify;
}

.job-footer {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 10px 24px;
    margin: 0 -24px -24px -24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.job-info {
    display: flex;
    gap: 6px;
    align-items: center;
}

.job-info span {
    font-size: 0.82rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-info span i {
    color: #999;
    font-size: 0.75rem;
}

.job-info .separator {
    color: #ccc;
    margin: 0 4px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.read-more-btn:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.read-more-btn i {
    font-size: 0.75rem;
    transition: var(--transition);
}

/* Load More */
.load-more-wrapper {
    text-align: center;
    padding: 24px 0;
}

/* === Pagination === */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    margin-top: 20px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.page-link:hover {
    background: var(--primary-bg);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.page-link i {
    font-size: 0.75rem;
}

/* === Sidebar === */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Widget */
.widget {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.glass-card {
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.widget-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-subtle);
    color: var(--text-primary);
}

.widget-title i {
    color: var(--primary);
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    transition: var(--transition);
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.25);
}

.social-btn.twitter {
    background: linear-gradient(135deg, #333, #1d1d1d);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #006daa);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.25);
}

.social-btn.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.social-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* WhatsApp CTA */
.whatsapp-cta {
    background: linear-gradient(135deg, #075e54, #128c7e, #25d366);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(7, 94, 84, 0.2);
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.15), transparent 60%);
    pointer-events: none;
}

.whatsapp-icon-bg {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: white;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-cta h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    position: relative;
}

.whatsapp-cta p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    position: relative;
}

.btn-whatsapp-full {
    width: 100%;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.btn-whatsapp-full:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Trending List */
.trending-list li {
    margin-bottom: 2px;
}

.trending-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.trending-list li a:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.trending-list li a i {
    font-size: 0.65rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

/* Trending Jobs */
.trending-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trending-job-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.trending-job-item:hover {
    background: var(--primary-bg);
    border-color: var(--border);
}

.tj-rank {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    min-width: 30px;
}

.tj-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tj-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.tj-posts {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.trending-job-item:hover .tj-title {
    color: var(--primary);
}

.trending-job-item:hover .tj-rank {
    opacity: 1;
}

/* === Footer === */
.footer {
    background: var(--text-primary);
    border-top: none;
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
    color: var(--bg-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-primary {
    color: white;
}

.footer-brand .logo-tagline {
    color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 6px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.back-to-top {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* In-view animation trigger */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* === Category Page === */
.category-header {
    background: white;
    border: 1px solid var(--border);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #990000;
    margin: 0 0 6px;
}

.category-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* === Post Detail Page === */
.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb a {
    color: #990000;
    text-decoration: none;
}

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

.breadcrumb span {
    margin: 0 6px;
    color: var(--text-muted);
}

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

.post-detail {
    background: white;
    border: 1px solid var(--border);
    padding: 0;
}

.post-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    color: #990000;
    padding: 24px 24px 16px;
    margin: 0;
}

.post-meta-bar {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 24px;
    font-size: 0.82rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.post-meta-bar .separator {
    color: #ccc;
    margin: 0 4px;
}

.post-meta-bar i {
    color: #999;
}

.post-body {
    padding: 24px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.post-image {
    float: left;
    width: 250px;
    height: auto;
    margin: 4px 24px 16px 0;
    border: 1px solid var(--border);
    object-fit: cover;
}

.post-body p {
    margin-bottom: 16px;
    text-align: justify;
}

.post-body a {
    color: #990000;
    text-decoration: none;
}

.post-body a:hover {
    text-decoration: underline;
}

.post-body ul {
    margin: 12px 0 16px 20px;
}

.post-body ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.info-box {
    background: white;
    border: 1px solid #e0e0e0;
    margin: 24px 0;
    clear: both;
}

.info-box h3 {
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.info-box p,
.info-box ul {
    padding: 0 16px;
}

.info-box>p:first-of-type {
    padding-top: 16px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    vertical-align: top;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table td:first-child {
    width: 35%;
    color: #333;
}

.info-table td:last-child {
    color: #555;
    text-align: right;
}

.info-table a {
    color: #990000;
}

.link-btn {
    display: inline-block;
    background: #990000;
    color: white !important;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s;
    min-width: 150px;
    text-align: center;
}

.link-btn:hover {
    background: #cc0000;
}

.link-btn-upcoming {
    cursor: default;
}

.link-btn-upcoming:hover {
    background: #990000 !important;
}

.link-btn-soon {
    cursor: default;
}

.link-btn-soon:hover {
    background: #990000 !important;
}

.link-btn-date {
    cursor: default;
}

.link-btn-date:hover {
    background: #990000 !important;
}

.link-upcoming-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px dashed #f59e0b;
}

.link-upcoming-badge i {
    font-size: 0.75rem;
    animation: pulse-clock 2s ease-in-out infinite;
}

.link-available-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px dashed #3b82f6;
}

.link-available-soon-badge i {
    font-size: 0.75rem;
    animation: pulse-clock 2s ease-in-out infinite;
}

@keyframes pulse-clock {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Hide Trending sections on contact page */
body:has(.contact-header-card) #trendingWidget,
body:has(.contact-header-card) #trendingJobsWidget {
    display: none;
}

/* Contact Header Card */
.contact-header-card {
    margin-bottom: 24px;
}

.contact-header-card .breadcrumb {
    margin-bottom: 16px;
}

.contact-header-card .page-header {
    margin: 0;
}

.contact-header-card .page-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-header-card .page-title i {
    color: var(--primary);
    font-size: 1.6rem;
}

.contact-header-card .page-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Styling */
.contact-card {
    margin-bottom: 24px;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-heading i {
    color: var(--primary);
    font-size: 1.3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    align-self: flex-start;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    font-size: 0.9rem;
}

/* Contact Information Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    align-items: flex-start;
}

.info-item:hover {
    background: white;
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.info-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.info-content {
    flex: 1;
    min-width: 0;
}

.info-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.info-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2px;
}

.info-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    word-break: break-word;
}

.info-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Social Section in Contact */
.social-section {
    padding-top: 24px;
    border-top: 2px solid var(--border);
}

.social-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-section h3 i {
    color: var(--primary);
}

.contact-social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.contact-social-links .social-btn {
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-social-links .social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-social-links .social-btn i {
    font-size: 1rem;
}

/* Note Box */
.note-box {
    background: linear-gradient(135deg, #eef2ff 0%, #f0f9ff 100%);
    border: 2px solid var(--primary-light);
    padding: 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 24px;
}

.note-box>i {
    font-size: 1.5rem;
    color: var(--primary);
    padding: 20px 0 20px 20px;
}

.note-box>div {
    flex: 1;
    padding: 20px 20px 20px 0;
}

.note-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.note-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    /* Mobile: Reduce gaps and spacing */
    .categories-section {
        padding: 12px 0 10px;
    }

    .main-grid {
        padding: 12px 0 30px;
        gap: 12px;
    }

    .section-header {
        margin-bottom: 10px;
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .section-title {
        justify-content: center;
        width: 100%;
    }

    .job-card {
        margin-bottom: 10px;
    }

    .contact-header-card .page-title {
        font-size: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .contact-header-card .page-title i {
        font-size: 1.3rem;
    }

    .contact-header-card .page-description {
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .section-heading {
        font-size: 1.3rem;
    }

    .submit-btn {
        width: 100%;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-item {
        padding: 14px;
        gap: 12px;
    }

    .info-icon-wrapper {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .info-content h3 {
        font-size: 0.95rem;
    }

    .info-content p {
        font-size: 0.85rem;
    }

    .info-content a {
        font-size: 0.85rem;
    }

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

    .note-box>i {
        padding: 16px 16px 0 16px;
    }

    .note-box>div {
        padding: 0 16px 16px 16px;
    }

    /* Mobile: Keep table rows on single line */
    .info-table {
        width: 100%;
        display: table;
        table-layout: fixed;
    }

    .info-table tr {
        display: table-row;
    }

    .info-table td {
        display: table-cell;
        padding: 8px 10px;
        font-size: 0.8rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .info-table td:first-child {
        width: 35%;
        white-space: normal;
        word-wrap: break-word;
    }

    .info-box {
        overflow-x: hidden;
        max-width: 100%;
    }

    .link-btn {
        padding: 3px 10px;
        font-size: 0.75rem;
        white-space: nowrap;
        min-width: auto;
    }

    /* Mobile: Limit job post description */
    .job-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 8em;
        line-height: 1.6;
    }

    /* Mobile: Responsive post title */
    .post-title {
        font-size: 1.1rem;
        line-height: 1.3;
        padding: 16px 16px 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Mobile: Full width post detail */
    .post-detail {
        margin: 0 -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        overflow-x: hidden;
    }

    .breadcrumb {
        padding: 12px 20px;
        margin: 0 -20px 16px -20px;
    }

    .post-meta-bar {
        padding: 8px 20px;
        font-size: 0.75rem;
    }

    .post-body {
        padding: 16px 20px;
        overflow-x: hidden;
    }

    /* Mobile: Content area overflow fix */
    .content-area,
    .content-column {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Mobile: Responsive category chips */
    .category-chip {
        padding: 14px 8px;
        gap: 6px;
    }

    .chip-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .category-chip span {
        font-size: 0.75rem;
    }

    /* Mobile: Responsive filter tabs */
    .filter-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-tab {
        padding: 6px 12px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    /* Mobile: Show only first word in category names */
    .job-info strong {
        display: inline-block;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: bottom;
    }

    .post-meta-bar strong,
    .post-footer-bar strong {
        display: inline-block;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: bottom;
    }
}

/* ============================================
   IMPORTANT LINKS PAGE STYLES
   ============================================ */

.imp-links-card {
    margin-bottom: 24px;
}

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

.link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: var(--transition);
}

.link-item:hover {
    background: white;
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.link-item:hover::before {
    transform: scaleY(1);
}

.link-item:hover .link-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.link-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

/* Icon Colors */
.govt-icon {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
}

.ssc-icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.upsc-icon {
    background: linear-gradient(135deg, #e11d48, #f43f5e);
}

.bank-icon, .sbi-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.railway-icon {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.army-icon {
    background: linear-gradient(135deg, #4d7c0f, #65a30d);
}

.assam-icon {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.apsc-icon {
    background: linear-gradient(135deg, #db2777, #ec4899);
}

.police-icon {
    background: linear-gradient(135deg, #0e7490, #0891b2);
}

.education-icon {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.employment-icon {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
}

.court-icon {
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

.rbi-icon {
    background: linear-gradient(135deg, #1e3a5f, #1e40af);
}

.nabard-icon {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.lic-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.ugc-icon {
    background: linear-gradient(135deg, #c026d3, #d946ef);
}

.ncert-icon {
    background: linear-gradient(135deg, #059669, #10b981);
}

.nta-icon {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.aicte-icon {
    background: linear-gradient(135deg, #6366f1, #818cf8);
}

.link-content {
    flex: 1;
    min-width: 0;
}

.link-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.link-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.link-arrow {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 0.9rem;
    opacity: 0.5;
    transition: var(--transition);
}

/* Responsive for Important Links */
@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .link-item {
        padding: 14px;
        gap: 12px;
    }

    .link-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .link-content h3 {
        font-size: 0.95rem;
    }

    .link-content p {
        font-size: 0.8rem;
    }
}

/* ============================================
   SUBMIT JOB PAGE STYLES
   ============================================ */

.submit-job-card {
    margin-bottom: 24px;
}

/* Guidelines Grid */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 8px;
}

.guideline-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.guideline-item:hover {
    background: white;
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.guideline-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.guideline-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.guideline-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* About Content */
.about-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

/* How to Submit Section */
.how-to-submit p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.required-info {
    background: var(--bg-subtle);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin: 20px 0;
}

.required-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.required-info h3 i {
    color: var(--primary);
}

.info-list {
    margin: 0 0 0 24px;
    padding: 0;
}

.info-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.email-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #eef2ff 0%, #f0f9ff 100%);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-light);
    margin: 20px 0;
}

.email-info i {
    font-size: 1.5rem;
    color: var(--primary);
}

.email-info div {
    flex: 1;
}

.email-info strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.email-info a {
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.email-info a:hover {
    text-decoration: underline;
}

.important-notes {
    margin-top: 24px;
}

.note-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(234, 179, 8, 0.05);
    border-left: 4px solid #eab308;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

.note-item:last-child {
    margin-bottom: 0;
}

.note-item i {
    color: #eab308;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.note-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Fee Content */
.fee-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fee-box {
    background: var(--bg-subtle);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.fee-amount {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gradient-primary);
    color: white;
}

.fee-amount i {
    font-size: 2rem;
    opacity: 0.9;
}

.fee-amount h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.fee-amount p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

.fee-details {
    padding: 20px;
}

.fee-details > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.fee-benefits {
    background: white;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.fee-benefits h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fee-benefits h4 i {
    color: var(--success);
}

.fee-benefits ul {
    margin: 0 0 0 24px;
    padding: 0;
}

.fee-benefits li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 6px;
}

.fee-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(234, 179, 8, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid #eab308;
}

.fee-note i {
    color: #eab308;
    font-size: 1.1rem;
    margin-top: 2px;
}

.fee-note p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.free-posting {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.05), rgba(34, 197, 94, 0.05));
    border: 2px solid var(--success);
    border-radius: var(--radius-md);
}

.free-posting i {
    font-size: 2.5rem;
    color: var(--success);
    flex-shrink: 0;
}

.free-posting h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.free-posting p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.form-intro {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.form-intro a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.form-intro a:hover {
    text-decoration: underline;
}

/* Form Sections */
.form-section {
    padding: 20px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Form Elements Enhancement */
.submit-job-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: var(--transition);
    cursor: pointer;
}

.submit-job-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.submit-job-form input[type="date"] {
    cursor: pointer;
}

.submit-job-form .submit-btn {
    margin-top: 8px;
}

/* Responsive for Submit Job Page */
@media (max-width: 768px) {
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .guideline-item {
        padding: 14px;
    }

    .guideline-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .form-section {
        padding: 16px;
    }

    .form-section-title {
        font-size: 1rem;
    }

    .fee-amount {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .fee-amount i {
        font-size: 1.5rem;
    }

    .fee-amount h3 {
        font-size: 1.3rem;
    }

    .free-posting {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .free-posting i {
        font-size: 2rem;
    }

    .info-list li {
        font-size: 0.85rem;
    }

    .email-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.faq-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}

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

.faq-item p {
    margin-bottom: 4px !important;
    padding: 0 !important;
}

.post-footer-bar {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 10px 24px;
    font-size: 0.82rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.post-footer-bar .separator {
    color: #ccc;
    margin: 0 4px;
}

.post-footer-bar i {
    color: #999;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    gap: 16px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border);
    color: #990000;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-btn:hover {
    background: #f5f5f5;
}

/* ============================================
   NOTIFICATION SYSTEM
   ============================================ */

.notification {
    position: fixed;
    top: 90px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 300px;
    max-width: 500px;
    border-left: 4px solid;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-left-color: var(--success);
}

.notification-success i {
    color: var(--success);
    font-size: 1.3rem;
}

.notification-error {
    border-left-color: var(--accent);
}

.notification-error i {
    color: var(--accent);
    font-size: 1.3rem;
}

.notification span {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

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

@media (max-width: 768px) {
    /* Force everything full width on mobile */
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .header,
    .nav,
    .announcement-bar,
    .main-content,
    .footer,
    .categories-section {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .header {
        height: auto;
        min-height: var(--header-height);
    }

    .header-inner {
        gap: 10px;
        height: auto;
        min-height: var(--header-height);
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .logo .logo-img {
        height: 40px !important;
    }

    .search-bar {
        display: none;
    }

    .header-actions {
        flex-shrink: 0;
    }

    /* Mobile: Prevent horizontal overflow on all major containers */
    .main-content,
    .container,
    .sidebar,
    .footer {
        max-width: 100%;
        overflow-x: hidden;
    }

    .post-navigation {
        flex-wrap: wrap;
    }

    .nav-btn {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .notification {
        top: 80px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }

    .job-thumb-img {
        width: 120px;
        height: 80px;
    }

    .job-thumb-icon {
        width: 120px;
        height: 80px;
    }

    .job-thumb-icon i {
        font-size: 1.4rem;
    }

    .job-thumb-icon span {
        font-size: 0.6rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        transform: translateX(100%);
        transition: var(--transition-smooth);
        overflow-y: auto;
        z-index: 999;
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 4px;
    }

    .nav-link {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }

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

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

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pagination {
        gap: 4px;
        flex-wrap: wrap;
    }

    .page-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .page-item:first-child .page-link,
    .page-item:last-child .page-link {
        padding: 8px 10px;
    }

    .page-link span {
        display: none;
    }

    .announcement-marquee {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

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

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

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

    .job-content {
        padding: 18px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* ============================================
   DARK MODE THEME
   ============================================ */

[data-theme="dark"] {
    /* Primary Palette */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --primary-glow: rgba(99, 102, 241, 0.3);
    --primary-bg: rgba(99, 102, 241, 0.15);

    /* Accent */
    --accent: #f43f5e;
    --accent-light: #fb7185;
    --accent-glow: rgba(244, 63, 94, 0.2);

    /* Success / WhatsApp */
    --success: #22c55e;
    --success-dark: #16a34a;
    --success-light: rgba(34, 197, 94, 0.15);

    /* Warning / Orange */
    --warning: #fb923c;
    --warning-bg: rgba(251, 146, 60, 0.15);

    /* Backgrounds - FULL DARK */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-glass: rgba(17, 17, 17, 0.9);
    --bg-glass-hover: rgba(17, 17, 17, 0.95);
    --bg-subtle: #1a1a1a;
    --bg-hero: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);

    /* Text - PURE WHITE */
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --text-muted: #999999;
    --text-inverse: #000000;

    /* Borders */
    --border: #222222;
    --border-hover: #333333;
    --border-active: var(--primary);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    --gradient-soft: linear-gradient(135deg, #111111, #0a0a0a, #111111);
    --gradient-card: linear-gradient(145deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.05));

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 4px 30px rgba(99, 102, 241, 0.4);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.6);
    --shadow-card-hover: 0 8px 30px rgba(99, 102, 241, 0.4), 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Dark Mode Specific Adjustments */
[data-theme="dark"] .particle {
    background: rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .job-card,
[data-theme="dark"] .link-item,
[data-theme="dark"] .category-card {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .job-card:hover,
[data-theme="dark"] .link-item:hover,
[data-theme="dark"] .category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    background: var(--bg-subtle);
}

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

[data-theme="dark"] .stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

[data-theme="dark"] .theme-toggle {
    background: var(--bg-card);
    color: var(--text-primary);
}

[data-theme="dark"] .theme-toggle:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

[data-theme="dark"] .search-bar {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] #searchInput {
    background: transparent;
    color: var(--text-primary);
}

[data-theme="dark"] #searchInput::placeholder {
    color: var(--text-muted);
}

[data-theme="dark"] .nav {
    background: var(--bg-secondary);
    border-bottom-color: var(--border);
}

[data-theme="dark"] .announcement-bar {
    background: var(--gradient-primary);
}

[data-theme="dark"] .footer {
    background: var(--bg-secondary);
    border-top-color: var(--border);
}

[data-theme="dark"] .job-meta-item,
[data-theme="dark"] .job-badge {
    background: var(--bg-subtle);
    color: var(--text-primary);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text-primary);
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    border-color: var(--primary);
    background: var(--bg-secondary);
}

[data-theme="dark"] .header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .job-title,
[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--text-primary);
}

[data-theme="dark"] p,
[data-theme="dark"] span,
[data-theme="dark"] li {
    color: var(--text-secondary);
}

[data-theme="dark"] .breadcrumb a,
[data-theme="dark"] .nav-link {
    color: var(--text-secondary);
}

[data-theme="dark"] .breadcrumb a:hover,
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    color: var(--text-primary);
}

[data-theme="dark"] .contact-info-section,
[data-theme="dark"] .contact-form-section,
[data-theme="dark"] .submit-job-section {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .info-item {
    background: var(--bg-subtle);
}

[data-theme="dark"] .fee-box,
[data-theme="dark"] .guideline-item {
    background: var(--bg-subtle);
    border-color: var(--border);
}

[data-theme="dark"] .sidebar {
    background: var(--bg-card);
}

[data-theme="dark"] .widget {
    background: var(--bg-subtle);
    border-color: var(--border);
}

[data-theme="dark"] .category-header {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .category-title {
    color: var(--text-primary);
}

[data-theme="dark"] .category-desc {
    color: var(--text-secondary);
}

[data-theme="dark"] .breadcrumb {
    color: var(--text-secondary);
}

[data-theme="dark"] .job-excerpt,
[data-theme="dark"] .job-desc {
    color: var(--text-secondary);
}

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

[data-theme="dark"] .btn-primary:hover {
    background: var(--primary-light);
}

[data-theme="dark"] a {
    color: var(--primary-light);
}

[data-theme="dark"] a:hover {
    color: var(--primary);
}

[data-theme="dark"] .job-title a {
    color: var(--text-primary);
}

[data-theme="dark"] .job-title a:hover {
    color: var(--primary-light);
}

[data-theme="dark"] .hero-title {
    color: var(--text-primary);
}

[data-theme="dark"] .hero-desc {
    color: var(--text-secondary);
}

[data-theme="dark"] .section-title {
    color: var(--text-primary);
}

[data-theme="dark"] .social-btn {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text-primary);
}

[data-theme="dark"] .social-btn:hover {
    transform: translateY(-2px);
}

[data-theme="dark"] .whatsapp-widget {
    background: var(--success);
}

[data-theme="dark"] .back-to-top {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text-primary);
}

[data-theme="dark"] .back-to-top:hover {
    background: var(--primary);
    color: white;
}

[data-theme="dark"] .category-chip {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .category-chip:hover {
    background: var(--bg-subtle);
    border-color: var(--primary);
}

[data-theme="dark"] .category-chip span {
    color: var(--text-secondary);
}

[data-theme="dark"] .category-chip:hover span {
    color: var(--text-primary);
}

[data-theme="dark"] .chip-icon {
    background: var(--primary-bg);
    color: var(--primary);
}

[data-theme="dark"] .job-meta {
    background: transparent;
    border-color: var(--border);
}

[data-theme="dark"] .job-meta span {
    color: var(--text-secondary);
}

[data-theme="dark"] .job-meta strong {
    color: var(--text-primary);
}

[data-theme="dark"] .section-header {
    border-bottom-color: var(--border);
}

[data-theme="dark"] .filter-tabs {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .filter-tab {
    color: var(--text-secondary);
}

[data-theme="dark"] .filter-tab.active,
[data-theme="dark"] .filter-tab:hover {
    color: var(--text-primary);
    background: var(--primary-bg);
}

[data-theme="dark"] .page-link {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text-secondary);
}

[data-theme="dark"] .page-link:hover {
    background: var(--primary-bg);
    border-color: var(--primary);
    color: var(--primary);
}

[data-theme="dark"] .page-item.active .page-link {
    background: var(--gradient-primary);
    color: white;
}

/* Additional Dark Mode Fixes for White Backgrounds */
[data-theme="dark"] .glass-card {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .post-content {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .info-item {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .submit-info-card {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .feature-card {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .contact-form {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .form-group label {
    color: var(--text-primary);
}

[data-theme="dark"] .trending-item {
    background: transparent;
    border-color: var(--border);
}

[data-theme="dark"] .trending-item:hover {
    background: var(--bg-subtle);
}

[data-theme="dark"] .rank-badge {
    background: var(--primary-bg);
    color: var(--primary);
}

[data-theme="dark"] .update-item {
    background: transparent;
    border-color: var(--border);
}

[data-theme="dark"] .update-item:hover {
    background: var(--bg-subtle);
}

[data-theme="dark"] .widget-title {
    color: var(--text-primary);
}

[data-theme="dark"] .widget p {
    color: var(--text-secondary);
}

[data-theme="dark"] .contact-header-card {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .page-title {
    color: var(--text-primary);
}

[data-theme="dark"] .page-subtitle {
    color: var(--text-secondary);
}

[data-theme="dark"] .info-icon {
    background: var(--primary-bg);
    color: var(--primary);
}

[data-theme="dark"] .search-bar input:focus {
    background: var(--bg-secondary);
    border-color: var(--primary);
}

[data-theme="dark"] .logo-text {
    color: var(--text-primary);
}

[data-theme="dark"] .logo-text span {
    color: var(--primary);
}

[data-theme="dark"] .job-footer {
    background: var(--bg-secondary);
    border-top-color: var(--border);
}

[data-theme="dark"] .job-info span {
    color: var(--text-secondary);
}

[data-theme="dark"] .job-info span i {
    color: var(--text-muted);
}

[data-theme="dark"] .job-info .separator {
    color: var(--border-hover);
}

[data-theme="dark"] .job-info strong {
    color: var(--text-primary);
}

[data-theme="dark"] .info-box {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .info-box h3 {
    background: var(--bg-secondary);
    border-bottom-color: var(--border);
    color: var(--text-primary);
}

[data-theme="dark"] .info-box p,
[data-theme="dark"] .info-box ul,
[data-theme="dark"] .info-box li {
    color: var(--text-secondary);
}

[data-theme="dark"] .note-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-color: var(--primary);
}

[data-theme="dark"] .note-box > i {
    color: var(--primary-light);
}

[data-theme="dark"] .note-box h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .note-box p {
    color: var(--text-secondary);
}

[data-theme="dark"] .fee-benefits {
    background: var(--bg-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .fee-benefits h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .fee-benefits ul,
[data-theme="dark"] .fee-benefits li {
    color: var(--text-secondary);
}

[data-theme="dark"] .required-info {
    background: var(--bg-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .required-info h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .info-list li {
    color: var(--text-secondary);
}

[data-theme="dark"] .email-info {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-color: var(--primary);
}

[data-theme="dark"] .email-info i {
    color: var(--primary-light);
}

[data-theme="dark"] .email-info strong {
    color: var(--text-primary);
}

[data-theme="dark"] .email-info a {
    color: var(--primary-light);
}

[data-theme="dark"] .note-item {
    background: rgba(234, 179, 8, 0.1);
    border-left-color: #facc15;
}

[data-theme="dark"] .note-item i {
    color: #facc15;
}

[data-theme="dark"] .note-item p {
    color: var(--text-secondary);
}

[data-theme="dark"] .fee-box {
    background: var(--bg-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .fee-details > p {
    color: var(--text-secondary);
}

[data-theme="dark"] .fee-note {
    background: rgba(234, 179, 8, 0.1);
    border-left-color: #facc15;
}

[data-theme="dark"] .fee-note i {
    color: #facc15;
}

[data-theme="dark"] .fee-note p {
    color: var(--text-secondary);
}

[data-theme="dark"] .free-posting {
    background: var(--bg-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .free-posting h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .free-posting p {
    color: var(--text-secondary);
}

[data-theme="dark"] .post-detail {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .post-title {
    color: var(--text-primary);
}

[data-theme="dark"] .post-meta-bar {
    background: var(--bg-secondary);
    border-top-color: var(--border);
    border-bottom-color: var(--border);
    color: var(--text-secondary);
}

[data-theme="dark"] .post-meta-bar .separator {
    color: var(--border-hover);
}

[data-theme="dark"] .post-meta-bar i {
    color: var(--text-muted);
}

[data-theme="dark"] .post-meta-bar strong {
    color: var(--text-primary);
}

[data-theme="dark"] .post-body {
    color: var(--text-secondary);
}

[data-theme="dark"] .post-body p {
    color: var(--text-secondary);
}

[data-theme="dark"] .post-body a {
    color: var(--primary-light);
}

[data-theme="dark"] .post-body a:hover {
    color: var(--primary);
}

[data-theme="dark"] .post-body ul li {
    color: var(--text-secondary);
}

[data-theme="dark"] .post-body strong {
    color: var(--text-primary);
}

[data-theme="dark"] .post-image {
    border-color: var(--border);
}

[data-theme="dark"] .info-table {
    border-color: var(--border);
}

[data-theme="dark"] .info-table tr {
    border-bottom-color: var(--border);
}

[data-theme="dark"] .info-table td {
    color: var(--text-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .info-table strong {
    color: var(--text-primary);
}

[data-theme="dark"] .info-table a {
    color: var(--primary-light);
}

[data-theme="dark"] .breadcrumb {
    border-bottom-color: var(--border);
}

[data-theme="dark"] .breadcrumb a {
    color: var(--primary-light);
}

[data-theme="dark"] .breadcrumb span {
    color: var(--text-muted);
}

[data-theme="dark"] .breadcrumb .current {
    color: var(--text-secondary);
}

[data-theme="dark"] .post-navigation {
    border-top-color: var(--border);
}

[data-theme="dark"] .nav-btn {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--primary-light);
}

[data-theme="dark"] .nav-btn:hover {
    background: var(--bg-subtle);
    border-color: var(--primary);
}

[data-theme="dark"] .nav-btn i {
    color: var(--primary-light);
}

[data-theme="dark"] .post-footer-bar {
    background: var(--bg-secondary);
    border-top-color: var(--border);
    color: var(--text-secondary);
}

[data-theme="dark"] .post-footer-bar .separator {
    color: var(--border-hover);
}

[data-theme="dark"] .post-footer-bar i {
    color: var(--text-muted);
}

[data-theme="dark"] .post-footer-bar strong {
    color: var(--text-primary);
}

/* Contact Page Specific - Hide Trending Widgets */
body:has(.contact-header-card) #trendingWidget,
body:has(.contact-header-card) #trendingJobsWidget {
    display: none;
}

/* ===================== JODIT CONTENT STYLES (readmore page) ===================== */
.jodit-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.jodit-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 24px 0 12px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 6px;
}

.jodit-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #334155;
    margin: 20px 0 10px;
}

.jodit-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: #475569;
    margin: 16px 0 8px;
}

.jodit-content p {
    margin: 10px 0;
}

.jodit-content ul,
.jodit-content ol {
    margin: 10px 0 10px 24px;
    padding: 0;
}

.jodit-content li {
    margin: 4px 0;
}

.jodit-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
    border: 1px solid #999 !important;
}

.jodit-content table th,
.jodit-content table td {
    border: 1px solid #bbb !important;
    padding: 10px 14px;
    text-align: left;
    vertical-align: top;
}

.jodit-content table th {
    background: #f1f5f9 !important;
    font-weight: 700;
    color: #333;
    border-color: #999 !important;
}

.jodit-content table tr:nth-child(even) {
    background: #f7f7f7;
}

.jodit-content table tr:hover {
    background: #eef2ff;
}

.jodit-content table caption {
    caption-side: top;
    font-weight: 700;
    padding: 8px;
    color: #1e293b;
    font-size: 15px;
}

/* Responsive table - scroll on mobile */
@media (max-width: 768px) {
    .jodit-content {
        max-width: 100%;
        overflow-x: hidden;
    }

    .jodit-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
    }
}

.jodit-content a {
    color: #667eea;
    text-decoration: underline;
}

.jodit-content a:hover {
    color: #4338ca;
}

.jodit-content blockquote {
    border-left: 4px solid #667eea;
    background: #f0f0ff;
    padding: 12px 20px;
    margin: 16px 0;
    font-style: italic;
    color: #555;
    border-radius: 0 8px 8px 0;
}

.jodit-content hr {
    border: none;
    border-top: 2px solid #e2e8f0;
    margin: 20px 0;
}

.jodit-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0;
}

.jodit-content mark {
    background: #fef08a;
    padding: 2px 4px;
    border-radius: 3px;
}

.jodit-content strong {
    color: #1e293b;
}

/* Dark mode */
[data-theme="dark"] .jodit-content {
    color: #e2e8f0;
}

[data-theme="dark"] .jodit-content h2 {
    color: #f1f5f9;
    border-bottom-color: #818cf8;
}

[data-theme="dark"] .jodit-content h3 {
    color: #e2e8f0;
}

[data-theme="dark"] .jodit-content h4 {
    color: #cbd5e1;
}

[data-theme="dark"] .jodit-content table {
    border-color: #a0aec0 !important;
}

[data-theme="dark"] .jodit-content table th {
    background: #1a202c !important;
    color: #f1f5f9;
    border-color: #a0aec0 !important;
}

[data-theme="dark"] .jodit-content table td {
    border-color: #718096 !important;
    color: #e2e8f0;
}

[data-theme="dark"] .jodit-content table tr:nth-child(even) {
    background: #1e293b;
}

[data-theme="dark"] .jodit-content table tr:hover {
    background: #1e2d4a;
}

[data-theme="dark"] .jodit-content blockquote {
    background: #1e1b4b;
    border-left-color: #818cf8;
    color: #a5b4fc;
}

[data-theme="dark"] .jodit-content a {
    color: #818cf8;
}

[data-theme="dark"] .jodit-content strong {
    color: #f1f5f9;
}

[data-theme="dark"] .jodit-content mark {
    background: #854d0e;
    color: #fef08a;
}

/* ===================== DISCLAIMER PAGE ===================== */
.disclaimer-content {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #444;
}

.disclaimer-content p {
    margin: 12px 0;
}

.disclaimer-content ul {
    list-style: none;
    padding: 0;
    margin: 14px 0;
}

.disclaimer-content ul li {
    padding: 8px 0 8px 8px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
}

.disclaimer-content ul li:last-child {
    border-bottom: none;
}

.disclaimer-content ul li i {
    color: #667eea;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.disclaimer-content ul li i.fa-times-circle {
    color: #dc2626;
}

.disclaimer-content ul li i.fa-check-circle {
    color: #059669;
}

.disclaimer-content ul li i.fa-check {
    color: #059669;
}

.disclaimer-content a {
    color: #667eea;
    text-decoration: underline;
    font-weight: 500;
}

.disclaimer-content a:hover {
    color: #4338ca;
}

.disclaimer-content strong {
    color: #1e293b;
}

.disclaimer-contact-info {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 22px;
    margin: 16px 0;
}

.disclaimer-contact-info p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-contact-info i {
    color: #667eea;
    width: 20px;
    text-align: center;
}

/* Disclaimer Dark Mode */
[data-theme="dark"] .disclaimer-content {
    color: #cbd5e1;
}

[data-theme="dark"] .disclaimer-content strong {
    color: #f1f5f9;
}

[data-theme="dark"] .disclaimer-content ul li {
    border-bottom-color: #334155;
}

[data-theme="dark"] .disclaimer-content a {
    color: #818cf8;
}

[data-theme="dark"] .disclaimer-contact-info {
    background: #1e293b;
    border-color: #334155;
}

/* Hide sidebar widgets on disclaimer page */
body:has(.contact-header-card) .disclaimer-content {
    color: #444;
}