@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html{
    font-size: 62.5%;
    /* 1rem= 10px */
    overflow-x: hidden;
}
body{
    max-width: 100%;
    overflow-x: hidden;
}

:root{
    --primary-color: #000839;
    --primary-shades: #00020b;
    --para-color: #80849c;
    --helper-color: #1264fa;
    --white: #fff;
    --bg-color: #e6e6eb;
}

a{
    text-decoration: none;
    display: inline-block;
}
/*img{*/
/*    display: inline-block;*/
/*    width: 100%;*/
/*}*/

li{
    list-style: none;
}

h1,h2,h3,h4{
    color: var(--primary-color);
}
.para{
    font-size: 1.6rem;
    line-height: 1.7;
    font-weight: 400;
    color: var(--para-color);
}

/* header and navbar style start-----
-------------------------------------------------------------------- */

.header{
  height: 9.6rem;
  display: flex; 
  justify-content: space-between;
  align-items: center;
  padding: 0 5.4rem;
  background-color: var(--bg-color);
  /* background-color: var(--primary-color); */
  position: relative;
}

.navbar{
    display: flex;
    align-items: center;
}

.navbar-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.2rem;
    font-size: 1.6rem;
    font-weight: 500;
    
}

.navbar-list .navbar-btn{
    padding: 1.2rem 2.4rem;
    background-color: var(--white);
    border: 1px solid var(--helper-color);
    color: var(--helper-color);
    
    border-radius: 5rem;
    transition: all 0.3s ease-in-out;
}

.navbar-list .navbarlink:hover,
.navbar-list .navbarlink:active{
    color: var(--primary-color);
    /* color: var(--white); */
}

.navbar-btn:hover,
.navbar-btn:active{
    background-color: var(--helper-color);
    color: var(--white);
}

.navbarlink{
    text-transform: uppercase;
}


/* ?sticky navbar---------------- */
.sticky header{
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    z-index: 999;
}
/* responsive iconss---------------------------------
-------------------------------------------------------------------------------- */


.mobile-nav-icon{
    font-size: 4rem;
    color: var(--primary-color);
}

.mobile-navbar-btn{
    display: none;
    background-color: transparent;
    cursor: pointer;
    border: none;
}

/* for mobile close icon should not visible */

.mobile-nav-icon[name="close"]{
    display: none;
}


/* main part-section start--- */

.section{
    padding: 14.6rem 0;
}
.container{
    max-width: 130rem;
    margin: 0 auto;
    padding: 0 3.2rem;
}

.grid{
    display: grid;
    gap: 9.6rem;
}

.grid-two-column{
    grid-template-columns: repeat(2, 1fr);
}

.btn{
    font-size: 1.6rem;
    text-transform: capitalize;
    padding: 1.6rem 3.2rem;
    border-radius: 10rem;
    background-color: var(--helper-color);
    color: var(--white);
    transition: all 0.2s linear;
}
.btn:hover,
.btn:active{
    transform: scale(1.05)
}


/* hero section----- */

.section-hero{
    position: relative;
}

.section-hero::before{
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 9.6rem;
    right: 0;
    width: 30%;
    height: 50%;
    background: #e6e6eb;
    z-index: -1;
}

.hero-data h1{
    font-size: 5.6rem;
    font-weight: 700;
}

.section-hero .para{
    margin-top: 2rem;
    margin-bottom: 3.2rem;
}

.hero-image img{
        margin-left:6%;
        width: 100%;
        height: 100%;
}





/* ----Hero section---media queries start */
/*----------------------------------------------------*/

@media (max-width: 1250px){
    .container{
        padding: 0 6rem;
    }
    html{
        font-size: 56.25%;

    }
}

@media (max-width: 980px){
    .container{
        max-width: 96rem;
    }
    .section-hero .grid-two-column{
        grid-template-columns: 1fr;
    }

    .navbar{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;

        display: flex;
        justify-content: center;
        align-items: center;

        transform: translateX(100%);
        transition: all 0.3s linear;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .navbar .navbar-list{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .navbar .navbarlink{
        color: var(--white);
    }

    

    .section::before{
        height: 40%;
    }

    .hero-image img{
        margin-left:25%;
        width: 80%;
    }

    

    /* mobile responsive iconss------- */

    .header{
        position: relative;
    }
    .header .logo{
        width: 80%;
        
    }
    .mobile-navbar-btn{
        display: block;
        border: 3px solid #000;
        color: #212529;
        z-index: 9999;
    }
    .mobile-nav-icon{
        color: #212529;
    }

    .active .navbar{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
        z-index: 999;

    }

    .active .mobile-navbar-btn .mobile-nav-icon[name="close"]{
        display: block;
        color: var(--white);
        
    }

    .active .mobile-navbar-btn .mobile-nav-icon[name="menu"]{
        display: none;
        color: var(--white);
    }

    .section::before{
        height: 30%;
    }
    .navbar{
        width: 100%;
    }
    
    .about .row{
        flex-flow: column-reverse;
        padding: 0 2rem;
    }
    .about .row .image img{
        width: 100vw;
    }

}

@media(max-width: 768px){
    .cotainer{
        max-width: 720px;
    }
    .hero-image img{
        width: 80%;

    }

}
/* ----Hero section---media queries ends */

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about{
    min-height: 80vh;
    width: 100vw;
    text-align: center;
    position: relative;
}
.heading{
    margin: 2rem;
    /* padding-top: 3rem; */
    display: inline-block;
    font-size: 3.5rem;
    color:var(--primary-color);
    position: relative;
}

.about .row{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 7rem;
}

.about .row .content{
    text-align: left;
    background-color: var(--bg-color);
    padding: 120px 15px 25px 20px;
}
.about .row .image img{
    width: 40vw;
}

.about .row .content h3{
    font-size: 3rem;
    color: var(--helper-color);
}

.about .para{
    margin-top: 1rem;
    margin-bottom: 3.2rem;
}
/* ----About section--- ends */

/* Service Seciton starts----- */

.hidden{
    visibility: hidden;
}

.service{
    min-height: 80vh;
    width: 100vw;
    padding: 0 8%;
}
.service #heading{
    margin: 2rem;
    /* padding-top: 6rem; */
    /* display: inline-block; */
    font-size: 3.5rem;
    color:var(--primary-color);
    position: relative;
    text-align: center;
}

.row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}
/* .row{
    display: flex;
    row-gap: 30px;
} */

.service .row .content h3{
    font-size: 1.7rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.content{
    text-align: center;
    padding: 25px 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    transition: transform 0.5s, background 0.5s;
}

.content ion-icon{
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--helper-color);
}

.content:hover{
    background-color: var(--helper-color);
    color: var(--white);
    transform: scale(1.05);
}

.content:hover ion-icon{
    color: var(--white);
}

/* swiper- testimonial--------- */


.swiper {
    width: 100%;
    height: 100%;
    margin-top: 5.2rem;
    /* margin-bottom: 9rem; */
}

.swiper-slide {
    text-align: center;
    font-size: 12px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
 
.swiper-client-msg {
    box-shadow: 1px 4px #e6e6eb98;
    padding: 5rem 7rem;
    background: var(--white);
    border-radius: 1rem;
    text-align: left;
    border: 2px solid var(--bg-color);
    position: relative;
}

.swiper-client-msg::before{
    content: "";
    position: absolute;
    bottom: -6rem; 
    left: 50%;
    transform: translateX(-50%);
    border: 3rem solid var(--white);
    border-color: transparent;
    border-top-color: var(--bg-color);
}

.swiper-client-msg p::before{
    content: "\f10d";
    position: absolute;
    top: 0;
    left: 2rem;
    font-size: 5rem;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ced3ff;
}

.swiper-client-msg p::after{
    content: "\f10e";
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    font-size: 5rem;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ced3ff;
}
.swiper-client-data{
    align-items: center;
    margin-top: -0.8rem;
    gap: 3.2rem;
}

.swiper-slide img{
    margin-top: 2rem;
    max-width: 7rem;
    height: 6rem;
    border-radius: 50%;
    border: .5rem solid var(--bg-color);
}


/*-- --============================================
Our Contact section starts
=================================================== -->*/

.section-contact-main{
    padding: 4rem 8rem;
    max-width: 70rem;
    margin: 0 auto;
    margin-top: 5rem;
    transition: all 0.3s linear;
    /* border: 2px solid black; */
    /* box-shadow: 1px 4px rgba(238, 170, 170, 0.684); */
    background-color: #bfcde8a2;
    border-radius: 14px;  
}
#contactHeading{
    text-align: center;
    font-size: 3rem;
}

.section-contact .heading{
    text-align: center;
}
.section-contact-main form{
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
    
}
.section-contact-main .grid{
    gap: 3.2rem;
}

.section-contact-main input, .section-contact-main textarea{
    padding: 1.5rem 2rem;
    border: 0.1rem solid #c9c9c9;
    border-radius: 5px;
    font-size: 1.6rem;
    font-family: "work sans";
    width: 100%;
}

.section-contact-main input[type="submit"]{
    max-width: 30%;
    border: none;
}
.section-contact{
    position: relative;
}
.section-contact::before{
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 9.6rem;
    left: 0%;
    width: 10rem;
    height: 50%;
    background: #e6e6eb;
    z-index: -1;
}

























































































/* footer start------ */

.footer-about{
    
    display: flex;
    flex-direction: column;
}
/* .sci{
    display: flex;
} */

footer{
    background: var(--bg-color);
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer .footer-about{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}
footer .footer-about .sec{
    margin-right: 30px;
}
footer .footer-about .sec.aboutus{
    width: 40%;
}

footer .footer-about h2{
    position: relative;
    /* color: var(--white); */
    font-weight: 500;
    margin-bottom: 15px;
}

footer .footer-about h2::before{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #f00;
}

footer .footer-about .sec.aboutus p{
    color: var(--primary-color);
    font-size: 1.4rem;
}

.sci{
    margin-top: 20px;
    display: flex;
}
.sci li{
    list-style: none;
}

.sci li a{
    display: inline-block;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
}

.sci li a:hover{
    color: var(--white);
    background: var(--helper-color);
    
}

.sci li a ion-icon{
    font-size: 20px;
}



.quicklinks{
    position: relative;
    /* width: 25%; */
}

.quicklinks ul li{
    text-decoration: none;
    margin-bottom: 10px;
}
.quicklinks ul li a{
    color: var(--primary-color);
}
.quicklinks ul li a:hover{
    text-decoration: underline;
}

.contact{
    width: 20%;
}

.contact .info{
    position: relative;
}
.contact .info li{
    display: flex;
    margin-bottom: 16px;
}

.contact .info li span:nth-child(1){
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 10px;
}
.contact .info li span{
    color: var(--primary-color);
}
.contact .info li a{
    text-decoration: none;
    color: var(--primary-color);
}

.contact .info li a:hover{
    color: var(--helper-color);
    text-decoration: underline;
    
}

footer .copyRight{
    font-size: 15px;
    margin-top: 50px;
    margin-left: 40%;
}

@media (max-width: 980px){
    html{
        font-size: 50%;
    }
    footer{
        padding: 40px;
    }
    footer .footer-about{
        flex-direction: column;

    }
    footer .footer-about .sec{
        margin-right: 0;
        margin-bottom: 40px;
    }
    footer .footer-about .sec.aboutus,.quicklinks,.contact{
        width: 100%;
    }
    
    
}

@media (max-width: 700px) {
    footer .copyRight{
    margin-left: 16rem;
    }
}
@media (max-width: 500px) {
    footer .copyRight{
        font-size: 1.2rem;
        margin-left: 9rem;
    }
}



/* scroll section starts---- */

.scrollTop-style{
    position: fixed;
    margin-right: 45px;
    right: 1%;
    bottom: 15%;
    z-index: 1;
}

.scroll-top{
    width: 4rem;
    height: 4rem;
    /* background: var(--helper-color); */
    display: inline-block;
    /* padding: 1.4rem 1.8rem; */
    position: relative;
    cursor: pointer;
}
.scroll-top:hover{
    background-color: var(--helper-color);
    color: var(--white);
    border-radius: 4px;
}

