 .employee-card {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        text-align: center;
        padding: 20px;
        margin-bottom: 20px;
        transition: transform 0.3s, box-shadow 0.3s;
        background: #fff;
        width: 100%;
        max-width: 250px;
    }
    .employee-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .employee-card img {
        width: 140px;
        height: 140px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid #888;
        margin-bottom: 15px;
    }
    .employee-card h5 {
        font-weight: 600;
        margin-bottom: 5px;
    }
    .employee-card p {
        margin-bottom: 5px;
        font-size: 14px;
        color: #555;
    }