
/* Contact Us Section */
#contact-us {
    background-color: #fff;
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2.5rem;
    color: #007bff;
}

/* Contact Cards */
.contact-card {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: scale(1.05);
}

.contact-card i {
    color: #007bff;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    font-size: 2rem;
    color: #555;
    background-color: #fff;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #007bff;
    color: white;
    transform: scale(1.2);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: rotate(360deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 20px;
    }

    .social-icons {
        gap: 15px;
    }
}
