* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #74b9ff, #1f09e3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 350px;
    text-align: center;
    transition: transform 0.3s ease;
}


.card:hover {
    transform: translateY(-10px);
}
.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid #74b9ff;
    transition: transform 0.3s ease;
}
.profile-image:hover {
    transform: scale(1.1);
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.card-title:hover {
    color: #74b9ff;
}

.card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

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

.icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: translateY(-5px);
}

.icon.facebook {
    background: #3b5998;
}

.icon.twitter {
    background: #1da1f2;
}

.icon.instagram {
    background: #e4405f;
}

.icon.linkedin {
    background: #0077b5;
}
