.heading {
    text-align: center;
    padding: 2rem 0;
    background-color: #8e1616;
    margin-bottom: 2rem;
    margin-top: 2rem;
    width: 80%;
    border-radius: 50px;
    margin-left: 10%;
}
.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
    padding: 30px;
    border-radius: 10px;
    background: #8e1616;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.contact-info h2, .contact-form h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 20px;
    color: #ffffff;
    margin-right: 15px;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    color: #ffffff;
    font-size: 24px;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #D84040;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-group label {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #ffffff;
    pointer-events: none;
    transition: 0.3s ease all;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: white;
    outline: none;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    top: -20px;
    font-size: 14px;
    color: #ffffff;
}

.submit-btn {
    background: #D84040;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: white;
    color: #D84040;
    font-weight: bold;

}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info, .contact-form {
        padding: 20px;
    }

    .social-links {
        text-align: center;
    }

    .social-links a {
        margin: 0 10px;
    }
}

.mobile-signup {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-signup {
        display: block;
    }
    .icons {
        display: none;
    }
}