/* style.css */
.mars-contact-section {
    padding: 50px 0;
    text-align: center;
    background: transparent; /* Adjust as needed */
    color: white;
}

.contact-container {
    max-width: 600px;
    margin: auto;
    padding: 0 15px;
}

.contact-heading {
    font-size: 4rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    line-height: 1.4;
    background: linear-gradient(90deg, #C50E57 10.99%, #FEDF67 89.01%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-heading::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 8px;
    background: linear-gradient(90deg, #C50E57 10.99%, #FEDF67 89.01%);
    border-radius: 0;
}

.contact-input-row, .contact-button-row {
    margin-top: 20px;
}

.contact-input {
    width: 100%;
    padding: 17px;
    margin: 10px;
    background-size: cover;
    justify-content:center;
    align-items: center;
    border: none;
}
.contact-textarea{
    width: 100%;
    padding: 17px;
    margin: 10px;
    background-size: cover;
    justify-content:center;
    align-items: center;
    border-top: 4px solid orangered;
    border-left: 4px solid orangered;
    border-bottom:4px solid yellow ;
    border-right: 4px solid yellow;
    background-color: transparent;

}


.contact-input {
    height: 50px;
    background-color: transparent;/* Adjust as needed */
}

.contact-textarea {
    height: 100px; /* Adjust as needed */
    resize: vertical;
    color: white;
}

.contact-send-button {
    padding: 10px 20px;
    background-color: red; /* Adjust as needed */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 1.5rem;
    }

    .contact-container {
        padding: 0 10px;
    }
    .contact-input {
        width: 80%;
        padding: 17px;
        margin: 10px;
        background-size: cover;
        justify-content:center;
        align-items: center;
        border: none;
    }
    .contact-textarea{
        width: 80%;
        padding: 17px;
        margin: 10px;
        background-size: cover;
        justify-content:center;
        align-items: center;
        border-top: 4px solid orangered;
        border-left: 4px solid orangered;
        border-bottom:4px solid yellow ;
        border-right: 4px solid yellow;
        background-color: transparent;

    }
    .contact-input {
        height: 4px;
        background-color: transparent;/* Adjust as needed */
        color: white;
    }
    .contact-textarea {
        height: 100px; /* Adjust as needed */
        resize: vertical;
        color: white;
    }

}
