.ngoMember .profile-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    overflow: hidden;
    width: 100%;
    /* max-width: 350px; */
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* margin: 15px; */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ngoMember.profile-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.15);
}

.ngoMember .profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto 20px;
    display: block;
    transition: all 0.3s ease;
}

.ngoMember .profile-card:hover .profile-img {
    border-color: var(--primary);
}

.ngoMember .profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.ngoMember .profile-role {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ngoMember .profile-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ngoMember .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.ngoMember .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ngoMember .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ngoMember .social-link.facebook {
    background-color: #3b5998;
}

.ngoMember .social-link.twitter {
    background-color: #1da1f2;
}

.ngoMember .social-link.linkedin {
    background-color: #0077b5;
}

.ngoMember .social-link.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .profile-card {
        padding: 25px;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }
}