@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;600;800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.contact-main-cont {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #FAFAFA;
    font-family: "Open Sans", sans-serif;
    margin-top: 50px;
}

.contact-banner-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 360px;
    background-color: #022B4B;
}

.left-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* position: relative; */
    max-width: 900px;
    width: 100%;
    padding: 10px 0;
    margin: 0 30px;
    align-self: center;
}

.left-cont > h1 {
    font-size: 38px;
    font-weight: 600;
    color: #FFFFFF;
    /* max-width: 974px; */
    text-align: center;
}

.left-cont > p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    max-width: 621px;
    line-height: 21px;
    text-align: center;
    align-self: center;
}

/* .left-cont > img {
    max-width: 593px;
    width: 100%;
    max-height: 205px;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    bottom: -50px;
} */


/* Contact section  */


.contact-adre-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 327px;
    position: relative;
}

.contact-inner-adre-cont {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1300px;
    width: 100%;
    position: absolute;
    top: -20%;
    margin: 0px 30px;
}

.contact-mail-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 256px;
    width: 100%;
    min-height: 301px;
    /* border-radius: 9.47px; */
    background-color: rgba(255, 255, 255, 0.1);
   
}

.inner-contact-mail-cont {
    display: flex;
    flex-direction: column;
   
    align-items: center;
    gap: 10px;
    max-width: 218px;
    width: 100%;
    max-height: 263px;
    height: 100%;
    background-color: #FFFFFF;
    /* border-radius: 9px; */
    padding: 20px 10px;
}

.contact-img-icon-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 78px;
    width: 100%;
    
    height: 67px;
    /* border-radius: 9px; */
    background-color: #022B4B;
}

.contact-img-icon-cont > img {
    width: 24px;
    height: 24px;
    /* background-color: #FFFFFF; */
}
.inner-contact-mail-cont>h1{
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-top: 5px;
}
.inner-contact-mail-cont>p{
    font-size: 12px;
    font-weight: 400;
    color: #6A6A6A;
    text-align: center;
   
   
}

.contact-mail-cont {
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        background-color 0.4s ease;
    cursor: pointer;
}

.contact-mail-cont:hover {
    transform: translateY(-6px) scale(1.03);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.12);
}

.inner-contact-mail-cont {
    transition: transform 0.35s ease;
}

.contact-mail-cont:hover .inner-contact-mail-cont {
    transform: translateY(-2px); 
}


/* .contact-mail-cont:hover .contact-img-icon-cont {
    transform: translateY(-3px);
    transition: transform 0.35s ease, background-color 0.35s ease;
    background-color: #B7E0FF; 
} */


.contact-mail-cont:hover .contact-img-icon-cont img {
    filter: brightness(1.05);
    transition: filter 0.3s ease;
}


.contact-mail-cont:hover h1,
.contact-mail-cont:hover p {
    color: #1a1a1a;
    transition: color 0.3s ease;
}





/* Frequently asked questions  */
.contact-freq-ques-cont {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: flex-start;
    max-width: 1200px;
    width: 100%;
    gap: 10px;
    padding: 5px;
    font-family: "Open Sans", sans-serif;
}

.contact-freq-ques-cont > h1 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #001E30;
}

.contact-freq-ques-cont > p {
    font-size: 16px;
    color: #0E4161;
    text-align: center;
}

.inner-ferq-question-cont {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.faq-item {
  
    /* border-radius: 6px; */
    overflow: hidden;
   
}


.faq-item.active .faq-question {
    background-color: #022B4B;
    color: #fff;
}

.faq-item.active .faq-icon {
    color: #fff;
}


.faq-question {
    width: 100%;
    padding: 18px;
    background-color: #FFFFFF;
    border: none;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    color: #001E30;
    /* border-radius: 6px; */
       border: 1px solid #D9DADB;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    color: #001E30;
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 5px 20px;
    background: transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 18px;
}

.faq-answer p {
    font-size: 14px;
    color: #6E6E6E;
    line-height: 22px;
}



.contact-bottom-cont {
    position: relative;
    max-width: 1300px;
    width: 100%;
    min-height: 350px;
    padding: 50px 50px 0px 50px;
    background-color: #EEDBA8;
    /* border-radius: 12px; */
    margin: 40px auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: "Open Sans", sans-serif;
}


.bottom-pattern {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../Assets/Images/ContactUS/Pattern.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    opacity: 1.5;
}


.bottom-left-cont {
    position: relative;
    z-index: 2;
   
    width: 100%;
}

.bottom-left-cont h1 {
     max-width: 480px;
    font-size: 28px;
    font-weight: 600;
    color: #001E30;
    line-height: 130%;
    margin-bottom: 12px;
}

.inner-bottom-left-cont{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.inner-para-btn-cont{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}
.inner-para-btn-cont>p{
   font-size: 12px;
    color: #4E4E4E;
    line-height: 25px;
    font-weight: 400;
}

.explore-btn {
    max-width: 136px;
    width: 100%;
    height: 40px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    /* padding: 12px 28px; */
    background-color: #022B4B;
    color:#FFFFFF;
    padding: auto;
    border: none;
    /* border-radius: 60px; */
    cursor: pointer;
    transition: 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    margin: 10px 0px;
}

/* .explore-btn:hover {
    background-color: #f0f0f0;
} */
.explore-btn-img{
  width: 16px;
  height: 16px;
  object-fit: cover;
}
.img-wrapper {
    
    max-width: 567px;
    width: 100%;
    max-height: 433px;
    height: 100%;
    background-color: #ffffff;
    padding: 30px 30px 0px 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.img-wrapper img {
    max-width: 494px;
    width: 100%;
    max-height: 327px;
    height: 100%;
 
    object-fit: cover;
}

@media(max-width:1400px){
    .contact-banner-section {
        min-height: 360px;
    }
}


@media (max-width: 1200px) {

    .left-cont > h1 {
        font-size: 38px;
    }

    .contact-inner-adre-cont {
        top: -15%;
    }

    .bottom-left-cont h1 {
        font-size: 26px;
    }

    .img-wrapper {
        max-width: 380px;
    }
}
@media(max-width:1100px){

    
          .contact-inner-adre-cont {
        position: relative;
        top: 0;
        margin-top: 20px;
        flex-direction: row;
        align-items: center;
    }
}
@media (max-width: 992px) {

    .contact-banner-section {
        height: 450px;
    }

    .left-cont {
        max-width: 600px;
    }


    .contact-mail-cont {
        max-width: 45%;
    }

    .contact-freq-ques-cont > h1 {
        font-size: 30px;
    }
   
    .inner-bottom-left-cont {
        flex-direction: column;
        gap: 20px;
    }

    .img-wrapper {
        margin-top: 20px;
    }
}
@media (max-width: 768px) {

    .left-cont > h1 {
        font-size: 32px;
    }

    .left-cont > p {
        font-size: 14px;
        max-width: 500px;
    }



    .contact-mail-cont {
        max-width: 90%;
        min-height: 200px;
    }

    .contact-freq-ques-cont > h1 {
        font-size: 26px;
        font-weight: 500;
    }

    .faq-question {
        font-size: 14px;
        padding: 14px;
    }

    .faq-answer p {
        font-size: 13px;
       
    }

    .contact-bottom-cont {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .bottom-left-cont h1 {
        font-size: 25px;
        max-width: 100%;
    }
}
@media (max-width: 576px) {

    .left-cont > h1 {
        font-size: 26px;
        font-weight: 500;
    }

    .left-cont > p {
        font-size: 13px;
        line-height: 20px;
    }

    .contact-banner-section {
        height: auto;
        padding: 40px 0;
    }

    .contact-mail-cont {
        max-width: 100%;
    }

    .inner-contact-mail-cont {
        padding: 20px;
    }

    .inner-contact-mail-cont h1 {
        font-size: 13px;
    }

    .bottom-left-cont h1 {
        font-size: 22px;
        font-weight: 500;
    }

    .inner-para-btn-cont > p {
        font-size: 12px;
        line-height: 20px;
    }

    .explore-btn {
        height: 40px;
        font-size: 14px;
        align-self: center;
    }

    .img-wrapper {
        padding: 20px;
    }
}

@media (max-width: 420px) {

    .left-cont > h1 {
        font-size: 22px;
    }

    .left-cont > p {
        font-size: 12px;
    }

    .faq-question {
        font-size: 13px;
        padding: 12px;
    }

    .faq-answer p {
        font-size: 12px;
        line-height: 22px;
    }

    .inner-contact-mail-cont {
        padding: 15px;
    }
}
