@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&family=Source+Serif+4:ital,wght@1,300&display=swap');

*{
    margin:0;
    font-family: 'Source Serif 4', sans-serif;
    padding:0;
    border:none;
    outline:0;
    box-sizing:border-box;
}
html{
    scroll-behavior: smooth;
    -ms-scroll-limit-x-min: 500px;
}
:root{
   --color:#a0a5a4;
   --nav:rgb(202, 115, 253);
   --btn:rgba(173, 242, 252, 0.4);
}
body{
    background-color: var(--color);
}
::-webkit-scrollbar{
    width:0;
}
#scrollPath{
   position:fixed;
   top:0;
   right:0;
   width:10px;
   height:100%;
   background:rgba(255,255,255,0.05);
}
#progressbar{
   position:fixed;
   top:0;
   right:0;
   width:10px;
   background:linear-gradient(to top,#008aff,#00ffe7);
   animation:bar 5s linear infinite;
   z-index:60;
}
@keyframes bar{
   0%,100%{
       filter:hue-rotate(0deg);
   }
   50%{
       filter:hue-rotate(360deg);
   }
}
/*
#progressbar:before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
   
    background:linear-gradient(to top,#008aff,#00ffe7);
    filter: blur(10px);
}
#progressbar:after{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to top,#008aff,#00ffe7);
    filter: blur(10px);

    
}
*/

.nav-progressbar{
   position:fixed;
   bottom:0;
   right:0;
   height:1px;
   width:100%;
   background:linear-gradient(to right,#008aff,#00ffe7);
   animation:bar2 5s linear infinite;
   z-index:60;
}
@keyframes bar2{
   0%,100%{
       filter:hue-rotate(0deg);
   }
   50%{
       filter:hue-rotate(360deg);
   }
}
.nav-progressbar:before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to right,#008aff,#00ffe7);
    filter: blur(10px);
}
.nav-progressbar:after{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to right,#008aff,#00ffe7);
    filter: blur(10px);
}
nav{
   display:none;
}
nav.stiky{
    display:flex;
    overflow: hidden;
    position:fixed;
    z-index:100;
    width:100%;
    height:8vh;
    background-color: rgb(255, 255, 255,0.1);
    bottom:0;
    padding:-5px;
    transition:1s;
    box-shadow:0 0 1px grey;
    backdrop-filter:blur(25px);

}
nav.stiky .logo{
    margin: auto;
    margin-top:-7px;
    margin-left:100px;
}
nav.stiky h3{
   margin: auto;;
   font-size:25px;
   padding:0;
   color:var(--nav);
   animation: appear 0.5s forwards ease var(--i);

}
nav.stiky ul{
    display: flex;
    margin:auto;
}
nav.stiky ul a{
    text-decoration: none;
    color:var(--nav);
    padding:0 0.7rem;
    font-size:13px;
    font-weight:600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity:0;
    transform: translateY(10px);
    animation: appear 0.5s forwards ease var(--i);
 }
 nav.stiky ul a:hover{
     opacity: 0%;
 }
.container{
    min-height: 100vh;
    width:100%;
    background-image:linear-gradient(135deg, var(--color) 0%, #28313b 74%);
    overflow-x: hidden;
    transform-style: preserve-3d;
}
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:10;
    height:3rem;    
}
.navbar h3{
    font-size: 25px;
}
.menu{
    max-width:72rem;
    width:100%;
    margin:0 auto;
    padding:0 2rem;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;

}
.logo{
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 4rem;
}
.hamburger-menu{
    height:4rem;
    width:3rem;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content: center;
}
.bar{
    width:1.9rem;
    height:1.5px;
    border-radius:5px;
    background-color:#eee;
    transition: 0.5s;
    position:relative;
}
.bar:before, .bar:after{
    content:"";
    position:absolute;
    width:inherit;
    height:inherit;
    background-color: #eee;
    transition: 0.5s;
}
.bar:before{
    transform:translateY(-9px);
}
.bar:after{
    transform:translateY(9px);
}
.main-container .main{
    position:relative;
    width:100%;
    left:0;
    z-index:0;
    background-color: white;
    overflow: hidden;
    transform-origin: left;
    transform-style: preserve-3d;
    transition: 0.5s;
}
header{
    min-height:100vh;
    width:100%;
    background: url(../img/me.jpg) no-repeat top center / cover;
    box-shadow:0 0 10px 10px var(--color);

}
@media only screen and (max-width: 990px){
    header{
        background: url(../img/_DSC0799a.jpg) no-repeat top center / cover;
    }
}
.overlay{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:rgba(43,51,59,0.8);
    display:flex;
    justify-content:center;
    align-items:center;

}
.inner{
    max-width: 50rem;
    text-align: center;
    color:#fff;
    padding:0 2rem;
    position: absolute;

}

.title{
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 3.5rem;
    line-height: 120px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    background: url(../img/back.png);
    -webkit-background-clip:text;
    background-position: 0 0;
    animation:back 20s linear infinite;
    word-spacing:10px;
    
}

@keyframes back{
    100%{
        background-position: 2000px 0;
    }
}



.animate-text .txt-rotate{
    color:rgb(253, 153, 107);
    word-spacing: 5px;
    margin-left:5px;
}
.btn{
    position: relative;
    display: inline-block;
    padding:0.6rem 1.8rem;
    border:2px solid var(--btn);
    border-radius:25px;
    font-weight: 600;;
    text-transform: uppercase;
    cursor:pointer;
    text-decoration: none;
    margin-top: 1.5rem;
    color:#fff;
    backdrop-filter: blur(25px);
}
.btn:hover{
    transition-delay:.5s;
    box-shadow:0 0 5px var(--btn),
               0 0 10px var(--btn),
               0 0 20px var(--btn),
               0 0 40px var(--btn);
}
.btn span{
    position:relative;
    z-index:100;
}
.btn::before{
    content:"";
    position:absolute;
    left:-15px;
    top:50%;
    transform: translateY(-50%);
    width:20px;
    height:0px;
    background-color:var(--btn);
    box-shadow:5px -8px 0 var(--btn),
               5px 8px 0 var(--btn);
    transition:width 0.5s,left 0.5s, height 0.5s, box-shadow 0.5s;
    transition-delay: 1s,0.5s,0s,0s;
}
.btn:hover::before{
    width:60%;
    height:110%;
    left:-2px;
    border-radius: 25px;
    box-shadow:5px 0 0 var(--btn),
               5px 0 0 var(--btn);
    transition-delay:0s,0.25s,.5s,.5s;
    color:white;
}
.btn::after{
    content:"";
    position:absolute;
    right:-15px;
    top:50%;
    transform: translateY(-50%);
    width:20px;
    height:0px;
    background-color:var(--btn);
    box-shadow:-5px -8px 0 var(--btn),
               -5px 8px 0 var(--btn);
   transition:width 0.5s,left 0.5s, height 0.5s, box-shadow 0.5s;
   transition-delay: 1s,0.5s,0s,0s;
}
.btn:hover::after{
    width:60%;
    height:110%;
    right:-2px;
    border-radius: 25px;
    box-shadow:-5px 0 0 var(--btn),
               -5px 0 0 var(--btn);
    transition-delay:0s,0.25s,.5s,.5s;
    color:white;
}

.container.active .bar{
    transform: rotate(360deg);
    background-color:transparent;

}
.container.active .bar:before{
    transform: translateY(0) rotate(45deg);
}
.container.active .bar:after{
    transform: translateY(0) rotate(-45deg);
}
.container.active .main{
    animation:main-animation 0.5s ease;
    cursor:pointer;
    transform:perspective(1300px) rotateY(20deg) translate(310px) scale(0.5);
}
@keyframes main-animation{
    from{
        transform:translate(0);
    }
    to{
        transform:perspective(1300px) rotateY(20deg) translate(310px) scale(0.5);
    }
}

.links{
    position:absolute;
    width:30%;
    right:0;
    top:0;
    height:100vh;
    z-index:2;
    display:flex;
    justify-content: center;
    align-items: center;

}

ul{
    list-style:none;
}
.links a{
   text-decoration: none;
   color:#eee;
   padding:0.7rem 0;
   display: inline-block;
   font-size:14px;
   font-weight:300;
   text-transform: uppercase;
   letter-spacing: 1px;
   opacity: 0;
   transform: translateY(10px);

}

.links a:hover{
    color:#fff;
}
.container.active .links a{
    animation: appear 0.5s forwards ease var(--i);

}

@keyframes appear {
    from{
        opacity:0;
        transform: translateY(10px);
    }
    to{
        opacity:1;
        transform: translateY(8px);
    }
}
@keyframes hide {
    from{
        opacity:1;
        transform: translateY(8px);
    }
    to{
        opacity:0;
        transform: translateY(10px);
    }
}
.shadow{
    position:absolute;
    width:100%;
    height:100vh;
    top:0;
    left:0;
    background-color: #fff;
    transform-style: preserve-3d;
    transform-origin: left;
    transition: 0.5s;
}
.shadow.one{
    z-index:-1;
    opacity:0.15;
}
.shadow.two{
    z-index:-4;
    opacity:0.1;
}
.container.active .shadow.one{
    top:30px;
    animation: shadow-one 0.6s ease-out;
    transform:perspective(1300px) rotateY(20deg) translate(250px) scale(0.5);
}
@keyframes shadow-one{
    0%{
        transform: translate(0);
        
    }
    5%{
        transform:perspective(1300px) rotateY(20deg) translate(310px) scale(0.5);
        
    }
    100%{
        transform:perspective(1300px) rotateY(20deg) translate(250px) scale(0.5);
    
    }
}
.container.active .shadow.two{
    top:60px;
    animation:shadow-two 0.6s ease-out;
    transform:perspective(1300px) rotateY(20deg) translate(187.5px) scale(0.5);
}
@keyframes shadw-two{
    0%{
        transform: translate(0);
        
    }
    20%{
        transform:perspective(1300px) rotateY(20deg) translate(120px) scale(0.5);
        
    }
    100%{
        transform:perspective(1300px) rotateY(20deg) translate(187.5px) scale(0.5);
    
    }
}
.container.active .main:hover+ .shadow.one:hover{
    transform:perspective(1300px) rotateY(20deg) translate(230px) scale(0.5);
}
.container.active .main:hover{
    transform:perspective(1300px) rotateY(20deg) translate(340px) scale(0.5);
}


















.service{
    overflow:hidden;
    padding: 25px;
    padding-bottom:50px;
    margin-top: 50px;

}
.service .service-box{
    padding-left:4%;
    padding-top:20px ;
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    grid-column-gap: 10px;
    grid-row-gap:20px;
    margin-top: 25px;
}
.service h2{
    text-align:center;
    color:white;
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 5px;
    -webkit-box-reflect: below 0px linear-gradient(transparent,transparent,#0004);

}
.service .main{
    width:80%;
    height:380px;
    text-align:center;
    position:relative;
    cursor:pointer;
}
.service-content{
    width:100%;
    height:280px;
    background:#fff;
    padding:30px;
    border-radius:10px;
    position:absolute;
    bottom:0;
    z-index:2;
    transition:0.8s;;
}
.service-logo{
    width:130px;
    height:130px;
    border-radius:50%;
    margin:-90px auto 0;
    background: #fff;
    border:10px solid var(--color);
    display:flex;
    justify-content: center;
    align-items: center;

}
.service-logo i{
    position:relative;
    transition:1s;
    font-size: 90px;
    color:var(--color);
}
.service .main:nth-child(2) i,
.service .main:nth-child(3) i,
.service .main:nth-child(6) i{
    font-size: 70px;
}
.service h4{
    height:35px;
    width:80%;
    background:#fff;
    margin:auto;
    position:relative;
    margin:10px auto 20px;
}
.service p{
    font-size: 13px;
    justify-content: center;
}

.service h4::after{
    content:'';
    width:40px;
    height:30px;
    background:linear-gradient(to right,#fff,var(--color));
    position:absolute;
    right:-5px;
    top:-5px;
    z-index:-1;
}
.service h4::before{
    content:'';
    width:40px;
    height:30px;
    background:linear-gradient(to right,var(--color),#fff);
    position:absolute;
    left:-5px;
    bottom:-5px;
    z-index:-1;
}  
.service .shadowOne{
    height:200px;
    width:80%;
    background: #fff;
    position:absolute;
    border-radius:10px;
    bottom:0;
    left:10%;
    z-index:1;
    box-shadow:0 0 20px -15px #030380;
    opacity:90%;
    transition:0.8s;
   
}
.service .shadowTwo{
    height:200px;
    width:64%;
    opacity:60%;
    background: #fff;
    position: absolute;
    border-radius:10px;
    bottom:0;
    left:18%;
    z-index:0;
    box-shadow:0 0 20px -15px #030380;
    transition:0.8s;
  
}

.main:hover .service-content{
    box-shadow:0 1px 0px 2px rgb(228, 227, 227);
    transform:translateY(-50px);
}
.main:hover .shadowOne{
    transform:translateY(-25px);
}
.main:hover .shadowTwo{
    transform:translateY(0px);
}
.main:hover .service-logo i{
    transform:rotate(360deg);
}














.work{
    overflow: hidden;
    padding-top: 60px;
    background-color: rgb(225, 248, 246);
    min-height: 100vh;
}
.work h2{
    color: var(--color);
    text-align: center;
    font-size:30px;
    text-transform: uppercase;
    -webkit-box-reflect: below 0px linear-gradient(transparent,transparent,#0004);

}
.recent-work{
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 100px;
}

.recent-work .box{
    position:relative;
    height:300px;
    width:200px;
    transform-style: preserve-3d;
    animation:work 120s linear infinite;
}

@keyframes work{
    0%{
        transform:perspective(1500px) rotateY(0deg);
    }
    100%{
        transform:perspective(1500px) rotateY(360deg);
    }
} 
.recent-work .box .work-content{
    position:absolute;
    width:100%;
    height:100%;
    background-color: aqua;
    top:0;
    left:0;
    transform-style: preserve-3d;
    transform-origin: center;
    transform:rotateY(calc(var(--v) * 45deg)) translateZ(300px);
    -webkit-box-reflect: below 0px linear-gradient(transparent,transparent,#0004);
} 
.recent-work .work-content img{
    position:absolute;
    height:100%;
    width:100%;
    object-fit:cover;
} 
.recent-work .work-content .button{
    justify-content: center;
    width:100px;
    margin:auto;
    margin-top: 70%;
}
.recent-work .work-content a{
    position:relative;
    margin:center;
    text-align: center;
    text-decoration: none;
}
.recent-work .work-content a p{
    color:#fff;
    background-color: var(--color);
    font-size: 12px;
    font-weight: 600;
    padding:5px 16px;
    border-radius:25px;
    box-shadow:0 0 2px var(--color); 
    transition: .5s;
}
.recent-work .work-content a:hover p{
    box-shadow: 0 0 5px var(--color);
}




















.clear { clear: both; }
.testimonial{
    padding:2px;
    padding-top:50px;
    background-color: #EEE7E5;
    height:100vh;
}
.testimonial h2{
    text-align: center;
    font-size: 35px;
    text-transform: uppercase;
    color: #fff;
    -webkit-box-reflect: below 0px linear-gradient(transparent,transparent,#0004);
    
}
.stage {
  margin:30px auto;
  height:400px;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  z-index: 10;
  position: relative;
  -webkit-backface-visibility: hidden;
}

.testimonial-content{
  width: 280px;
  height:380px;
  float: left;
  padding:20px;
  margin: 25px 0px 25px 0px;
  color: white;
  background-color:#faf6f5;
  box-shadow: 0px 5px 10px 0px #e2dfdf;
  position: absolute;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  border-radius: 8px;
  overflow: hidden;
}

.testimonial-content img{
  width: 100%;
  height: 100%;
}

.inactiveLeft {
  -webkit-transform: perspective(500px) rotateY(60deg);
  -O-transform: perspective(500px) rotateY(60deg);
  transform: perspective(500px) rotateY(60deg);
  -webkit-transition: all .5s ease-out;
  -O-transition: all .5s ease-out;
  transition: all .5s ease-out;
  box-shadow: 12px 0px 20px 0px #d6d6d6;
}

.inactiveRight {
  -webkit-transform: perspective(500px) rotateY(-60deg);
  -O-transform: perspective(500px) rotateY(-60deg);
  transform: perspective(500px) rotateY(-60deg);
  -webkit-transition: all .5s ease-out;
  -O-transition: all .5s ease-out;
  transition: all .5s ease-out;
  box-shadow: -12px 0px 20px 0px #d6d6d6;
}

.t-active {
  z-index: 100;
  -webkit-transform: perspective(500px) rotateY(0deg);
  -O-transform: perspective(500px) rotateY(0deg);
  transform: perspective(500px) rotateY(0deg);
  -webkit-transition: all .5s ease-out;
  -O-transition: all .5s ease-out;
  transition: all .5s ease-out;
  
}
.testimonial .controls{
    margin:auto;
}

.testimonial .client-info .img{
    width:70px;
    height:70px;
    margin:20px auto 0;
    border-radius: 5px;

}
.testimonial .controls i{
  font-size: 50px;
  color:white;
}
.testimonial .client-info img{
    width:100%;
    border-radius: 5px;
}
.testimonial .client-info p{
    font-size:20px;
    text-align:center;
    color:rgb(82, 78, 78)
}
.testimonial .speech{
    position:relative;
    margin-top:50px;
}
.testimonial .speech h4{
    font-size:18px;
    text-align:center;
    color:rgb(102, 100, 100);
    font-weight: 500;
}
.testimonial .speech p{
    font-size: 15px;
    justify-content:center;
    color:rgb(117, 117, 117);
    text-align: center;
}
.testimonial .star{
    margin-top:20px;
    text-align: center;
}
.testimonial .star i{
     color:#f3b04b;
     font-size: 25px;
}







.contact{
    position: relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height: 100vh;
    padding:50px 0;
    width:100%;
    background-color: #001923;
    overflow: hidden;
  }
  .contact::before{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:linear-gradient(#b73bff,#e9801e);
    border-radius: 50%;
    transform:translate(-420px,-150px);
    overflow: hidden;
  
  }
  .contact::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:linear-gradient(#21f367,#83d8ff);
    border-radius: 50%;
    transform:translate(420px,150px);
    overflow: auto;
  
  }
.contact-shadow{
     position:absolute;
     width:70px;
     height:70px;
     border-radius: 50%;
     background:linear-gradient(45deg,rgb(235, 133, 255),rgb(173, 211, 255));
     z-index:49;
     transform:translate(180px,-50px);

  }
.contact-shadow::after{
    content:'';
     position:absolute;
     width:40px;
     height:40px;
     border-radius: 50%;
     background:linear-gradient(30deg,rgb(179, 213, 253),rgb(160, 255, 160));
     transform:translate(-300px,-40px);

  }
.contact-shadow::before{
    content:'';
     position:absolute;
     width:45px;
     height:45px;
     border-radius: 50%;
     background:linear-gradient(30deg,rgb(116, 77, 255),rgb(255, 162, 100));
     transform:translate(-220px,160px);

  }

  
.contact-container{
    position:relative;
    z-index:50;
    width:70%;
    padding:50px;
    background: rgba(255,255,255,0.1);
    box-shadow:0 25px 45px rgba(0,0,0,0.1);
    border:1px solid rgba(255,255,255,0.25);
    border-right:1px solid rgba(255,255,255,0.1);
    border-bottom:1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter:blur(25px);
  }
  .contact-container::after{
    content:'';
    position:absolute;
    top:0;
    right:-60%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.05);
    pointer-events:none;
    transform: skewX(-20deg);
    box-shadow: 0 0 25px rgba(255,255,255,0.05);
      
  }
  .contact h2{
    width:100%;
    text-align:center;
    color:#fff;
    font-size: 25px;
    letter-spacing: 1px;
    word-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 25px;
  }
  .contact .contact-row{
    position:relative;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    grid-column-gap:50px;
  }
  .contact .contact-row{
    position:relative;
    width:100%;
    padding:0 10px;
    margin:20px 0;
  }
  .contact .inputBox{
    position:relative;
    width:100%;
    height:40px;
    background: none;
  
  }
  .contact .inputBox textarea,
  .contact .inputBox input{
    position:absolute;
    width:100%;
    height:100%;
    box-shadow: none;
    border:none;
    outline:none;
    font-size:15px;
    padding:0 10px;
    z-index:1;
    color:#fff;
    background: none;
  }
  .inputBox.textarea{
    width:48%;
    margin-top:10px
  }
  .contact .inputBox textarea{
    width:100%;
  }
  .contact .inputBox .text{
    position:absolute;
    top:0;
    left:0;
    line-height:40px;
    font-size:16px;
    padding:0 10px;
    display:block;
    transition: 0.5s;
    pointer-events: none;
  
  }
  
  .contact .inputBox .line{
    position:absolute;
    bottom:5px;
    display:block;
    width:100%;
    height:2px;
    background:#fff;
    pointer-events: none;
    transition: .8s;
  }
  .inputBox.textarea .line{
    bottom:-5px;
  }
  .contact .send input{
     padding:8px 25px;
     text-transform: uppercase;
     font-weight: 600;
     color:var();
     font-size:15px;
  }






nav a .fas,
nav a .far{
    display: none;
}
@media only screen and (max-width: 990px) {
    nav span{
        display:none;
    }
    nav ul{
        margin-right:-200px;
    }
    nav a .fas,
    nav a .far{
    display: block;
    font-size:16px;
    margin:auto;
    margin-top:-6px;
    opacity:0;
    animation: icon 0.5s forwards ease var(--j);
    
}
@keyframes icon {
    from{
        opacity:0;
        transform: translateY(0);
    }
    to{
        opacity:1;
        transform: translateY(0);
    }
}
    nav a{
        margin:0 40px;
    }
    .inputBox.textarea{
        width:100%;
      }
}




  

  

@media only screen and (max-width: 720px) {
    #myBtn {
        
        position: fixed; 
        bottom: 20px; 
        right: 30px; 
        z-index: 99; 
        border: none; 
        outline: none; 
        cursor: pointer; 
        padding: 5px; 
        border-radius:50%;
        width:40px;
        height:40px;
        font-size: 12px; 
        font-weight: 900;
        color:white;
        background-color: rgb(68, 155, 255);
            
  }
  nav.stiky{
      display:none;
  }
  .nav-progressbar{
      display: none;
  }
 
}