/* ===== IMPORT FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ===== GLOBAL STYLES & CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #f72585;
    --success-color: #4cc9f0;
    --warning-color: #f8961e;
    --danger-color: #e63946;
    --applied-color: #ff6b6b; /* New color for applied section */
    --applied-bg: rgba(255, 107, 107, 0.15); /* New background for applied section */
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --shadow-light: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-medium: 0 15px 35px rgba(0,0,0,0.15);
    --shadow-heavy: 0 20px 40px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-subheading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(120deg, #f8f9fa, #e9ecef);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(79, 55, 139, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(67, 97, 238, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(247, 37, 133, 0.02) 0%, transparent 30%);
    z-index: -1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.5px;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

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

a:hover {
    color: var(--secondary-color);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    width: 90%;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HEADER ===== */
.header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding: var(--spacing-lg) 0;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}


.header h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    color: black; /* पूरी तरह काला टेक्स्ट */
    animation: slideDown 0.6s ease-out;
}




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

.header p {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out 0.2s both;
    color: var(--text-secondary);
}

/* ===== FILTERS ===== */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.8s ease-out 0.3s both;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.filters input, 
.filters select {
    font-family: var(--font-body);
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    transition: var(--transition-normal);
    background: var(--white);
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-weight: 500;
}

.filters input:focus, 
.filters select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1), 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* ===== JOB LIST ===== */
.job-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

/* ===== JOB CARD ===== */
.job-card {
    font-family: var(--font-body);
    position: relative;
    background: linear-gradient(145deg, var(--white), #f8fafc);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 100%;
    min-height: 580px;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(67, 97, 238, 0.2);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.job-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-color), #ff4081);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 10px rgba(247, 37, 133, 0.3);
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
}

.job-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.company-name {
    font-family: var(--font-subheading);
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.company-name::before {
    content: '🏢';
    margin-right: 8px;
    font-size: 1.2rem;
}

.job-location, 
.job-type {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
}

.job-location svg {
    vertical-align: middle;
    margin-right: 10px;
    fill: red;
}

.job-location {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.job-location strong {
    margin-right: 5px;
}

.job-type::before {
    content: '💼';
    margin-right: 8px;
    font-size: 1.1rem;
}

.job-description, 
.qualifications, 
.experience, 
.salary, 
.benefits, 
.company-overview, 
.work-schedule, 
.job-category, 
.vacancies {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.job-description strong, 
.qualifications strong, 
.experience strong, 
.salary strong, 
.benefits strong, 
.company-overview strong, 
.work-schedule strong, 
.job-category strong, 
.vacancies strong {
    font-family: var(--font-subheading);
    color: var(--text-primary);
    font-weight: 600;
    display: inline-block;
    margin-right: 6px;
}

/* ===== HIGHLIGHTS ===== */
.highlight-location {
    background: rgba(76, 201, 240, 0.15);
    color: #0077b6;
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    display: inline-block;
    font-family: var(--font-subheading);
}

.highlight-salary {
    background: rgba(248, 150, 30, 0.15);
    color: #e67700;
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    display: inline-block;
    font-family: var(--font-subheading);
}

.highlight-vacancies {
    background: rgba(67, 97, 238, 0.15);
    color: #364fc7;
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    display: inline-block;
    font-family: var(--font-subheading);
}

/* ===== BADGES ===== */
.job-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.badge {
    font-family: var(--font-subheading);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
}

.badge-new { 
    background: linear-gradient(135deg, var(--success-color), #00b4d8);
    animation-delay: 0.2s;
}
.badge-remote { 
    background: linear-gradient(135deg, var(--warning-color), #ff9e00);
    animation-delay: 0.4s;
}
.badge-urgent { 
    background: linear-gradient(135deg, var(--danger-color), #d62828);
    animation-delay: 0.6s;
}

/* ===== APPLY BUTTON ===== */
.apply-btn {
    font-family: var(--font-subheading);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 600;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: var(--transition-normal);
    padding: 14px 28px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: var(--spacing-md);
    width: 100%;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.apply-btn:hover::before {
    transform: translateX(0);
}

.apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

.apply-btn::after {
    content: '→';
    margin-left: 10px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.apply-btn:hover::after {
    transform: translateX(3px);
}

/* ===== META INFO ===== */
.apply-meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.deadline-small {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-subheading);
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    color: var(--danger-color);
    background: rgba(230, 57, 70, 0.1);
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 600;
    width: fit-content;
    max-width: 65%;
}

.deadline-small svg {
    width: 16px;
    height: 16px;
    fill: var(--danger-color);
}

.created-at {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-subheading);
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    color: var(--text-secondary);
    background: rgba(108, 117, 125, 0.1);
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 500;
    width: fit-content;
    max-width: 100%;
}

.created-at svg {
    width: 16px;
    height: 16px;
    fill: var(--text-secondary);
}

/* ===== APPLIED ICON - UPDATED DESIGN AND COLOR ===== */
.applied-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #e6f7ee;
    color: #047857;
    padding: 6px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.25);
    z-index: 1;
    transition: var(--transition-normal);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: default;
    white-space: nowrap;
    border: 1px solid rgba(4, 120, 87, 0.2);
}

.applied-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255, 107, 107, 0.35);
    background: rgba(255, 107, 107, 0.25);
}

.applied-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--applied-color);
}

.applied-count {
    font-weight: 700;
    margin-left: 2px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--spacing-xl) 0;
    gap: 10px;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 0.5s both;
}

.pagination a, 
.pagination span {
    font-family: var(--font-subheading);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    font-weight: 600;
    background: var(--white);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pagination a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
}

.pagination a.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 6px 16px rgba(67, 97, 238, 0.3);
}

.pagination span.disabled {
    background: var(--light-bg);
    color: var(--text-light);
    border-color: var(--border-color);
    cursor: not-allowed;
    opacity: 0.6;
}

.ellipsis {
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== BACK TO HOME BUTTON ===== */
.back-home-btn {
    font-family: var(--font-subheading);
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, var(--danger-color), #d62828);
    color: var(--white);
    border: none;
    padding: 12px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    transition: var(--transition-normal);
}

.back-home-btn:hover {
    background: linear-gradient(135deg, #d62828, #a61e1e);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.back-home-btn::before {
    content: "←";
    margin-right: 8px;
    font-size: 1.1rem;
}

.back-home-btn.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: var(--spacing-md);
    }
    
    .job-list {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: var(--spacing-md);
    }
}

@media (max-width: 992px) {
    .container {
        padding: var(--spacing-md);
    }
    
    .header h1 {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
    }
    
    .job-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--spacing-md);
    }
    
    .job-card {
        padding: var(--spacing-md);
        min-height: 540px;
    }
    
    .filters {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }
    
    .filters input, 
    .filters select {
        min-width: 100%;
    }
    
    .deadline-small, .created-at {
        max-width: 55%;
        font-size: clamp(0.75rem, 1.5vw, 0.85rem);
        padding: 6px 12px;
    }
    
    .applied-icon {
        padding: 5px 8px;
        font-size: 0.7rem;
    }
    
    .applied-icon svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-top: 80px;
    }
    
    .header {
        margin-bottom: var(--spacing-lg);
    }
    
    .header h1 {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }
    
    .header p {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    
    .filters {
        padding: var(--spacing-md);
        gap: var(--spacing-xs);
    }
    
    .job-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .job-card {
        padding: var(--spacing-md);
        min-height: auto;
    }
    
    .job-title {
        font-size: clamp(1.2rem, 3vw, 1.4rem);
    }
    
    .meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .deadline-small, .created-at {
        max-width: 100%;
    }
    
    .applied-icon {
        align-self: flex-end;
    }
    
    .back-home-btn {
        padding: 10px 16px;
        font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    }
    
    .back-home-btn::before {
        margin-right: 6px;
    }
    
    .pagination {
        gap: 8px;
    }
    
    .pagination a, 
    .pagination span,
    .ellipsis {
        min-width: 42px;
        height: 42px;
        font-size: clamp(0.8rem, 1.5vw, 0.9rem);
        padding: 0 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-top: 70px;
        padding: var(--spacing-sm);
    }
    
    .header {
        margin-bottom: var(--spacing-md);
        padding: var(--spacing-md) 0;
    }
    
    .header h1 {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }
    
    .filters {
        padding: var(--spacing-sm);
    }
    
    .job-card {
        padding: var(--spacing-sm);
    }
    
    .job-title {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
    }
    
    .apply-meta {
        gap: var(--spacing-xs);
    }
    
    .deadline-small, .created-at {
        font-size: clamp(0.7rem, 1.5vw, 0.8rem);
        padding: 6px 10px;
    }
    
    .applied-icon {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    
    .applied-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .back-home-btn {
        padding: 8px 14px;
        font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    }
    
    .back-home-btn::before {
        margin-right: 5px;
    }
    
    .pagination {
        gap: 5px;
        margin: var(--spacing-lg) 0;
    }
    
    .pagination a, 
    .pagination span,
    .ellipsis {
        min-width: 36px;
        height: 36px;
        font-size: clamp(0.75rem, 1.5vw, 0.85rem);
        padding: 0 10px;
    }
}

/* ===== ANIMATION FOR ELEMENTS ===== */
.job-card:nth-child(1) { animation-delay: 0.1s; }
.job-card:nth-child(2) { animation-delay: 0.2s; }
.job-card:nth-child(3) { animation-delay: 0.3s; }
.job-card:nth-child(4) { animation-delay: 0.4s; }
.job-card:nth-child(5) { animation-delay: 0.5s; }
.job-card:nth-child(6) { animation-delay: 0.6s; }
.job-card:nth-child(7) { animation-delay: 0.7s; }
.job-card:nth-child(8) { animation-delay: 0.8s; }
.job-card:nth-child(9) { animation-delay: 0.9s; }

/* ===== LOADING ANIMATION ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

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

/* ===== NO JOBS MESSAGE ===== */
.no-jobs {
    font-family: var(--font-body);
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin: var(--spacing-lg) 0;
    animation: fadeIn 0.5s ease-out;
}

.no-jobs::before {
    content: "🔍";
    display: block;
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

/* ===== FLOATING ANIMATION ===== */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.job-card:hover {
    animation: float 3s ease-in-out infinite;
}

/* ===== GLOW EFFECT ===== */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(67, 97, 238, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(67, 97, 238, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(67, 97, 238, 0.5);
    }
}

.job-card:hover {
    animation: glow 2s ease-in-out infinite;
}