.profile-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.profile-card-img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.profile-card-body {
    padding: 25px;
    text-align: center;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: #003865;
    margin-bottom: 5px;
}

.profile-title {
    font-size: 0.9rem;
    color: #5E5F61;
    margin-bottom: 20px;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.tag {
    background-color: #d6e4f2;
    color: #003865;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}
