/*
Theme Name: ResultNexa
Theme URI: https://resultnexa.in
Author: ResultNexa Team
Author URI: https://resultnexa.in
Description: A professional career guidance theme for ResultNexa.in - Result se Career tak
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: resultnexa
Tags: one-column, two-columns, right-sidebar, flexible-header, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, blog, e-commerce, education, news
*/

/* ========================================
   ROOT VARIABLES - CENTRALIZED CUSTOMIZATION
   Change colors, fonts, spacing from here!
   ======================================== */

:root {
  /* Brand Colors */
  --primary: #003f50;
  --primary-dark: #e64a00;
  --primary-light: #ff6b1a;
  --purple: #8b5cf6;
  --green: #10b981;
  --orange: #f97316;
  --accent-purple: #764ba2;
  
  /* Neutral Colors */
  --text-primary: #0f172a;
  --heading-text-primary: #5d6737;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-dark: #0f172a;
  
  /* Border Colors */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-dark: #94a3b8;
  
  /* Status Colors */
  --success: #10b981;
  --success-bg: #dcfce7;
  --success-text: #166534;
  --warning: #f59e0b;
  --warning-bg: #fef3c7;
  --warning-text: #92400e;
  --error: #ef4444;
  --error-bg: #fee2e2;
  --error-text: #991b1b;
  --info: #3b82f6;
  --info-bg: #dbeafe;
  --info-text: #1e40af;
  
  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;
  
  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Container Widths */
  --container-xl: 1280px;
  
  /* Z-Index Scale */
  --z-below: -1;
  --z-normal: 1;
  --z-dropdown: 50;
  --z-sticky: 100;
  --z-fixed: 200;
  --z-modal: 500;
}

/* ========================================
   RESET AND BASE STYLES (ORIGINAL)
   ======================================== */

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}
    
html { 
  scroll-behavior: smooth; 
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-primary);
}

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

.section { 
  padding: 80px 0; 
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--heading-text-primary);
  margin-bottom: 16px;
}

/* ========================================
   HEADER (ORIGINAL - PRESERVED)
   ======================================== */

header.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: var(--font-extrabold);
  background: linear-gradient(135deg, var(--primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: var(--font-medium);
  position: relative;
  padding: 8px 4px;
  text-align: center;
  line-height: 1;
  display: block;
}
nav a span{
  display: block;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s;
}

nav a:hover::after { 
  width: 100%; 
}


/* ========================================
   HOMEPAGE STYLES (ORIGINAL - PRESERVED)
   ======================================== */

/* Alert Bar */
.alert-bar {
  background: #5d6737;
  color: white;
  padding: 12px 0;
  text-align: center;
  font-size: 0.9rem;
}

.alert-bar a {
  color: #fbbf24;
  font-weight: var(--font-semibold);
  text-decoration: underline;
  margin-left: 16px;
}

/* Hero */
.hero {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23fff' fill-opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content { 
  position: relative; 
  z-index: 1; 
  max-width: 900px; 
  margin: 0 auto; 
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: var(--font-black);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-xl);
}

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

.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
}

/* Stats */
.stats {
  background: white;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: var(--font-extrabold);
  background: linear-gradient(135deg, var(--primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label { 
  color: var(--text-secondary); 
  margin-top: 8px; 
}

/* Section Titles */
.section-title {
  font-size: 2.25rem;
  font-weight: var(--font-extrabold);
  text-align: center;
  margin-bottom: 16px;
  background: var(--heading-text-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.card:hover::before { 
  transform: scaleX(1); 
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  margin-bottom: 12px;
}

.card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-link {
  color: var(--primary);
  font-weight: var(--font-semibold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link:hover { 
  gap: 10px; 
}

/* Results Cards */
.result-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

.result-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.result-header {
  background: #003f50;
  color: white;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-badge {
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: var(--font-semibold);
}

.result-body { 
  padding: 24px; 
}

.result-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Jobs/Tabs */
.tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tab {
  padding: 12px 24px;
  border: 2px solid var(--border-light);
  border-radius: 50px;
  background: white;
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: all 0.3s;
}

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

.tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.job-list {
  list-style: none;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.job-item {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

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

.job-item:hover {
  background: var(--info-bg);
  padding-left: 32px;
}

.job-title {
  font-weight: var(--font-semibold);
  margin-bottom: 4px;
}

.job-category {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.job-deadline {
  background: var(--warning-bg);
  color: var(--warning-text);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: var(--font-semibold);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1e40af, #7c3aed);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23fff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: var(--font-extrabold);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h4 {
  font-size: 1.5rem;
  font-weight: var(--font-extrabold);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p { 
  color: var(--text-muted); 
}

footer h4 {
  margin-bottom: 20px;
  font-weight: var(--font-bold);
}

footer ul { 
  list-style: none; 
}

footer li { 
  margin-bottom: 12px; 
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}

footer a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #334155;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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


/* ========================================
   SINGLE JOB PAGE
   ======================================== */
        /* Breadcrumbs */
        .breadcrumbs {
            font-size: var(--text-xs);
            color: var(--text-primary);
            margin-bottom: var(--space-5);
        }

        .breadcrumbs a {
            color: var(--text-primary);
            text-decoration: none;
            transition: color var(--transition-fast);
            display: inline-block;
        }
        .breadcrumbs a::after {
          content: '';
          background: transparent;
          width: 0;
          height: 0;
        }

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

       /* Single Job Container */
        .single-job-container {
            padding: var(--space-1) 0;
            background: var(--bg-secondary);
            min-height: 100vh;
        }

        .single-job {
            background: transparent;
        }

        /* Ad Placements */
        .ad-top,
        .ad-content,
        .ad-bottom {
            margin: var(--space-8) 0;
            padding: var(--space-6);
            background: var(--bg-secondary);
            border: 2px dashed var(--border-light);
            text-align: center;
            min-height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: var(--text-sm);
        }


        .ad-sidebar {
            min-height: 300px;
            position: sticky;
            z-index: var(--z-sticky);
            top: calc(72px + var(--space-5));
            margin-bottom: var(--space-8);
            padding: var(--space-6);
            background: var(--bg-secondary);
            border: 2px dashed var(--border-light);
            text-align: center;
            min-height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: var(--text-sm);            
        }

        /* Job Header */
        .job-header {
            background: var(--heading-text-primary);
            color: var(--bg-primary);
            padding: var(--space-4) var(--space-6);
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-md);
            margin-bottom: var(--space-8);
        }

        .job-header-content {
            position: relative;
            z-index: 1;
        }

        .job-tags {
            margin-bottom: var(--space-5);
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-3);
        }

        .tag {
            display: inline-block;
            padding: var(--space-2) var(--space-4);
            background: rgba(255, 255, 255, 0.2);
            color: var(--bg-primary);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-full);
            font-size: var(--text-xs);
            font-weight: var(--font-semibold);
        }

        .status-active {
            background: var(--success-bg);
            color: var(--success-text);
            border-color: var(--success);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .job-type-tag {
            background: var(--info-bg);
            color: var(--info-text);
            border-color: var(--info);
        }

        .state-tag {
            background: var(--success-bg);
            color: var(--success-text);
            border-color: var(--success);
        }

        .district-tag {
            background: var(--warning-bg);
            color: var(--warning-text);
            border-color: var(--warning);
        }

        .job-title {
            font-size: var(--text-3xl);
            font-weight: var(--font-black);
            color: var(--bg-primary);
            margin-bottom: var(--space-5);
            line-height: 1.2;
        }

        .job-meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-6);
            font-size: var(--text-sm);
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: var(--space-2);
            opacity: 0.95;
        }

        /* Content Wrapper */
        .job-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: var(--space-10);
            align-items: start;
        }

        .job-main-content {
            min-width: 0;
        }

        /* Quick Summary Card */
        .job-quick-summary {
            background: var(--heading-text-primary);
            color: white;
            padding: var(--space-4);
            border-radius: var(--radius-md);
            margin-bottom: var(--space-8);
            box-shadow: var(--shadow-xl);
        }

        .job-quick-summary h2 {
            color: white;
            font-size: var(--text-2xl);
            margin-bottom: var(--space-5);
        }

        .quick-summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
            gap: var(--space-5);
        }

        .quick-summary-item {
            
        }

        .quick-summary-label {
            font-size: var(--text-xs);
            opacity: 0.9;
            margin-bottom: var(--space-1);
        }

        .quick-summary-value {
            font-size: var(--text-2xl);
            font-weight: var(--font-bold);
        }

        .quick-summary-value.medium {
            font-size: var(--text-lg);
            font-weight: var(--font-semibold);
        }

        /* Important Info Sections */
        .job-important-info {
            background: var(--bg-primary);
            padding: var(--space-8);
            border-radius: var(--radius-xl);
            margin-bottom: var(--space-8);
            box-shadow: var(--shadow-md);
        }

        .job-important-info h2 {
            font-size: var(--text-3xl);
            margin-bottom: var(--space-6);
            color: var(--text-primary);
        }

        /* Info Table */
        .info-table {
            width: 100%;
            border-collapse: collapse;
        }

        .info-table tr {
            border-bottom: 1px solid var(--border-light);
        }

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

        .info-table th,
        .info-table td {
            padding: var(--space-2);
            text-align: left;
        }

        .info-table th {
            font-weight: var(--font-semibold);
            color: var(--text-secondary);
            width: 40%;
        }

        .info-table td {
            color: var(--text-primary);
            font-weight: var(--font-medium);
        }

        .info-table thead tr {
            background: var(--bg-secondary);
        }

        .info-table thead th {
            color: var(--text-primary);
            font-weight: var(--font-bold);
        }

        .info-table tbody tr:hover {
            background: var(--bg-secondary);
        }

        /* Job Description */
        .job-description {
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: var(--space-10);
            font-size: var(--text-base);
            background: var(--bg-primary);
            padding: var(--space-8);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
        }

        .job-description h2,
        .job-description h3 {
            color: var(--text-primary);
            margin-top: var(--space-8);
            margin-bottom: var(--space-4);
            font-weight: var(--font-bold);
        }

        .job-description h2 {
            font-size: var(--text-3xl);
        }

        .job-description h3 {
            font-size: var(--text-2xl);
        }

        .job-description p {
            margin-bottom: var(--space-4);
        }

        .job-description ul,
        .job-description ol {
            margin: var(--space-4) 0;
            padding-left: var(--space-6);
        }

        .job-description li {
            margin-bottom: var(--space-3);
        }

        /* Important Links */
        .important-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-4);
            border-radius: var(--radius-lg);
            text-decoration: none;
            font-weight: var(--font-semibold);
            border: 2px solid;
            transition: all var(--transition-base);
        }

        .important-link:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-lg);
        }

        .link-apply {
            background: var(--success-bg);
            color: var(--success-text);
            border-color: var(--success);
        }

        .link-notification {
            background: var(--info-bg);
            color: var(--info-text);
            border-color: var(--info);
        }

        .link-syllabus {
            background: var(--warning-bg);
            color: var(--warning-text);
            border-color: var(--warning);
        }

        .link-website {
            background: white;
            color: var(--primary);
            border-color: var(--primary);
        }

        /* Disclaimer */
        .job-disclaimer {
            background: var(--warning-bg);
            padding: var(--space-4);
            border-radius: var(--radius-md);
            border-left: 4px solid var(--warning);
            margin-top: var(--space-8);
            margin-bottom: var(--space-8);
        }

        .job-disclaimer h3 {
            color: var(--warning-text);
            font-size: var(--text-lg);
            margin-bottom: var(--space-3);
        }

        .job-disclaimer p {
            color: var(--text-primary);
            font-size: var(--text-sm);
            line-height: 1.7;
        }

        /* Social Share */
        .job-share {
            background: var(--bg-primary);
            padding: var(--space-6);
            border-radius: var(--radius-xl);
            margin-bottom: var(--space-8);
            box-shadow: var(--shadow-md);
        }

        .job-share h3 {
            font-size: var(--text-xl);
            margin-bottom: var(--space-4);
            color: var(--text-primary);
        }

        .job-share p {
            margin-bottom: var(--space-4);
            color: var(--text-secondary);
            font-size: var(--text-sm);
        }

        .share-buttons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-3);
        }

        .share-btn {
            padding: var(--space-3) var(--space-5);
            text-align: center;
            color: var(--bg-primary);
            text-decoration: none;
            border-radius: var(--radius-lg);
            font-weight: var(--font-semibold);
            transition: all var(--transition-base);
        }

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

        .share-btn.facebook { background: #1877f2; }
        .share-btn.twitter { background: #1da1f2; }
        .share-btn.whatsapp { background: #25d366; }
        .share-btn.linkedin { background: #0077b5; }

        /* Sidebar */
        .job-sidebar {
            position: sticky;
            top: calc(72px + var(--space-5));
        }

        .sidebar-card {
            background: var(--bg-primary);
            padding: var(--space-6);
            border-radius: var(--radius-xl);
            margin-bottom: var(--space-6);
            box-shadow: var(--shadow-md);
        }

        .sidebar-card h3 {
            font-size: var(--text-lg);
            font-weight: var(--font-bold);
            margin-bottom: var(--space-4);
            color: var(--text-primary);
        }

        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-card li {
            padding: var(--space-3) 0;
            border-bottom: 1px solid var(--border-light);
        }

        .sidebar-card li:last-child {
            border-bottom: none;
        }

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

        .sidebar-card a:hover {
            color: var(--primary-dark);
        }

        /* Quick Action Card */
        .quick-action-card {
            background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
            color: white;
            text-align: center;
        }

        .quick-action-card h3 {
            color: white;
            margin-bottom: var(--space-5);
        }

        .btn-apply {
            display: block;
            margin-bottom: var(--space-3);
            background: white;
            color: var(--success);
            padding: var(--space-4);
            border-radius: var(--radius-lg);
            text-decoration: none;
            font-weight: var(--font-bold);
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-base);
        }

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

        .btn-secondary {
            display: block;
            background: rgba(255,255,255,0.2);
            color: white;
            padding: var(--space-3);
            border-radius: var(--radius-lg);
            text-decoration: none;
            font-weight: var(--font-semibold);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
            transition: all var(--transition-base);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.3);
        }

        /* Quick Info List */
        .quick-info-list {
            list-style: none;
            padding: 0;
        }

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

        /* Related Jobs */
        .related-job-item {
            text-decoration: none;
            color: var(--text-primary);
            display: block;
        }

        .related-job-title {
            font-weight: var(--font-semibold);
            margin-bottom: var(--space-1);
            font-size: var(--text-sm);
            line-height: 1.4;
        }

        .related-job-date {
            font-size: var(--text-xs);
            color: var(--text-secondary);
        }

        /* Job Navigation */
        .job-navigation {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-5);
            margin-top: var(--space-10);
            padding-top: var(--space-8);
            border-top: 2px solid var(--border-light);
        }

        .job-navigation a {
            display: block;
            padding: var(--space-6);
            background: var(--bg-primary);
            border-radius: var(--radius-xl);
            text-decoration: none;
            color: var(--primary);
            font-weight: var(--font-medium);
            transition: all var(--transition-base);
            box-shadow: var(--shadow-md);
        }

        .job-navigation a:hover {
            background: var(--info-bg);
            transform: translateX(-5px);
            box-shadow: var(--shadow-lg);
        }

        .nav-next a:hover {
            transform: translateX(5px);
        }

        .job-navigation a span {
            display: block;
            margin-top: var(--space-2);
            color: var(--text-primary);
            font-weight: var(--font-semibold);
        }

        .job-important-info h2, .job-important-info h2, .job-description h2, .job-share h2{
          color: var(--heading-text-primary);
        }

        /* Footer */
        footer {
            background: var(--bg-dark);
            color: white;
            padding: var(--space-12) 0 var(--space-6);
            margin-top: var(--space-20);
        }

        .footer-content {
            text-align: center;
            color: var(--text-muted);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .job-content-wrapper {
                grid-template-columns: 1fr;
            }
            
            .job-sidebar {
                position: static;
            }
            
            .ad-sidebar {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .job-title {
                font-size: var(--text-3xl);
            }
            
            .job-navigation {
                grid-template-columns: 1fr;
            }
            
            .share-buttons {
                grid-template-columns: 1fr;
            }

            nav {
                display: none;
            }

            .quick-summary-grid {
                grid-template-columns: 1fr;
            }
        }