.employees-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f4f4f4, #ffffff);
}

.employees-title {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.department {
    border-radius: 14px;
    padding: 25px 30px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.department:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.department-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 20px;
    border-left: 4px solid #f58220;
    padding-left: 12px;
}

.employee-list {
    list-style: none;
    padding: 0;
}

.employee-list li {
    display: flex;
    flex-wrap: wrap;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #f9f9f9;
    transition: 0.2s;
}

.employee-list li:hover {
    background: #fff3e8;
    transform: translateX(5px);
}

.emp-name {
    font-weight: 600;
    color: #222;
    margin-right: 5px;
}

.emp-info {
    color: #555;
}

.no-emp {
    color: #888;
    font-style: italic;
    margin-top: 10px;
}