 :root {
        --primary-color: #3b82f6;
        --primary-hover: #2563eb;
        --secondary-color: #64748b;
        --success-color: #10b981;
        --warning-color: #f59e0b;
        --info-color: #06b6d4;
        --danger-color: #ef4444;
        --dark-bg: #0f172a;
        --card-bg: #1e293b;
        --text-primary: #f8fafc;
        --text-secondary: #cbd5e1;
        --text-muted: #94a3b8;
        --border-color: #334155;
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        --gradient-primary: linear-gradient(135deg, #3b82f6, #1d4ed8);
        --gradient-secondary: linear-gradient(135deg, #64748b, #475569);
    }

    body {
        background: var(--dark-bg);
        color: var(--text-primary);
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
    }

    .careers-hero {
        padding: 80px 0 60px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
        border-bottom: 1px solid var(--border-color);
    }

    .careers-hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

    .careers-hero .lead {
        font-size: 1.25rem;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
    }

    .careers-content {
        padding: 60px 0;
    }

    .career-card {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        margin-bottom: 2rem;
        transition: all 0.3s ease;
        overflow: hidden;
    }

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

    .career-card-header {
        padding: 2rem 2rem 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .career-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }

    .career-meta {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
    }

    .meta-label {
        color: var(--text-muted);
        font-weight: 500;
        min-width: 80px;
    }

    .meta-value {
        color: var(--text-secondary);
        font-weight: 600;
    }

    .status-badge {
        display: inline-flex;
        align-items: center;
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.025em;
    }

    .status-open {
        background: rgba(16, 185, 129, 0.1);
        color: var(--success-color);
        border: 1px solid rgba(16, 185, 129, 0.2);
    }

    .status-paused {
        background: rgba(245, 158, 11, 0.1);
        color: var(--warning-color);
        border: 1px solid rgba(245, 158, 11, 0.2);
    }

    .status-draft {
        background: rgba(6, 182, 212, 0.1);
        color: var(--info-color);
        border: 1px solid rgba(6, 182, 212, 0.2);
    }

    .status-closed {
        background: rgba(100, 116, 139, 0.1);
        color: var(--secondary-color);
        border: 1px solid rgba(100, 116, 139, 0.2);
    }

    .career-card-body {
        padding: 2rem;
    }

    .career-description {
        color: var(--text-secondary);
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .requirements-list,
    .responsibilities-list {
        list-style: none;
        padding: 0;
        margin-bottom: 2rem;
    }

    .requirements-list li,
    .responsibilities-list li {
        position: relative;
        padding: 0.5rem 0 0.5rem 1.5rem;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    .requirements-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0.5rem;
        color: var(--success-color);
        font-weight: 700;
    }

    .responsibilities-list li::before {
        content: "→";
        position: absolute;
        left: 0;
        top: 0.5rem;
        color: var(--primary-color);
        font-weight: 700;
    }

    .apply-btn {
        background: var(--gradient-primary);
        border: none;
        color: white;
        padding: 0.875rem 2rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-md);
    }

    .apply-btn:hover {
        background: var(--gradient-secondary);
        color: white;
        transform: translateY(-1px);
        box-shadow: var(--shadow-lg);
        text-decoration: none;
    }

    .no-careers {
        text-align: center;
        padding: 4rem 2rem;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        max-width: 600px;
        margin: 0 auto;
    }

    .no-careers-icon {
        font-size: 4rem;
        color: var(--text-muted);
        margin-bottom: 1rem;
    }

    .no-careers h3 {
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .no-careers p {
        color: var(--text-muted);
        margin-bottom: 0;
    }

    .salary-range {
        color: var(--success-color);
        font-weight: 600;
    }

    .date-info {
        font-size: 0.9rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .careers-hero {
            padding: 60px 0 40px;
        }

        .careers-hero h1 {
            font-size: 2.5rem;
        }

        .careers-content {
            padding: 40px 0;
        }

        .career-card-header,
        .career-card-body {
            padding: 1.5rem;
        }

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

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

    @media (max-width: 480px) {
        .careers-hero h1 {
            font-size: 2rem;
        }

        .career-card-header,
        .career-card-body {
            padding: 1rem;
        }
    }

    /* Loading Animation */
    .career-card {
        animation: slideUp 0.6s ease-out;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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


    .department-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        list-style: none;
        padding: 0;
        margin: 1rem 0 2rem 0;
    }

    .department-item a {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        border-radius: 9999px;
        background: var(--gradient-secondary);
        color: var(--text-primary);
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        box-shadow: var(--shadow-sm);
        transition: background 0.3s, color 0.3s, transform 0.2s;
    }

    .department-item a:hover,
    .department-item a:focus {
        background: var(--gradient-primary);
        color: #fff;
        transform: translateY(-2px) scale(1.05);
        text-decoration: none;
    }

    .left-side-bar-sticky-center {
        position: sticky;
        top: 90px;
        z-index: 2;
        background: var(--card-bg);
        border-radius: 12px;
        box-shadow: var(--shadow-md);
        padding: 2rem 1rem;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    @media (max-width: 991px) {
        .left-side-bar-sticky-center {
            position: static;
            box-shadow: none;
            padding: 1rem 0;
            margin-bottom: 1rem;
        }
    }
.container, .row {
    overflow: visible !important;
}
    .left-side-bar-sticky-center {
        position: sticky;
        top: 90px; /* Adjust for your header */
        z-index: 2;
        background: #23272f;
        border-radius: 12px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.4);
        padding: 2rem 1rem;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .container, .row {
        overflow: visible !important;
    }
    @media (max-width: 991px) {
        .left-side-bar-sticky-center {
            position: static;
            box-shadow: none;
            padding: 1rem 0;
            margin-bottom: 1rem;
        }
    }