/* ===== PROFILE CARD ===== */

.profile-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image */
.profile-card img {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 18px;
}

/* Name */
.profile-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Designation */
.profile-card .designation {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

/* Company */
.profile-card .company {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    margin-bottom: 15px;
}

/* LinkedIn Button */
.profile-card .linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0A66C2;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 16px;
}

.profile-card .linkedin-btn:hover {
    background: #004182;
    transform: scale(1.1);
}