/* Contact Section Styling */
.contact-heading {
    font-size: 1.9rem;
    line-height: 1.4;
    color: #222;
}

.contact-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.contact-box:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.contact-box p {
    margin: 0;
}

/* Social Media Icons */
.contact-box .social-icon {
    border: none;
    background: #f6f6f6;
}
.contact-box .social-icon:hover {
    transition: 0.3s ease-in-out;
    background: #262626;
}

/* Contact Form Styling */

.contact-form button {
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    border: none;
    background: linear-gradient(135deg, #262626, #1d1d1d);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 2px 6px rgba(38, 38, 38, 0.2); /* Softer button shadow */
}

.contact-form button:hover {
    background: linear-gradient(135deg, #1d1d1d, #141414);
    box-shadow: 0px 3px 8px rgba(38, 38, 38, 0.25);
    transform: translateY(-2px);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .contact-heading {
        font-size: 1.5rem;
        text-align: center;
    }
}
