@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #222222;
    --secondary-color: #16AAE4;
    --my-gradient: linear-gradient(90deg, rgba(22, 170, 228, 1) 0%, rgba(60, 77, 153, 1) 100%);
    --hover-gradient: linear-gradient(90deg, rgba(60, 77, 153, 1) 0%, rgba(22, 170, 228, 1) 100%);
    --text-gradient: -webkit-linear-gradient(90deg, rgba(22, 170, 228, 1) 0%, rgba(60, 77, 153, 1) 100%);
    --default-font: "Poppins", sans-serif;
}

body {
    font-family: var(--default-font);
}

.grad-bg {
    background: var(--my-gradient);
}

.p-100 {
    padding: 100px 0;
}

.p-80 {
    padding: 80px 0;
}

.section-heading{
    text-align: center;
}

.section-heading p {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-heading h2 {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero {
    background-image: url(../images/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
}

.hero ul {
    /*list-style-image: url('../images/box.png');*/
    list-style-type: circle;
    font-weight: 500;
    font-size: 18px;
}

.hero ul li {
    margin-bottom: 10px;
}

.hero h1 {
    font-weight: 600;
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

span {
    color: var(--secondary-color);
}

.hero-btn, .head-btn {
    background: var(--my-gradient);
    border: none;
    color: #fff !important;
    padding: 10px 40px;
    border-radius: 0;
}

.hero-btn:hover, .head-btn:hover {
    background: var(--hover-gradient);
    border: none;
    color: #fff;
}


.clients .swiper-slide{
    background: transparent;
}


.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -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;
}

.service-card{
    box-shadow: 0px 0px 10px #ddd;
    margin: 10px;
    border-radius: 10px;
}



.service-content{
    padding: 20px;
}

.service-content h3{
    font-weight: 600;
}

.service-content p{
    font-weight: 400;
    color: #999;
    font-size: 17px;
}

.image img{
    border-radius: 10px 10px 0 0;
}

.image .icon{
    position: absolute;
    right: 15px;
    top: 15px;
}

.service-btn{
    border:1px solid;
    border-color: var(--secondary-color);
    color: var(--secondary-color)!important;
    border-radius: 0;
}

.service-card:hover .service-content{
    background: var(--secondary-color);
    color: #fff;
}
.service-card:hover .service-content p{
    color: #fff;
}

.service-card:hover .service-btn{
    border-color: #fff;
    background-color: #fff;
    border-radius: 0;
}

.aboutli li{
    margin-bottom: 10px;
    font-weight: 600;
}





.stat{
    display: flex;
    align-items: center;

}

.stat h3, .stat p{
    font-weight: 600;
    color: #011E45;
    margin-bottom: 0;
    padding-left: 15px;
}

.sam{
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sip{
    margin-right: 30px;
}
.sam p{
    border-top: 1px solid #c7c7c7;
    margin: 0;
    padding: 15px 0;
}

.service-contents h2{
    font-weight: 600;
}

.service-contents p{
    font-weight: 400;
    color: #999;
    font-size: 18px;
}

.service-cards{
    box-shadow: 0px 0px 10px #ddd;
    margin: 10px;
    border-radius: 0px;
}

.service-cards .image img{
     border-radius: 0px;
}

.service-cards h3{
    font-weight: 600;
    color:#011E45;
    font-size: 25px;
}

.section-headings p{
    font-size: 18px;
    color: #fff;
}
.section-headings h2{
    font-size: 45px;
    color: #fff;
}


footer{
    background-color: #F2F6FF;
}

.nav-link{
    font-weight: 600;
}

.h-flex{
    display: flex;
    width: fit-content;
    box-shadow: 5px 5px 5px #ddd;
    margin: auto 0;
    padding: 10px 30px;
    border-radius: 10px;
}
.h-flex p{
    margin-bottom: 0;
}

@media screen and (max-width: 575px){
    .hero h1{
        font-size: 40px;
    }
    .buttonn .mx-3{
        margin-left: 0px!important;
        margin-top: 15px;
    }
    .p-100{
        padding: 60px 0;
    }
    .p-80{
        padding: 40px 0;
    }
    .section-heading h2, .section-headings h2{
        font-size: 32px;
    }
    .sign{
        margin-right: 0!important;
        margin-top: 10px;
    }
    .stat{
        margin-bottom: 15px;
    }
    .sam{
        display: block;
    }
    .sip{
        margin-right: 0;
    }
    .swiper-button-prev, .swiper-button-next{
        display: none;
    }
}

@media screen and (min-width: 576px) and (max-width: 991px) {
    .hero h1{
        font-size: 40px;
    }
    .buttonn .mx-3{
        margin-left: 0px!important;
        margin-top: 0px;
    }
    .p-100{
        padding: 60px 0;
    }
    .p-80{
        padding: 40px 0;
    }
    .section-heading h2, .section-headings h2{
        font-size: 32px;
    }
    .sign{
        margin-right: 0!important;
        margin-top: 10px;
    }
    .stat{
        margin-bottom: 15px;
    }
    .sam{
        display: block;
    }
    .sip{
        margin-right: 0;
    }
    .swiper-button-prev, .swiper-button-next{
        display: none;
    }
}

@media screen and (min-width:  992px) and (max-width: 1199px){
    .hero h1{
        font-size: 40px;
    }
    .buttonn .mx-3{
        margin-left: 0px!important;
        margin-top: 0px;
    }
    .p-100{
        padding: 60px 0;
    }
    .p-80{
        padding: 40px 0;
    }
    .section-heading h2, .section-headings h2{
        font-size: 32px;
    }
    .sign{
        margin-right: 0!important;
        margin-top: 10px;
    }
    .stat{
        margin-bottom: 15px;
    }
    .sip{
        margin-right: 30px;
    }
    .swiper-button-prev, .swiper-button-next{
        display: none;
    }
}