@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root{
    --main:#FFC265;
    --second-color: #26374A;
    --light-color: #d1d8e0;
    --box-shadow:.5rem .5rem 0 rgba(110, 110, 110, 0.2);
    --text-shadow:.4rem .4rem 0 rgba(0,0,0, .2);
    --border:.2rem solid var(--main);
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    list-style: none;
    text-transform: none;
    transition: all .2s linear;
}

html,body{
    font-size: 62.5%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

section{
    padding: 7rem 9%;
}

body .contact_section{
    background: linear-gradient(90deg, #0e3959 0%, #0e3959 30%, #03a9f5 30%, #03a9f5 100%);
}

/*==========Header  Section CSS===========*/

.nav_btn{
    background-color: #00a164;
    outline: none;
    border: 2px solid #00a164;
    color: #fff;
    padding: 8px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    font-size: 13px;
}

.nav_btn:hover{
    background-color: #fff;
    color: #26374A;
    border: 2px solid #00a164;
    transition: all ease-in-out 0.3s;
}

.navbar{
    width: 100%;
    height: 90px;
}

.navbar-brand img{
    width: 100%;
    background: #ffffff;
    border-radius: 0% 0% 50% 50%;
    margin-top: 5rem;
    cursor: pointer;
    padding: 0px 10px;
}

.nav-item a{
    text-decoration: none;
    color: #26374A;
}

.nav-item a:hover{
    color: #00a164;
    transition: all 0.3s ease; 
}

.responsive_bg{
    padding: 5px 10px;
    background: #fff;
}


.dropdown-menu li a{
    text-align: left;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.8;
    width: 170px;
    padding: 5px 10px;
}

.dropdown:hover .dropdown-menu{
    display: block;
}



/*==========Try Home Section CSS===========*/
.try_home{
    padding-top: 0rem;
}

.try_home .try_home_slider .box{
    background-size: cover !important;
    background-position: center !important;
    background: rgba(0, 0, 0, 0.1) url(image/contact-banner.jpg);
    background-blend-mode: darken;
    min-height: 40rem;
    position: relative;
    margin-top: 8rem;
}




/*==========Scroll Progress Button Section CSS===========*/
#progress{
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 60px;
    height: 60px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    cursor: pointer;
    z-index: 1000;
}

#progress_value{
    display: block;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: var(--second-color);
}

/*==========Breadcrumb Section CSS===========*/
.breadcrumb{
    background: #8395a7;
    padding-block: 1.5rem;
    margin-top: 1rem;
}


.breadcrumb_list{
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.75rem;
    list-style: none;
}


.breadcrumb_list li a{
    color: #000;
    font-size: 1.8rem;
    text-decoration: none;
}

.breadcrumb_list li a:hover{
    color: #005c5a;
}


.breadcrumb_list li span{
    color: #000;
    font-size: 1.8rem;
}


/*==========Contact Section CSS===========*/



.contact_us{
    position: relative;
    width: 100%;
    padding: 40px 100px;
}


.contact_us .title{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}


.contact_us .title h2{
    color: #fff;
    font-weight: 500;
}



.contact_us .form{
    grid-area: form;
}

.contact_us .info{
    grid-area: info;
}


.contact_us .map{
    grid-area: map;
}

.contact_us .contact {
    padding: 40px;
    background: #fff;
}

.contact_us .contact h3{
    font-size: 2.5rem;
    text-transform: uppercase;
}

.contact_us .contact-1 {
    padding: 40px;
}

.contact_us .contact-2 {
    padding: 0;
    background: #fff;
}
.contact_us .box{
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas: 
    "form info"
    "form map";
    grid-gap: 20px;
    margin-top: 20px;
}


.formBox{
    position: relative;
    width: 100%;
}

.formBox .row50{
    display: flex;
    gap: 20px;
}

.inputBox{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
}

.inputBox .item{
    padding: 10px;
    margin-bottom: 5px;
    outline: none;
    font-size: 1.3rem;
    border: 1px solid #333;
    text-transform: none;
}

.inputBox.error .item{
    border-color: #d93036;
}


.inputBox textarea{
    padding: 10px;
    margin-bottom: 5px;
    outline: none;
    border: 1px solid #333;
    resize: none;
    min-height: 220px;
    margin-bottom: 10px;
    text-transform: none;
}

.formBox .row100 .inputBox{
    width: 100%;
}

.formBox span{
    color: #3d3d3d;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 500;
}

.inputBox button[type="submit"]{
    background: linear-gradient(120deg, #067097, #072553);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    max-width: 120px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 11px;
    transition: all 0.3s ease;
}

.inputBox button[type="submit"]:hover{
    transform: scale(0.9);
    z-index: 1;
}

.inputBox::placeholder{
    color: #999;
}

.formBox .inputBox .error_text{
    font-size: 14px;
    color: #d93036;
    text-align: left;
    margin: -5px 0 10px;
    margin-top: 5px;
    display: none;
}

.inputBox.error .error_text{
    display: block;
}

/*==========Contact Info Section CSS===========*/
.info{
    background: #e3edf7;
    text-decoration: none;
}

.info h3{
    margin-bottom: 10px;
}

.info span{
    color: #03a9f5;
    font-size: 1.7rem;
}

.info .infoBox div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.info .infoBox div span{
    min-width: 40px;
    height: 40px;
    color: #fff;
    background: #03a9f5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5  rem;
    border-radius: 50%;
    margin-right: 15px;
}

.info .infoBox div p{
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 800;
    text-transform: none;
    text-decoration: none;
}

.info .infoBox div a{
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 600;
    cursor: pointer;
    text-transform: none;
    text-decoration: none;
}


.sci-1{
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.sci-1 a{
    text-decoration: none;

}


.sci-1 abbr li a i{
    display: flex;
    background: #e3edf7;
    height: 50px;
    width: 50px;
    margin-right: 15px;
    border-radius: 8px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
                -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0); 
    transition: transform 0.5s;          
}

.sci-1 a i{
    font-size: 23px;
    color: #777;
    transition: transform 0.5s; 
    text-decoration: none; 
}

.sci-1 a:hover i{
    transform: scale(0.90);
}

.sci-1 a:hover{
    box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
                inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7),
                -0.5px -0.5px 0px  rgba(255, 255, 255, 1),
                0.5px 0.5px 0px  rgba(0, 0, 0,0.15),
                0px 12px 10px -10px rgba(0, 0, 0,0.05); 
    border: 1px solid rgba(0, 0, 0, 0.01);
    transform: translateY(2px);
}


.sci-1 a:hover .fa-facebook{
    color: #3b5998;
}

.sci-1 a:hover .fa-whatsapp{
    color: #04be32;
}

.sci-1 a:hover .fa-youtube{
    color: #d63031;
}

.sci-1 a:hover .fa-linkedin{
    color: rgb(6, 61, 112);
}

.map{
    padding: 0;
}

.map iframe{
    width: 100%;
    height: 100%;
}

/*==========Footer Section CSS===========*/

.footer{
    background: rgba(0, 0, 0, 0.3) url(image/Footer_image_2.jpg);
    background-blend-mode: darken;
    background-position: center;
    background-size: cover;
    margin-top: 0;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.footer .box-container .box h3{
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
    padding: 1rem 0;
}

.footer .box-container .box img{
    width: 40%; 
}

.footer .box-container .box .company_logo_description{
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
}

.footer .box-container .box .company_logo_description h2{
    font-size: 3rem;
    color: #ffa801;
    font-weight: 600;
    font-family: italic;
    margin-top: 2rem;
}

.footer .box-container .box .company_logo_description span{
    font-size: 3rem;
    color: #02a559;
    font-weight: 600;
}


.footer .box-container .box h3 i{
    color: #ffa801;
}

.footer .box-container .box .links{
    display: block;
    text-decoration: none;
    font-size: 1.6rem;
    color: #d1d8e0;
    padding: 1rem 0;
    text-transform: none;
}

.footer .box-container .box .links:hover{
    color: #fff;
}
.footer .box-container .box .links i{
    color: #ffa801;
    padding-right: .5rem;
}

.footer .box-container .box .link i{
    color: #ffa801;
    padding-right: .5rem;
}

.footer .box-container .box .links:hover i{
    padding-right: 2rem;
    color: #fff;
}
.footer .box-container .box p{
    line-height: 1.8;
    font-size: 1.6rem;
    color: #d1d8e0;
    text-decoration: none;
    padding: 1rem 0;
}

.footer .box-container .box .share a{
    height: 4rem;
    width: 4rem;
    text-decoration: none;
    line-height: 4rem;
    border-radius: .5rem;
    font-size: 2rem;
    color: #2f3542;
    margin-left: .2rem;
    background: #dfe6e9;
    text-align: center;
}


.footer .box-container .box .share a:hover{
    background: #00a164;
    color: #d1d8e0;
}

.footer .box-container .box .email{
    margin: .7rem 0;
    padding: 1rem;
    border-radius: .5rem;
    background: #eee;
    font-size: 1.6rem;
    color: #2d3436;
    text-transform: none;
}

.footer .box-container .box .payment-img{
    margin-top: 2rem;
    height: 3rem;
}


.footer .credit{
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    padding-top: 2.5rem;
    font-size: 2rem;
    font-weight: 500;
    color: #d1d8e0;
    border-top: var(--border);
}

.footer .credit span{
    color: #ffa801;
}

.footer .credit a{
    color: #1e90ff;
    text-decoration: none;
    text-transform: none;
}

.footer .credit a:hover{
    text-decoration: underline;
}


















/*==========Responsive media queries===========*/

@media (max-width:991px){
    html{
        font-size: 55%;
    }
    .header-1{
        padding: 2rem;
    }
    section{
        padding: 2rem;
    }
    html,body{
        font-size: 62.5%;
        overflow-x: hidden;
        width: 100%;
        height: 100%;
        scroll-behavior: smooth;
        scroll-padding-top: 7rem;
    }

    .navbar-brand img{
        background: #ffffff;
        margin-top: -2rem;
        cursor: pointer;
        padding: 0px 5px;
    }

    .contact{
        padding: 50px;
    }

    .container_contact{
        flex-direction: column;
    }

    .container_contact .contactInfo{
        margin-bottom: 40px;
    }

    .container_contact .contactInfo,
    .contactForm{
        width: 100%;
    }

    .contactForm h2{
        font-size: 20px;
        color: #333;
        font-weight: 600;
    }

}

/*========== Responsive Contact Info Section CSS===========*/
@media (max-width:991px){
    body .contact_section{
        background: #03a9f5;
    }

    .contact_us{
        position: relative;
        width: 100%;
        margin-left: -8rem;
    }

    .contact_us .title h2{
        font-size: 2rem;
        color: #fff;
        font-weight: 500;
        margin-left: 3rem;
    }

    .contact_us .box{
        grid-template-columns:  1fr;
        grid-template-rows: auto;
        grid-template-areas: 
        "form"
        "info"
        "map";
    }
    .map{
        min-height: 300px;
    }
    
    .formBox .row50{
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
        width: 100%;
    }

    .info .infoBox input{
        width: 100%;
    }

    .inputBox input{
        width: 300px;
        padding: 10px;
        margin-bottom: 5px;
        outline: none;
        border: 1px solid #333;
        text-transform: none;
    }
}


@media(max-width: 991px){
    .footer .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
        gap: 2.5rem;
    }

    .footer{
        text-align: left;
    }

    .footer .credit{
        text-align: center;
        margin-top: 2rem;
        padding: 1rem;
        padding-top: 2.5rem;
        font-size: 1.5rem;
        font-weight: 500;
        color: #d1d8e0;
        border-top: var(--border);
    }
    
}
