/* Base styles */
.subheading {
    position: relative;
    left: 40%;
    width: 304px;
    height: 44px;
    background-color: #f4f4f4;
    border-radius: 30px;
}
.career-compass {
    position: absolute;
    top: 7px;
    left: 15px;
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    color: #343434;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}
.text-wrapper {
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    color: #343434;
    font-size: 20px;
    letter-spacing: 0;
}
.span {
    font-family: "Poppins-Bold", Helvetica;
    font-weight: 700;
}
/* Branch information styles */
.branches-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

}

.branch {
    background-color: #f4f4f4;
    border-radius: 30px;
    padding: 20px;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.branch-header {
    background-color: var(--primary);
    border-radius: 30px;
    padding: 20px;
    text-align: center;
    border: 14px solid #d1f9ff;
    min-height: 350px;
    align-items: center;
    justify-content: center;
    position: relative;
}
/* Image wrapper to isolate size impact */
.branch-image-wrapper {
    text-align: center;
    margin-top: 10px;
    min-height: 195px;
    display: flex;
    align-items: center;     /* vertical center */
    justify-content: center; /* horizontal center */
}
.branch-name {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.branch-image {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.map-button {
    background-color: #176b9b;
    border-radius: 10px;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    margin-top: 18%;
    cursor: pointer;
    position: absolute;
    left: 20%;
}

.branch-info {
    margin-top: 20px;
    flex-grow: 1;
    min-height: 175px;
}
.branch-address{
    min-height: 105px;
    padding-top: 20px;
}
.branch-phone {
    min-height: 50px;
}
.branch-address, .branch-phone {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.branch-address img, .branch-phone img {
    
    margin-right: 10px;
}


/* Media Queries */
@media (max-width: 768px) {
    .contact-us-page .get-in-touch {
        font-size: 2rem;
    }

    .branch {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        flex: 1 1 100%;
    }
    .map-button {
        margin-top: 12%!important;
        left: 30%;
    }
}

@media (max-width: 480px) {

    .map-button {
        margin-top: 5%!important;
        left: 35%;
    }
    .branch-name {
        font-size: 1.2rem;
    }
}
