.form-group {
    display: flex;
}

.button-container {
    text-align: center; /* Center the button and error message within the container */
    margin-right: 10px; /* Add spacing between buttons */
}

#whatsapp_icon_div {
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a box shadow for a lifted effect */
    transition: background-color 0.3s ease;
}

#whatsapp_icon_div:hover {
    background-color: #128C7E; /* Change color on hover */
}

.fa-whatsapp,
.fa-phone {
    margin-right: 5px; /* Adjust the spacing between icon and text */
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: inline-block; /* Keeps the error message inline */
}

#show_icon_div {
    display: block;
    color: #FFFFFF; /* Text color */
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a box shadow for a lifted effect */
    transition: background-color 0.3s ease;
    margin-bottom: 10px; /* Add spacing between buttons */
}

#show_icon_div:hover {
    background-color: #297FB8; /* Change color on hover */
}

.form-group {
    margin-bottom: 20px;
    text-align: left; /* Align label and textarea to the left */
}

.form-label {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.mail-textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}

.mail-textarea:focus {
    border-color: #007BFF; /* Highlight border color on focus */
}

#mailUsForm {
    display: none;
}

/* Ensure buttons are inline */
.button-container {
    display: inline-block;
    margin-right: 10px; /* Add spacing between buttons */
}

#whatsapp_container,
#show_container,
#mail_us_container {
    text-align: center;
    flex:1;
}

#whatsapp_icon_div,
#show_icon_div,
#mailUsButton {
    display: inline-block;
    width: 100%;
}

#mailUsButton {
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a box shadow for a lifted effect */
    transition: background-color 0.3s ease;
}

/* Adjust label and input alignment */
#mailUsForm .form-label {
    flex-basis: 100px; /* Adjust the width of the label */
    margin-bottom: 10px; /* Add space between label and input */
}

#mailUsForm .form-control {
    flex: 1; /* Take up remaining space */
    margin-bottom: 10px; /* Add space between inputs */
}

.col-12, .col-2{
    padding-left:0px !important;
}