.contact-us {
    background: url('../images/backgrounds/darkplane.jpg') no-repeat center center/cover;
    padding: 50px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

/* CONTACT FORM */

.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 30px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-details {
    width: 45%;
    padding-right: 20px;
}

.contact-details h2 {
    margin-top: 0;
    font-size: 2.5em;
}

.contact-details p{
    font-size: 20px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-row {
    display: flex;
    justify-content: space-between;
}

.form-group {
    margin-bottom: 15px;
    width: 48%;
}

.form-group1 {
    width: 100%;
    margin-bottom: 15px;
}

.form-group1 label {
    display: block;
    margin-bottom: 5px;
}

label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 40px;
    font-size: 1.2em;
}


.form-group1 textarea {
    width: 100%;
    min-height: 100px;
    max-height: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    resize: vertical;
    overflow: auto;
}

.submit-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.error {
    color: red;
    font-size: 12px;
}

.social-media-icons {
    display: flex;
    margin-top: 30px;
    justify-content: center;
    gap: 20px;
}

.social-media-icons a {
    text-decoration: none;
}


.social-media-icons img {
    width: 32px;
    height: 32px;
}

.social-media-icons img:hover {
    transform: scale(2.1);
}

@media only screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .contact-details, .contact-form {
        width: 100%;
        padding: 0 10px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
        margin-bottom: 15px;
    }

    .social-media-icons {
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .social-media-icons a {
        margin: 0 10px;
    }

    .submit-btn {
        align-self: center;
    }
}


@media (max-width: 768px) {
    .office-locations .container {
        max-width: 100%;
        padding:50px
        
    }     

    .office-locations .container .location{
        max-width: 100%;
        padding: 10px;
        align-items: center;
        width: 100%;
    }
   
}

/* CONTACT LOCATION */

.office-locations {
    padding: 50px 0;
    text-align: center;
    /* font-family: "Open Sans", sans-serif; */
    font-family: "Poppins", sans-serif;
    background-color: #f9f9f9;
}

.office-locations .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 50px;
}
.office-locations .location {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 45%;
}

.office-locations .location h2 {
    color: #001aff;
    font-size: 1.5em;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.office-locations .location h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.office-locations .location .map {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.office-locations .location .map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}