/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

.contact-section-unique {
    background-image: url('../assets/images/contact.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 788px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .contact-section-unique {
        background-size: cover;
        height: 909px;
    }
}

@media (max-width: 480px) {
    .contact-section-unique {
        background-size: cover;
        height: 902px;
    }
}

.contact-heading-unique {
    font-size: clamp(24px, 5vw, 40px);
    line-height: 1.4;
    color: white;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
}

.contact-subheading-unique {
    font-size: clamp(14px, 3vw, 18px);
    line-height: 1.6;
    color: white;
    text-align: left;
    margin-bottom: 30px;
}

.contact-form-container-unique {
    width: 105%;
    max-width: 375px;
    padding: 5px;
    border-radius: 15px;
}

.contact-form-group-unique input, .contact-form-group-unique textarea {
    width: 100%;
    padding: 13px;
    border: 2px solid #fff;
    border-radius: 43px;
    font-size: 16px;
    background-color: #fefefe;
    color: #000;
    margin-bottom: 20px;
}

.contact-form-group-unique textarea {
    height: 100px;
    resize: none;
}

.contact-submit-button-unique {
    background-color: #C60000;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 57px;
    font-size: 18px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Poppins';
    font-weight: 600;
}

.contact-submit-button-unique:hover {
    background-color: #e63e3e;
}

.contact-form-row-unique {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .contact-form-row-unique {
        flex-direction: row;
        gap: 45px;
    }

    .contact-form-group-unique {
        flex: 1;
    }

    .contact-submit-button-unique {
        width: 52%;
    }
}

@media (max-width: 480px) {
    .contact-heading-unique {
        font-size: clamp(18px, 8vw, 32px);
        text-align: center;
    }

    .contact-subheading-unique {
        font-size: clamp(12px, 4vw, 16px);
        text-align: center;
    }

    .contact-form-container-unique {
        width: 95%;
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}

.contact-image-unique img {
    width: 173%;
    max-width: 565px;
    height: 682px;
}

/* Unique Column Class */
.contact-column-unique {
    width: 100%;
    padding: 15px;
}

/* New Grid Style to Prevent Bootstrap Overwrites */
.contact-row-unique {
    display: flex;
    flex-wrap: wrap;
}
.contact-column-left {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .contact-column-left {
        flex: 1 1 50%;
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1167px;
    }
}