:root {
    --blue_color: #002C5F;
    --sky_blue: #A3DBE8;
    --white: #A3DBE8;
}

.f_55 {
    font-size: 55px;
}

.contact_banner {
    background-image: url(../images/contact_banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0px;
    /* min-height: 600px; */
    min-height: 80vh;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: self-end;
    justify-content: flex-start;
    position: relative;
}

.contact_banner::after {
    content: '';
    width: 100%;
    height: 210px;
    position: absolute;
    background: linear-gradient(0deg, #002c5f3b 33%, #ffffff00 100%);
    left: 0px;
    bottom: 0px;
    z-index: 0;
}

.contact_banner .container_cont {
    width: 100%;
    position: relative;
    z-index: 1;
}

.contact_banner h1 {
    color: #ffffff;
    font-weight: 700;
    font-size: 70px;
    line-height: 1.2;
    margin: 0;
}

.p-100 {
    padding: 100px 0px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.d-flex,
.custom_row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.address_listing {
    list-style-type: none;
    align-items: center;
    margin: 0px;
}

.address_listing li {
    margin-bottom: 25px;
}

.address_listing li:last-child {
    margin-bottom: 0px;
}

.addres_icon {
    max-width: 24px;
    width: 24px;
    min-width: 24px;
    margin-right: 10px;
}

.custom_row {
    flex-wrap: wrap;
    row-gap: 30px;
    margin: 0px -15px;
}

.custom_col_50 {
    width: 50%;
    padding: 0px 15px;
}

.form_content h2 {
    color: var(--blue_color);
    font-weight: 700;
    line-height: 1.2;

}

.contact_form_sec P,
.address_listing li a {
    color: #454545;
    font-size: 16px;
    margin-bottom: 0px;
    font-family: 'Raleway-Medium';
}

.address_listing li a:hover {
    text-decoration: underline;
}

.thg_tagline {
    color: var(--blue_color);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    margin: 30px 0px 25px 0px;
}

.contactsocial_links {
    margin-top: 35px;
}

.contactsocial_links a {
    background: #a3dbe850;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 17px;
    margin-right: 8px;
    transition: all 0.2s linear;
}

.contactsocial_links a:hover {
    padding: 14px;
}

.contactsocial_links a img {
    width: 100%;
}

.contact_form_wrp {
    background: #edf8fa;
    padding: 50px;
    border: 1px solid #d6d6d6;
    border-radius: 16px;
}

.contact_form_wrp h2 {
    color: var(--blue_color);
    font-weight: 700;
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.contact_form_wrp span,
.contact_form_wrp input {
    width: 100%;
    display: block;
}

.contact_form_wrp input {
    padding: 0px 20px;
    height: 60px;
}

.contact_form_wrp input,
.contact_form_wrp input::placeholder,
.contact_form_wrp textarea,
.contact_form_wrp textarea::placeholder {
    color: #353A3F;
    font-size: 16px;
    font-family: 'Raleway-Regular';
}

.contact_form_wrp input,
.contact_form_wrp textarea {
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid var(--sky_blue);
    margin-bottom: 15px;
}

.contact_form_wrp textarea {
    height: 130px;
    resize: none;
    border-radius: 35px;
    padding: 23px 20px;
    width: 100%;
}

.contact_form_wrp textarea:focus,
.contact_form_wrp textarea:active:focus .contact_form_wrp input:focus,
.contact_form_wrp input:active:focus {
    border: 1px solid var(--sky_blue);
    background-color: #fff;
    box-shadow: none;
    outline: none;
}

.contact_form_wrp br {
    display: none;
}

/* .contact_form_wrp input.wpcf7-submit {
    background: var(--sky_blue) !important;
    height: 60px;
    padding: 0px 56px;
    border: 1px solid var(--sky_blue);
    width: fit-content !important;
    transition: all 0.2s linear;
}

.contact_form_wrp input.wpcf7-submit:hover {
    background: #000 !important;
    color: #fff;
}

.contact_form_wrp input.wpcf7-submit:focus,
.contact_form_wrp input.wpcf7-submit:active:focus {
    border: 1px solid var(--sky_blue);
    background: var(--sky_blue);
} */
/* contact form 7 button hover animation */

.form_btn_style p {
    background: #A3DBE8 !important;
    height: 60px;
    /* padding: 0px 56px; */
    border: 1px solid var(--sky_blue);
    width: fit-content !important;
    transition: all 0.25s linear;
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-bottom: 0px;
    border-radius: 50px;
}

.form_btn_style p::before {
    content: "";
    position: absolute;
    left: 0;
    top: auto;
    bottom: 0px;
    width: 100%;
    height: 0;
    /* start collapsed at top */
    background: var(--blue_color);
    transition: height 0.25s linear;
    z-index: 0;
}

.form_btn_style p:hover::before {
    height: 100%;
    top: 0px;
    bottom: auto;
}

.contact_form_wrp input.wpcf7-submit {
    width: 100%;
    background: transparent;
    padding: 0px 56px;
    border: none;
    position: relative;
    z-index: 1;
    cursor: pointer;
    margin-bottom: 0px !important;
}

.contact_form_wrp p:hover input.wpcf7-submit {
    color: #fff;
    transition: all 0.25s linear;
}

.contact_form_wrp input.wpcf7-submit:focus,
.contact_form_wrp input.wpcf7-submit:active:focus {
    border: 1px solid #a3dbe800 !important;
    background-color: #ffffff00 !important;
}

.wpcf7-spinner {
    display: none !important;
}

/* Contact Map styles moved to ContactMap.css component */
/* Legacy iframe styles - kept for backward compatibility */
.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 2px solid #d6d6d6 !important;
    border-radius: 16px;
}

.contact-map {
    padding-bottom: 100px;
}


/* ============ Downloads page ============ */

.contact_banner.download_banner {
    background-image: url(../images/downloads_bg.png);
}

.profile_boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.profile_box {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: block;
    transition: all 0.3s linear;
}

.profile_box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s linear;
}

.profile_box:hover .profile_box_img img {
    transform: scale(1.1);
}

.btn_style {
    background: transparent;
    height: 60px;
    padding: 0px 56px;
    border: 1px solid var(--blue_color);
    color: var(--blue_color) !important;
    transition: all 0.3s linear;
    display: -webkit-inline-flex;
    /* Chrome, Safari */
    display: -ms-inline-flexbox;
    /* IE 10 */
    display: inline-flex;
    /* modern browsers */
    align-items: center;
    justify-content: center;
    transition: all 0.2s linear;
    margin-top: 5px;
    margin-bottom: 0px;
    border-radius: 100px;
    font-size: 14px;
    font-family: 'Raleway-Medium';
}

.btn_style:hover {
    margin-top: 0px;
    margin-bottom: 5px;
    background: var(--blue_color);
    color: #fff !important;
}

.load_more_btn {
    text-align: center;
    margin-top: 60px;
}

.top_h h2 {
    color: var(--blue_color);
    font-size: 55px;
    margin-bottom: 0px;
}

.top_h {
    margin-bottom: 60px;
}

.profile_box::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(0deg, #002c5fc7 14%, #ffffff00 50%);
    left: 0px;
    bottom: 0px;
    z-index: 0;
}

.profile_box_title {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 30px 25px;
    color: var(--sky_blue);
    font-family: 'Raleway-SemiBold';
    font-size: 20px;
    z-index: 1;
    width: 100%;
    line-break: anywhere;
}

/* ============ Career page ============ */
.contact_banner.career_banner {
    background-image: url(../images/career_bg.png);
}

.team_image img {
    border-radius: 15px;
}

.load_more_btn .btn_primary.variant3 {
    background-color: #fff !important;
    margin: 0 auto;
}

.career_content h2,
.container_form h2 {
    color: var(--blue_color);
    width: 100%;
}

.career_top .custom_col_50 img {
    max-width: 604px;
    margin-left: auto;
    margin-right: 0px;
}

.career_top .career_content {
    max-width: 515px;
}

.career_top .custom_row {
    margin-bottom: 80px;
}

.opportunity_sec {
    background: var(--blue_color);
}

.opportunity_sec h2 {
    color: #A3DBE8;
}

.opportunity_sec p,
.opportunity_sec h2 p a,
.follow_us span,
.culture_content p {
    color: #fff !important;
    font-size: 16px;
    font-family: 'Raleway-Medium';
}

.opportunity_sec h2 p a {
    text-decoration: underline;
}

.opportunity_sec h2 p a:hover {
    text-decoration: none;
    color: #fff !important;
}

.opportunity_sec .bold_desc {
    font-family: 'Raleway-SemiBold';
    font-size: 24px;
    color: #fff;
    margin: 0px 0px 50px 0px;
}

.opportunity_sec .custom_row {
    margin-top: 30px;
}

.opportunity_img img {
    border-radius: 15px;
    max-width: 667px;
    margin-left: auto;
    margin-right: 0px;
}

.opportunity_sec .career_content {
    padding-right: 40px;
}

.follow_li {
    display: inline-block;
    background: #ffffff33;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 17px;
    margin-right: 13px;
    transition: all 0.2s linear;
}

.follow_us {
    align-items: center;
    transition: all 0.2s linear;
    width: fit-content;
}

.follow_m {
    margin: 35px 0px 15px 0px;
}

.follow_us:hover .follow_li {
    padding: 15px;
}

.span_text {
    transition: all 0.2s linear;
}

.follow_us:hover .span_text {
    opacity: 0.6;
}

/* ================== contactBannerSection start ================== */

/* .contactBannerSection {
    width: 100%;
    position: relative;
    background-color: var(--lightBlue, #A3DBE8);
    overflow: hidden;
}

.contactBannerSection::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--lightBlue, #A3DBE8) 30%, rgba(0, 0, 0, 0) 70%);
}

.contactBannerContainer {
    display: flex;
    min-height: 500px;
    position: relative;
}

@media (max-width: 1024px) {
    .contactBannerContainer {
        flex-direction: column;
        min-height: auto;
    }
}

.leftSection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 540px;
    position: relative;
    z-index: 1;
}

.leftSection .heading {
    color: var(--darkBlue, #002C5F);
    font-family: var(--font-bold, 'Raleway-Bold', sans-serif);
    font-size: 50px;
    font-weight: 700;
}

.leftSection .description {
    color: var(--darkBlue, #002C5F);
    font-family: var(--font-medium, 'Raleway-Medium', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.imageWrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

@media (max-width: 1024px) {
    .imageWrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .imageWrapper {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .imageWrapper {
        min-height: 300px;
    }
}

.bannerImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.career_contact .leftSection {
    max-width: 408px;
}

.career_contact .btn_primary {
    padding: 0px 32px;
} */

/* ================== contactBannerSection ends ================== */

.apply_online_sec {
    background: #F6FCFD;
}

.container_form {
    max-width: 920px;
    margin: 0 auto;
}

/* career form */
.form-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0e396e;
    margin-bottom: 40px;
}

.apply-form {
    width: 100%;
}

.container_form h2 {
    text-align: center;
    margin-bottom: 0px;
}

.form_row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
}

.form_row .input_col_50 {
    width: 50%;
    padding: 0px 10px;
}

.form_row .input_col_100 {
    width: 100%;
    padding: 0px 10px;
}

/* Inputs */
.apply-form input,
.apply-form select {
    padding: 0px 20px;
    height: 60px;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid var(--sky_blue);
    margin-bottom: 15px;
    width: 100%;
    display: block;
}

.apply-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}

.apply-form input,
.apply-form input::placeholder,
.apply-form select {
    color: #353A3F;
    font-size: 16px;
    font-family: 'Raleway-Regular';
}

.apply-form input:focus,
.apply-form input:active:focus,
.apply-form select:focus,
.apply-form select:active:focus {
    border: 1px solid var(--sky_blue);
    background-color: #fff;
    box-shadow: none;
    outline: none;
}

.apply-form button {
    border: none !important;
}

.apply-form button:focus,
.apply-form button:active:focus {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

/* Phone field combo */
.wraper_phone_form {
    display: flex;
    position: relative;
}

.wraper_phone_form::after {
    content: "▼";
    position: absolute;
    left: 17%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #55445541;
    /* match your theme color */
    pointer-events: none;
}

.apply-form .wraper_phone_form {
    margin-bottom: 15px;
    border-radius: 50px;
    border: 1px solid var(--sky_blue);
}

.apply-form .wraper_phone_form select {
    display: inline-block;
    border-radius: 50px 0px 0px 50px;
    border: none;
    border-right: 1px solid #d1ccd170;
    margin-bottom: 0px;
    width: 22%;
    position: relative;
}

.apply-form .wraper_phone_form input {
    display: inline-block;
    border-radius: 0px 50px 50px 0px;
    border: none;
    margin-bottom: 0px;
    width: 78%;
}

.apply-form .wraper_phone_form input:focus,
.apply-form .wraper_phone_form input:active:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

.apply-form .wraper_phone_form select:focus,
.apply-form .wraper_phone_form select:active:focus {
    border: none;
    border-right: 1px solid #d1ccd170;
    box-shadow: none;
    outline: none;
}

/* Upload box */
.upload-box {
    width: 100%;
    border: 2px solid #cce7f5;
    border-radius: 20px;
    background: #ffffff;
    text-align: center;
    padding: 29px 10px;
    margin-bottom: 40px;
    cursor: pointer;
    transition: 0.3s ease;
}


.upload-box.dragover {
    background: #f1f8ff;
    border-color: var(--blue_color);
}

.upload-content .upload-icon {
    width: 46px;
    margin: 0px auto 4px auto;
    height: auto;
}

.upload-content h3 {
    font-size: 14px;
    color: #353A3F;
    font-family: 'Raleway-Regular';
    margin-bottom: 14px;
}

.upload-content p {
    font-size: 12px;
    color: #353A3F;
    margin-bottom: 17px;
    line-height: 1.5;
}

.browse-link {
    color: var(--blue_color);
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    font-family: 'Raleway-SemiBold';
}

.file-output {
    margin-top: 10px;
    font-size: 14px;
    color: var(--blue_color);
    text-align: center;
}

#resumeUpload {
    visibility: hidden;
    margin-bottom: 0px;
    height: 1px;
}

/* Submit button */
.submit-row {
    margin-top: 30px;
    text-align: left;
}














/* responsive */

@media only screen and (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .profile_box_title {
        font-size: 23px;
        padding: 30px 30px;
    }
}

@media only screen and (max-width: 1500px) {
    .inner-banner-content {
        padding-left: 3%;
        padding-right: 3%;
    }
}

@media only screen and (max-width: 1365px) {
    .contact_banner h1 {
        font-size: 55px;
    }

    .form_content h2,
    .f_55 {
        font-size: 40px;
    }

    .p-100 {
        padding: 70px 0px;
    }

    .pt-100 {
        padding-top: 70px;
    }

    .pb-100 {
        padding-bottom: 70px;
    }

    .contact-map {
        padding-bottom: 70px;
    }

    /* ============ Downloads page ============ */
    .top_h h2 {
        font-size: 40px;
    }

    .top_h {
        margin-bottom: 30px;
    }

    /* ============ career page ============ */

    .opportunity_sec .bold_desc {
        font-size: 20px;
    }

}

@media only screen and (max-width: 1199px) {

    /* ============ career page ============ */

    .form_content h2,
    .f_55 {
        font-size: 38px;
    }

    .opportunity_sec .custom_row {
        margin-top: 20px;
    }

    .career_top .custom_row {
        margin-bottom: 40px;
    }

    .leftSection .heading {
        font-size: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .contact_banner h1 {
        font-size: 45px;
    }

    .form_content h2,
    .f_55 {
        font-size: 35px;
    }

    .contact_form_wrp h2 {
        font-size: 32px;
    }

    .contact_form_wrp {
        padding: 30px;
    }

    /* ============ Downloads page ============ */

    .profile_boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .top_h h2 {
        font-size: 32px;
    }

    /* ============ career page ============ */
    .opportunity_sec .career_content {
        padding-right: 0px;
    }

    .opportunity_sec .bold_desc {
        font-size: 18px;
        margin: 0px 0px 30px 0px;
    }

    .apply-form .wraper_phone_form select {
        width: 26%;
    }

    .apply-form .wraper_phone_form input {
        width: 74%;
    }

    .leftSection .heading {
        font-size: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .contact_banner h1 {
        font-size: 40px;
    }

    .custom_row {
        flex-direction: column;
    }

    .custom_col_50 {
        width: 100%;
    }

    .p-100 {
        padding: 50px 0px;
    }

    .pt-100 {
        padding-top: 50px;
    }

    .pb-100 {
        padding-bottom: 50px;
    }

    .contact-map {
        padding-bottom: 50px;
    }

    .form_content h2,
    .f_55 {
        font-size: 24px;
    }

    .contact_form_wrp h2 {
        font-size: 30px;
    }

    .thg_tagline {
        font-size: 15px;
    }

    .contact_banner {
        min-height: 450px;
    }

    .contact_form_wrp {
        padding: 30px 30px;
    }

    /* career page */

    .form_row .input_col_50 {
        width: 100%;
    }

    .apply-form .wraper_phone_form select {
        width: 22%;
    }

    .apply-form .wraper_phone_form input {
        width: 78%;
    }

}

@media only screen and (max-width: 575px) {

    /* ============ Downloads page ============ */
    .profile_box_title {
        padding: 15px 15px;
        font-size: 20px;
    }

    .top_h h2 {
        font-size: 28px;
    }

    .profile_boxes {
        grid-template-columns: repeat(1, 1fr);
        max-width: 425px;
        margin: 0 auto;
    }

    .load_more_btn {
        margin-top: 40px;
    }

    .follow_m {
        margin: 5px 0px 15px 0px;
    }

    .opportunity_sec .bold_desc {
        font-size: 16px;
    }
    .form_row {
    margin-top: 40px;
}
}

@media only screen and (max-width: 424px) {
    .contact_form_wrp {
        padding: 20px 15px;
    }

    /* career page */

    .apply-form .wraper_phone_form select {
        width: 28%;
    }

    .apply-form .wraper_phone_form input {
        width: 72%;
    }

}

@media only screen and (max-width: 374px) {
    
    .apply-form .wraper_phone_form select {
        width: 34%;
    }

    .apply-form .wraper_phone_form input {
        width: 68%;
    }
}