.contact-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-hero-section .hero-section-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-hero-section img {
    width: 70%;
}
.contact-hero-section .hero-section-title h5{
    font-size: 45px;
    font-weight: 600;
    /* text-shadow: 1px 1px 2.4px; */
    text-transform: capitalize;
}

@media only screen and (max-width: 999px) {
    .contact-hero-section .hero-section-title h5{
        font-size: 30px;
        text-shadow: 1px 1px 2.4px;
        margin-top: 10px;
    }
}
@media only screen and (max-width: 764px) {
    .contact-hero-section .hero-section-title h5{
        font-size: 25px;
        text-shadow: 1px 1px 3.4px;
    }
    .contact-hero-section .hero-section-title p {
        font-size: 14px;
    }
}

.contact-hero-section .hero-section-title p {
    font-size: 18px;
    margin-top: 19px;
    font-weight: 500;
}


.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
    column-gap: 30px;
    align-items: center;
}
@media only screen and (max-width: 768px) {
    .contact-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}


.contact-details p{
    font-weight: 600;
    line-height: 1.8rem;
}
.contact-details .meet-us h3 {
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: 700;
    /* color: #fff; */
}
.contact-details .meet-us div{
    padding-bottom: 15px;
}
.contact-details .meet-us .contact-mobile,
.contact-email,
.contact-location {
    display: flex;
    column-gap: 20px;
    align-items: center;
}
.contact-details .meet-us a{
    text-decoration: none;
    color: #000;
    font-weight: 600;
}
.contact-details .meet-us i {
    background-color: #013674;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color: #fff;    
}

@media only screen and (max-width: 768px) {
    .contact-form {
        margin-top: 20px;
    }
}

.contact-form {
    padding: 20px;
    background-color: #809BB9;
}
.contact-form form{
    margin-top: 16px;
    padding: 20px;
}
.contact-form h3 {
    margin-left: 20px;
    color: #fff;
}

form .input-data {
    position: relative;
    height: 50px;
    line-height: 40px;
    margin-bottom: 20px; 
}

form .input-data input {
    position: absolute;
    height: 90%;
    width: 100%;
    outline: none;
    font-size: 15px;
    padding: 0 20px;
    line-height: 40px;
    border-radius: 5px;
    transition: 0.2s ease;
    border: 1px solid gray;
}

form .input-data input:focus,
form .input-data input:valid {
    color: #000;
    border: 2px solid #F98866;
}

form .input-data input:focus + label,
form .input-data input:valid + label {
    color: #F98866;
    height: 60px;
    line-height: 60px;
    transform: translate(-10px, -22px) scale(0.8); 
    z-index: 100000;
    /* background: white; */
    padding: 0 5px; 
    font-size: 12px;
}
form .input-data label,
form .input-data textarea label {
    position: absolute;
    left: 20px;
    top: 0; 
    line-height: 40px; 
    transition: 0.2s ease;
    background: transparent;
    padding: 0 5px;
    pointer-events: none;
    background: transparent;
}

form .form-data .btn {
    background-color: #013674;
    color: #fff;
}
form .input-data textarea {
    position: absolute;
    height: 100%;
    width: 100%;
    outline: none;
    font-size: 15px;
    padding: 0 20px;
    line-height: 40px;
    border-radius: 5px;
    transition: 0.2s ease;
    border: 1px solid gray;
}

form .input-data textarea:focus,
form .input-data textarea:valid {
    color: #000;
    border: 2px solid #F98866;
}

form .input-data textarea:focus + label,
form .input-data textarea:valid + label {
    color: #F98866;
    height: 60px;
    line-height: 60px;
    transform: translate(-10px, -22px) scale(0.8); 
    z-index: 100000;
    padding: 0 5px; 
    font-size: 12px;
}

.contact-container {
    margin-bottom: 20px;
}
.error-message {
    position: absolute;
    bottom: -25px;
    left: 0;
    color: red;
    font-size: 0.9em;
    margin-top: -10px;
    display: none;
}