.profile-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.intro-text {
    color: #555;
    line-height: 1.7;
}

.social-btn i {
    font-size: 1.3rem;
}

.linkedinColor {
    background-color: #0077b5;
}

.githubColor {
    background-color: #24292e;
}

.gmailColor {
    background-color: #d44638;
}

.linkedinColor:hover {
    background-color: #005582;
}

.githubColor:hover {
    background-color: #000000;
}

.gmailColor:hover {
    background-color: #b8352c;
}

.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}