.featured-jobs-section {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    margin-bottom: 40px;
}

.featured-jobs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: #c4a484;
    animation: shimmer 2s infinite linear;
}

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

.featured-job-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.featured-job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.featured-job-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: #78a6c8;
    transition: all 0.3s ease;
}

.featured-job-card:hover::after {
    width: 6px;
    background: #6691b3;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #78a6c8, #6691b3);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 10px rgba(120, 166, 200, 0.3);
}

.featured-badge i {
    font-size: 0.7rem;
}

.job-company-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 1rem;
    border: 1px solid #e9ecef;
}

.job-details {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.job-info {
    flex: 1;
}

.job-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.job-company {
    font-size: 1rem;
    color: #6691b3;
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.job-meta-item i {
    color: #78a6c8;
    font-size: 0.8rem;
}

.apply-btn {
    margin-top: 1rem;
    background: #78a6c8;
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.apply-btn:hover {
    background: #6691b3;
    transform: translateY(-2px);
    color: white;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .featured-jobs-section {
        padding: 1.5rem;
        margin-bottom: 30px;
    }

    .featured-job-card {
        padding: 1.25rem;
    }

    .featured-job-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .job-details {
        gap: 0.75rem;
    }

    .job-title {
        font-size: 1.1rem;
    }

    .job-company {
        font-size: 0.95rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .job-meta-item {
        font-size: 0.9rem;
    }

    .d-flex.justify-content-between.align-items-center {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .featured-jobs-section {
        padding: 1.25rem;
        margin-bottom: 25px;
    }

    .featured-job-card {
        padding: 1rem;
    }

    .job-company-logo {
        width: 50px;
        height: 50px;
    }

    .job-title {
        font-size: 1rem;
    }

    .job-company {
        font-size: 0.9rem;
    }

    .job-meta-item {
        font-size: 0.85rem;
        background: rgba(120, 166, 200, 0.1);
        padding: 0.35rem 0.5rem;
        border-radius: 4px;
        gap: 0.3rem;
    }

    .job-meta-item i {
        font-size: 0.75rem;
    }

    .featured-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 375px) {
    .featured-jobs-section {
        padding: 1rem;
        margin-bottom: 20px;
    }

    .featured-job-card {
        padding: 0.875rem;
    }

    .job-company-logo {
        width: 45px;
        height: 45px;
    }

    .job-details {
        gap: 0.5rem;
    }

    .job-meta {
        gap: 0.4rem;
    }

    .apply-btn {
        width: 100%;
        text-align: center;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}
