    .job-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0px 15px;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .job-card {
        width: calc(100%);
        max-width: 1200px;
        background: #ffffff;
        border-radius: 8px;
        padding: 0;
        transition: all 0.25s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid #f0f0f0;
        box-sizing: border-box;
        /* backdrop-filter: blur(10px); */
    }

.job-card {
    width: calc(32.5%);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
    padding: 20px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
    margin-right: 0px;

}

    @media (max-width: 767px) {
        .job-card {
            width: 100% !important;
            max-width: calc(100% - 0px);
            margin-right: 0 !important;
            margin-bottom: 20px;
            padding: 15px 15px;
            box-sizing: border-box;
        }
        .job-list {
            flex-direction: column !important;
            gap: 0px;
            align-items: center;
        }
    }

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #5cb85c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.job-card:hover::before {
    transform: scaleX(1);
}

.meta-tag.location {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
    transform: scaleX(1);
}

.update-time {
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.update-time::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 2px;
}

.job-title {
    font-size: 23px;
    font-weight: 600;
    margin: -5px 0px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.job-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #28a745;
    border-radius: 3px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 25px 0;
}

.meta-tag {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 8px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.meta-tag:hover {
    transform: scale(1.05);
}

.department {
    background: linear-gradient(135deg, #28a745, #5cb85c);
}

.vacancies {
    background: linear-gradient(135deg, #906bd3, #2acf9f);
}

.location {
    background: linear-gradient(135deg, #5cb85c, #28a745);
    display: flex;
    align-items: center;
}

.button-container {
    text-align: center;
    margin-top: 30px;
}

.apply-btn {
    background: linear-gradient(135deg, #28a745, #5cb85c);
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
}

.apply-btn:hover::before {
    left: 100%;
}

.apply-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.apply-btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.apply-btn:hover svg {
    transform: translateX(0px);
}