@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* utillity section */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background: #ffffff;
    font-family: 'robot',sans-serif;
}


.blank-space{
    height: 60px;
    /* background-color: red; */
   
}


.space-100{
    width: 100%;
    height: 100px;
}
.space-60{
    width: 100%;
    height: 60px;
}
.space-40{
    width: 100%;
    height: 40px;
}
.space-20{
    width: 100%;
    height: 20px;
}


.container{
    width: 1140px;
    /* height: 650px; */
    margin-left: auto;
    margin-right: auto;
    /* background-color: #000; */
    padding: 30px 0 0 0;
    position: relative;
}
.info{
    display: flex;
    justify-content: space-between;
}

.headline{
    width: 70%;
}
.capital{
    font-size: 35px;
}

.outlineText{
    font-size: 80px;
    font-family: 'Robot', sans-serif;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #e9ffe9;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}


.small-headLine{
    color: #0a4f6c;
}
.big-headLine{
    color: #131616;
    font-size: 35px;
}
.green-headLine{
    color: #22cd6f;
}

.description{
    font-size: 18px;
    border-left: 5px solid #22cd6f;
    padding-left: 30px;
}

/* utillity section End*/

             /* logo and menu start here  */

header{
    display: flex;
    justify-content: flex-end;
}
.logo{
    margin-right: auto;
    height: 90px;
    width: 90px;
}

nav{
    position: relative;
    width: 700px;
    height: 50px;
    
    border-radius: 8px;
    font-size: 0;
    margin-top: 20px;
    margin-left: 100px;
}

nav a{
    font-size: 15px;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    text-decoration: none;
    position: relative;
    line-height: 50px;
    z-index: 1;
    display: inline-block;
    text-align: center;
    font-family: 'robot',sans-serif;
    padding: 0 10px;
    
}

nav .animation{
    position: absolute;
    /* height: 100%; */
    height: 3px;
    /* top: 0; */
    bottom: 0;
    z-index: 0;
    background: #1abc9c;
    width: 100px;
    border-radius: 8px;
    transition: all 0.5s ease 0s;
}


a:nth-child(1){
    width: 100px;

}

nav .start-home,a:nth-child(1):hover~.animation{
    width:60px ;
    left: 20px;
}



a:nth-child(2){
    width: 110px;
    
}

nav .start-aboutus,a:nth-child(2):hover~.animation{
    width:90px ;
    left: 110px;
    
}




a:nth-child(3){
    width: 110px;
    
}

nav .start-services,a:nth-child(3):hover~.animation{
    width:90px ;
    left: 223px;
}





a:nth-child(4){
    width: 120px;
    
}

nav .start-contact,a:nth-child(4):hover~.animation{
    width:120px ;
    left: 320px;
}



header .btn-green{
    padding: 20px 15px;
    background: #39b456;
    border-radius: 5px;
    display: inline-block;
    line-height: 10px;
    width: 130px;
    height: 50px;
    margin-top: 20px;
    margin-right: 20px;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    border: 1px solid transparent;
    text-decoration: none;
   
   
    
}

header .btn-green:hover{
    border-color: #39b456;
    background: transparent;
    color: #39b456;
    transition: all 0.3s;
}
.btn-green{
    padding: 20px 15px;
    background: #39b456;
    border-radius: 5px;
    display: inline-block;
    line-height: 10px;
    width: 130px;
    height: 50px;
    margin-top: 20px;
    margin-right: 20px;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    border: 1px solid transparent;
    text-decoration: none;
   
   
    
}
.btn-green:hover{
    border-color: #39b456;
    background: transparent;
    color: #39b456;
    transition: all 0.3s;
}

             /* logo and menu end here  */

             /* corausel start here */

.carousel{
    width: 99vw;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
    position: relative;
}       

.carousel .list .item{
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgb(0,0,0,0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}


.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3){
    left: 67%;
}

.carousel .list .item:nth-child(4){
    left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5){
    left: calc(67% + 400px);

}

.carousel .list .item:nth-child(6){
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n+7){
    left: calc(67% + 800px);
    opacity: 0;
}





.item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    font-family: 'robot',sans-serif;
    display: none;
}
.list .item:nth-child(2) .content{
    display: block;
}

.content .title{
    font-size: 100px;
    text-transform: uppercase;
    color: #14ff72cb;
    font-weight: bold;
    line-height: 1;

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name{
    font-size: 100px;
    text-transform: uppercase;
    
    line-height: 1;
    text-shadow: 3px 4px 7px rgba(255,255,255,0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn{
    margin-left: 5px;

        opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border:  2px solid #fff;
}

.content .btn button:nth-child(1){
    margin-right: 15px;
}

.content .btn button:nth-child(2){
    background: transparent;
    color: #14ff72cb;
    border:2px solid #fff ;
    transition: 0.3s;
}

.content .btn button:nth-child(2):hover{
    background-color: #14ff72cb;
    color: #fff;
    border-color: #14ff72cb ;
    
}

@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }
      to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* next privious button */


.arrow{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.arrow button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #14ff72cb;
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}

.arrow button:hover{
    background: #fff;
    color: #000;
}




.aboutUsText p{
    font-size: 18px;
    color: #737373;
}




/* service section */


.service-head{
    width: 1140px;
    height: 82px;
    /* background-color: #59309b; */
    display: flex;
    
}
.serv-headline{
    width: 470px;
    height: 82px;
    padding: 10px 0 0 0;
    
    
}

.serv-para{
    width: 450px;
    height: 80%;
    border-left: 5px solid #22cd6f;
    margin: 10px 0 0 0;
    padding-left: 30px;
    font-size: 20px;
}


.serv-nav{
    display: flex;
    margin-left: 100px;
    align-items: center;
}
.serv-nav-prev{
    width: 45px;
    height: 45px;
    margin: 20px 10px 20px 80px;
    border: 1px solid #14ff72cb;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
}
.serv-nav-next{
    width: 45px;
    height: 45px;
    margin: 20px 10px 20px 10px ;
    border: 1px solid #14ff72cb;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
}






.serv-slider{
    max-width: 1140px;
    height: 478px;
    font-size: 18px;
    color: #737373;
    overflow: hidden;
}
.serv-items{
    /* max-width: 1140px; */
    height: 478px;
    /* background-color: antiquewhite; */
    display: flex;
    gap: 1.3em;
    transition: all 1s ease-in;
    
}
.serv-item{
    width: 370px;
    height: 470px;
    /* background-color: #22cd6f; */
    border: 1px solid #22cd6f;
    border-radius: 10px;
    
}

.servImage{
    width: 340px;
    height: 350px;
    margin: 10px 10px 5px 10px;
    object-fit: cover;
}
.serv-des{
    width: 300px;
    height: 90px;
    background-color: #ffffff;
    margin: 0 auto 5px auto;
    padding: 10px;

}


/* service section END*/





.service-explore{
    background-image: url(/images/world-map.svg);
    background-size: cover;
    background-position: center;
    place-content: center;
    text-align: center;
    position: relative;
    display: grid;
    min-height: 500px;
}
.service-explore::after{
    content: '';
    position: absolute;
   background: #e0e0e0;
    inset: 0;
    z-index: -1;
    opacity: .5;
   
}

.nav-arrow-div > div{
    height: 45px;
    width: 45px;
    cursor: pointer;
    background: transparent;
    border: 1px solid #06a950;
    text-align: center;
    line-height: 45px;
    border-radius: 4px;
    color: #06a950;
    font-size: 16px;
    display: inline-block;
    margin: 0 5px;
    transition: all .3s;
}

.nav-arrow-div > div:hover{
    background: #06a950;
    border-color: #06a950;
    color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

/* clients section */

.marquee{
    width: 1140px;
    height: 150px;
    /* background-color: #000; */
    overflow: hidden;
    position: relative;
}

.marquee::before, .marquee::after{
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
}

.marquee::before{
    left: 0;
    background-image: linear-gradient(to right, #ffffff, transparent 100%);
}
.marquee::after{
    right: 0;
background-image: linear-gradient(to left, #ffffff, transparent 100%);
}

.marquee-content{
    list-style: none;
    height: 100%;
    display: flex;
    gap: 40px;
    animation: scrolling 58s linear infinite;
}

.marquee-content:hover{
    animation-play-state: paused;

}




.marquee-content li img{
    object-fit: cover;
    height: 80%;
}

/* clients section END */





.content_full{
    display: flex;
    gap: 40px;
}
.aboutUsImage{
    width: 100%;
    height: 400px;
}
.aboutUsText{
    text-align: justify;
}
.aboutUs{
    height: 400px;
    object-fit: cover;
}






/* timeRunning */

.carousel .timeRunning{
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 4px;
    background-color:#14ff72cb ;
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}





footer{
    width: 100%;
    height: auto;
    background-color: rgb(7, 54, 75);
    color: #fff;
    font-family: 'robot',sans-serif;
    
}

.footerHold{
    display: flex;
    flex-wrap: wrap;
    
}
.foo{
   flex: 1;
   padding: 20px;
}
.foo h3{
    font-size: 25px;
    margin-bottom: 30px;
}


.imagefoo{
    width: 80%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.fooimg{
    width: 30%;
    height: auto;
}



.usefulLinks ul, .add ul{
    list-style: none;
    font-size: 16px;
    
}

/* .usefulLinks ul{
    width: 200px;
} */

.usefulLinks ul a{
    text-decoration: none;
    padding: 4px 16px;
    display: inline-block;
    color: #fff;
    
}
.add .rs{
    margin-right: 20px;
}
.imagefoo{
    position: relative;
    z-index: 1;
}
.fooimg{
    margin-left: 20px;
    margin-top: 30px;
}
.logoT .headfoo{
    margin-top: 20px;
    
}
.logoT .blob{
    height: 7rem;
    width: 7rem;
    position: absolute;
    border-radius: 42% 56% 72% 58% / 42% 42% 56% 68% ;
    background-color: #fff;
    top: 0px;
    left: 0px;
    background-size: cover;
    background-position: center;
    animation: blobAni 5s linear infinite;
    z-index: -1;

}

.usefulLinks ul li a {
   position: relative;
   display: inline-block;
   overflow: hidden;
 }
 
 .usefulLinks ul li a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   height: 1px;
   width: 100%;
   background: #fff;
   background-size: 200% auto;
   transition: all .5s;
   transform: translateX(-100%);
 }
 
 .usefulLinks ul li a:hover::after {
   transform: translateX(0%);
   animation: gradient-89 3s linear infinite;
 }


.sf{
    background: #131616;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    height: 30px;
}
 


@keyframes blobAni {
    0%, 100%{
        border-radius: 70% 80% 30% 70% ;
    }
     33%{
        border-radius: 30% 80% 70% 70%  ;
    }
     66%{
        border-radius: 70% 80% 70% 30%;
    }
    
    
}

/* animation */


@keyframes runningTime{
    from{
        width: 0;
    }
    to{
        width: 100%;
    }
}

@keyframes scrolling {
    0%{transform: translate(0);}
    100%{transform: translate(-500vw);}
}

/* media query responsive  */

@media screen and (max-width: 999px) {
    header{
        padding-left: 50px;
    }

    .item .content{
        left: 50px;
    }
    .content .title,.content .name{
        font-size: 70px;
    }
    .content .des{
        font-size: 16px;
    }
}

@media screen and (max-width: 690px){
    header a{
        font-size: 14px;
        margin-right: 2px;
    }
    .item .content{
        top: 40%;
    }
    .content .title, .content .name{
        font-size: 45px;
    }
    .content .btn button{
        padding: 10px 15px;
        font-size: 14px;
    }
}