/* styles.css */
body {
    font-family: Arial, sans-serif;
    background: url(../images/contact/conact_20.jpeg);
    background-size: contain;
    margin: 0;
    padding: 0;
}
.career{
    text-align: right;
    padding-top: 50px;
}

.contact-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}



/* Styles for images with overlays */
.image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-overlay img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust transparency here */
    color: #fff;
    padding: 20px;
    padding-top: 10%;
    text-align: left;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    align-items: center;
}

.overlay-content h3{
    font-size: 36px;
    text-transform: capitalize;
    font-style: italic;
    color: #b3a5a5;
    padding-bottom: 10px;
}
.overlay-content p {
    font-size: 28px;
}

.overlay-content h3,
.overlay-content p {
    margin: 0;
}



/* Form */

/* Form */

/* Form */




.contact-us-form {
    opacity: 0.95;
    max-width: 600px;
    margin: 10px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-us-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.contact-us-form h3{
    padding-top: 10px;
}

.contact-us-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.contact-us-form input,
.contact-us-form select,
.contact-us-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-us-form input:focus,
.contact-us-form select:focus,
.contact-us-form textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.contact-us-form textarea {
    resize: vertical;
}

.contact-us-form button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.contact-us-form button:hover {
    background-color: #0056b3;
}

.hidden {
    display: none;
}

.contact-us-form .radio-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contact-us-form .radio-group input[type="radio"] {
    margin-right: 10px;
}



/* Maps */




.map_container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 10px;
}
/* address section */


.office-section{
    padding-top: 20px;
}
.office-address{
    margin-left: 5px;
    margin-right: 5px;
    border-color: black;    
    background-color: #f9f9f9;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.address-container-box{
    transition: transform 0.3s ease-in-out;
}

.address-container-box:hover{
    transform: translateY(-10px);
}

.office-address h3{
    padding: 20px 0;
    padding-left: 5% !important;
    border-bottom: 2px solid #ded4d4;
    color: #e45051;

}

.addressbar{
    padding: 10px 0;
    padding-left: 5% !important;
    font-size: 16px;
}


.address-container-box:hover{
    box-shadow: 0 0 15px rgba(238, 89, 34, 0.5);  /* Glow effect on hover */
    border-color: rgba(238, 89, 34, 0.5);  /* Border color change on hover */
  }