
.contact-form-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    justify-content: center;

}
.contact-form-container form{
        width: 90%;

}
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.input-group input, .input-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    width: 95%;
    background-color: #fff;
    outline: none;

}
.input-group textarea{
    height: 100px;
}

.submit-btn {
    background-color: #f88b30;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background 0.3s;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
}
.submit-btn span{
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: #e07a1f;
}



.contact-us-div{
    margin: 2rem;
    width: 80%;
    align-items: start;
    justify-content: center;
    display: flex;
    background-color: transparent;
    flex-direction: column;
}
.text-con
{
    display: flex;
    flex-direction: column;
    margin: 1rem;
}
.text-con p{
    font-size: 1.2rem;
    margin: 0;
}
.contacts-loc-con{
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;
    width: 90%;
}
.contacts-loc-con .loc-con{
    padding: 10px;
    background-color: transparent;
    margin-bottom: 10px;
    gap: 10px;
}
.loc-con .title{
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}
.location-contact iframe{
    width: 100%;
    height: 350px;
}
.loc-con .address{
    display: flex;
    margin: 0;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}
.loc-con .address .material-symbols-outlined{
    font-size: 1rem;
    font-weight: bold;
}

.loc-con .address span{
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}
.loc-con .title strong{
    color: #e07a1f;
}
