/* Contact Section */
#contact {
    color: #000;
    background-color: #f9f9f9;
    text-align: center;
    padding: 30px 20px;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode #contact {
    background-color: #1a1a1a;
    color: #ffffff;
}

.contact-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-icon {
    font-size: 32px;
    color: #007BFF;
    transition: color 0.3s;
    text-decoration: none;
}

.contact-icon:hover {
    color: #3cc94e;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-icon {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .contact-icon {
        font-size: 24px;
    }
}

/* Hire Me Button */
.hire-me-button {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #003975;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    margin-left: 10px;
}

.hire-me-button:hover {
    color: #000000;
    background-color: #3cc94e;
    transform: scale(1.1);
}