@import url('https://fonts.googleapis.com/css2?family=Montserrat: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&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Rancho&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Rancho', cursive;
font-family: 'Rubik', sans-serif; */

/*#0198fb*/
/* #dda023*/
 
 
li {
    list-style: none;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rubik', sans-serif;
    /*color: #00dfbb;*/
    color: #0198fb;
    margin: 0;
}

p {
    font-family: 'Montserrat', sans-serif
}

body {
    overflow-x: hidden;
    background: #f5fffd;
}

html {
    scroll-behavior: smooth;
}
a:hover{
    text-decoration: none;
}
/* Global Class */
.myBtn1 {
    text-decoration: none;
    /*background: #00dfbb;*/
    background: #0198fb; 
    color: white;
    padding: 12px 30px;
    border-radius: 3px;
    box-shadow: 0px 0px 10px 0px #00dfbb73;
}

.myBtn1:hover {
    text-decoration: none;
    background: #d8a845;
    color: white;
}

/* =========================== Nav Bar & Hero Area End ========================= */

.navbar {
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    font-size: 18px;
    font-weight: 600;
    color: #475569;
}

.nav-link:hover {
    color: #01c6a5;
}

.nav-logo img {
    width: 75px;
}




/* Hero Area */

.heroSection {
    background: url('../images/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.heroAmimation {
    margin-top: -50px;
    width: 600px;
}

.heroTextBox {
    padding: 50px 0;

}

.heroArea {
    padding-top: 100px;
}

.heroTextBox .heroTextSubheading {
    font-family: 'Rancho', cursive;
    font-size: 40px;
    font-style: italic;
    margin: 0;
    /*color: #00dfbb;*/
    color: #0198fb;
}

.heroTextBox h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 80px;
    color: #363636;
    font-family: 'Rubik', sans-serif;
}

.heroTextBox .tagLine {
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .heroAmimation {
        width: 100%;
    }

    .heroTextBox h1 {
        font-size: 50px;
        line-height: 50px;
    }

    .heroTextBox .heroTextSubheading {
        font-size: 30px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}

/* =========================== Nav Bar & Hero Area End ========================= */
/* =========================== About Us & Misiion & Count Start========================= */
#about {
    position: relative;
    padding-bottom: 50px;
}

/* Mission */
.mission {
    padding-bottom: 75px;
}

.missionAnimation {
    margin-top: -75px;
}

/* Count Div */
.countDiv {
    width: 100%;
    max-width: 1050px;
    /*background: #00dfbb;*/
    background: linear-gradient(270deg, #0594f5, #eea510);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    margin: auto;
    padding: 40px 20px;
    border-radius: 50px 0px 50px 0px;
    position: absolute;
    bottom: -90px;
    left: 11%;

}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.countBox h1 {
    font-weight: bolder;
}

.countBox h1,
.countBox .countText {
    color: white;
    text-align: center;
    display: block;
}

@media only screen and (max-width: 768px) {
    .aboutImg1 {
        display: none;
    }

    .aboutImg2 {
        display: block !important;
    }

    .countDiv {
        border-radius: 0px;
        bottom: 0;
        left: 0;
    }

    #about {
        padding-bottom: 350px;
    }

    .missionAnimation {
        margin-top: -30px;
    }
}

/* =========================== About Us & Misiion & Count END========================= */
/* =====================Services Section Start=========================*/
#service {
    background: #ebebeb57;
    padding: 25px 0;
    padding-top: 90px;
}

.serviceBox {
    background: #f5fffd;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 3px 3px 13px -12px #1a00e3;
    cursor: pointer;
    transition: 0.5s all ease-in-out;
    height: 320px;
}

.serviceBox:hover {
    transform: scale(1.02);
}

.serviceBox:hover.serviceBox img {
    transform: rotateY(180deg);
}

.serviceBox img {
    width: 75px;
    transition: 0.5s all ease-in-out;
}

.serviceBox h5 {
    margin-top: 25px;

}

@media only screen and (max-width: 768px) {
    #service {
        padding-top: 50px;
    }
}

/* =====================Services Section END=========================*/

.pBarText{
    display: flex;
    justify-content: space-between;
}
.pBarText h6{
color: #363636;
}
.proggress{
    height: 5px !important;
}
.percentCount{
    display: none;
}
.progressbar{
margin-bottom:15px ;
}

/* ======================== Our Portfolio Start ======================== */
.portfolio{
    background:white;
}
.portfolioBox{
    background: #f5fffd;
    overflow: hidden;
    border-radius: 5px;
    border: 2px solid #8effe8;
    box-shadow: 1px 1px 10px -5px #383838;
}
.portfolioText{
    padding: 5px 10px;
    line-height: 17px;
}
.portfolioText span{
    color: #00dfbb;
    font-weight: 500;
    text-decoration: none;
} 
.portfolioText small{
    font-style: italic;
    text-decoration: none;
    color: #363636;
}
a:hover.portfolioText span{
    text-decoration: none;
}
.portfolioBox span{
    display: block;
}
/* ======================== Our Portfolio End ======================== */

/* =================== Testimonial Start ============================ */
.testimonial{
    background: url("../images/testimonialsBG.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testiBox{
    background: white;
    padding: 15px;
    box-shadow: 0px 0px 10px 0px #00dfbb;
}
.testiBox::after{
    content: "";
    width: 100px;
    height: 100px;
    background: url(../images/quote.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
}
.testiBox p{
    width: 100%;
    height: 150px;
}
.logoCarouselSec{
    background: #ebebeb57;
}
.logoBox img{
    width: 100% !important;
    max-width: 100px;
    margin: auto;
    /* filter: grayscale(100%); */
}
.logoCarousel{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logoBox{
    display: flex;
    justify-content: center;
    align-items: center; 
}
.logoBox p{
    text-align: center;
    font-size: 15px;
}
.logoCarousel .owl-dots{
    display: none;
}
/* =================== Testimonial End ============================ */

/* ========================Our Expart Team Section Start ======================== */
.teamBox{
    position: relative;
}
.teamBox img{
    width: 100%;
    height: 300px;
    z-index: inherit;
}
.teamDetails{
    /*background: #00dfbb;*/
     background: #dda023;
    margin: 0px 25px;
   padding: 8px;
    color: white;
    text-align: center;
    position: absolute;
    bottom: -33px;
    width: 80%;
    left: 0;
}
.teamDetails p{
    margin: 0;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .teamBox {
        margin:25px;
    }
}
/* ========================Our Expart Team Section End ======================== */

/* ========================Contact Section Section Start ======================== */
#contact{
    background:url("../images/contact-us-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 150px;
}
.contactForm{
    padding: 15px;
    background: #f5fffd;
}
.contactForm input,.contactForm textarea{
    background: #f5fffd;
    margin: 12px 0;
    border: none;
    border-bottom: 1px solid #00dfbb;
    border-radius: 0;
}
.form-control:focus {
    background-color: #f5fffd;
    border-color: #00dfbb;
    /* outline: 0; */
    box-shadow: none;
}
.submitBtn{
    /*background: #00dfbb !important;*/
    background: #0198fb !important;
    color: white;
    padding: 10px 30px;
}
.contactDetails{
    background: #f5fffd;
    margin: 19px 0px;
    padding: 25px;
    display: flex;
    justify-content: start;
}
.contactDetails:nth-child(1){
    margin-top: 0 !important;
}
.contactDetails img{
    width: 65px;
}
.contactDetails h6{
    margin: 0px 15px;
    margin-top: 18px;
}
@media only screen and (max-width: 768px) {
    .contactDetails:nth-child(1){
        margin: 19px 0px !important;
    }
}
/* ========================Contact Section Section End ======================== */
footer{
    margin-top: -120px;
}
.footerDiv{
    background: url("../images/footer-bg1.png");
    /* background-position: center; */
    background-repeat: no-repeat;
    background-size: cover;

}
footer h4{
    margin-top: 130px;
    color: #4e4e4e;
}
footer a{
    color: #212529;
}
footer p{
    margin: 0;
}
@media only screen and (max-width: 768px) {
    footer h4{
        margin-top: 5px;
        
    }
    .footerInfo{
        margin: 0!important;
    }
    footer {
        margin-top: -160px;
    }
    .footerInfo img{
        padding-top: 50px;
    }
}
