@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #012556, #8599b5);
    color: #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.card {
    background: #5a798d;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 800px;
    width: 90%;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.02);
}

.profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #4b5563;
    object-fit: cover;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

.card:hover .profile-image img {
    border-color: #6ee7b7;
}

h1 {
    font-size: 2rem;
    margin: 0 0 0.5rem;
    font-weight: 600;
    color: #6ee7b7;
}

.title {
    font-size: 1rem;
    color: #b8b8c8;
    margin: 0 0 1.5rem;
    font-weight: 300;
}

p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 2rem;
}

.social-links {
    margin-bottom: 2rem;
}

.social-icon {
    color: #e5e7eb;
    font-size: 1.5rem;
    margin: 0 0.75rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #6ee7b7;
    transform: translateY(-5px);
}

.btn {
    display: inline-block;
    background: #6ee7b7;
    color: #1f2937;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background: #34d399;
    transform: translateY(-2px);
}
