.social-icon {
    transition: transform 0.3s ease;
}

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


.submit-btn {
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}


input, textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-section,
.contact-section {
    animation: fadeIn 0.8s ease-out forwards;
}
