@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&family=Sulphur+Point:wght@700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --border-radius:3px;
    --main-color:#191919;
    --grey-color:#242424;
    --blue:#0C5FFF;
    --white:#eeeeee;
    --linear-color:linear-gradient(90deg, rgba(34,109,254,1) 14%, rgba(43,158,250,1) 43%, rgba(50,180,247,1) 60%, rgba(60,178,255,0.9444152661064426) 98%);
    --box-shadow: 4px 9px 17px -1px rgba(0,0,0,0.89);
    --second-font:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --div-shadow:7px 11px 12px -1px rgba(0,0,0,0.7);
    
}
@font-face{
    font-family: "Bruno Ace";
    src: url("../bruno-ace-cufonfonts/BrunoAce-Regular.ttf");
}
html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body{
    background: var(--main-color);
    font-family:'Inter', sans-serif;
    overflow-x: hidden;
    transition: background .5s;

}
a{
    text-decoration: none;
}

/*small*/
@media (min-width:768px) {
    .container{
        width: 750px;
    }
    
}
/*medium*/
@media (min-width:992px) {
    .container{
        width: 970px;
    }
    
}
/*large*/
@media (min-width:1200px) {
    .container{
        width: 1170px;
    }
}
.load{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    z-index: 3000;
}
.load .loader{
    width: 60px;
    height:60px;
    border: 5px solid var(--blue);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    animation: pulse 1s linear infinite;
}
.load .loader::before{
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 5px solid var(--blue);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: scaleUp 1s linear infinite;
}
@keyframes scaleUp {
    0% { transform: translate(-50%, -50%) scale(0) }
    60% , 100% { transform: translate(-50%, -50%)  scale(1)}
  }
  @keyframes pulse {
    0% , 60% , 100%{ transform:  scale(1) }
    80% { transform:  scale(1.2)}
  }
.container{
    margin-right: auto;
    margin-left: 25px;
    padding-right: 15px;
    padding-left: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
}

header{
    position: absolute;
    height: 55px;
    width: 100%;
    top: 15px;
    z-index: 999; 
    opacity: 0;   
}
header.start{
    animation: toBottom 0.8s ease 1.5s forwards;
}
@keyframes toBottom{
    to{
        opacity: 1;
    }
}

header .container{
    display: flex;
    align-items: center;
}
header .logo{
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}
header .logo .modeBtn{
    color: var(--white);
    font-size: 19px;
    cursor: pointer;
    margin-top: 15px;
    position: relative;
    display: flex;
    align-items: center
}
header .logo .modeBtn i{
  position: absolute;
}
header .logo .modeBtn i:nth-child(2){
    display: none;
    font-size: 22px;
}
header .logo img{
    width: 50px;
    position: relative;
    cursor: pointer;
}

header .menu{
    display: flex;
    gap: 80px;
    height: 40px;
    right: 85px;
    position: absolute;
    justify-content: center;
    align-items: center;
    padding: 15px 10px 15px 20px;
    z-index: 999;
    margin-top: 10px;

}
header .menu a{
 color: var(--white);
 font-size: 15px;
 letter-spacing: 1px;
 transition: 0.3s;

}




header .menu a:hover,a.active{
    background: var(--linear-color);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
  }
.home{
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 100vh;
      border-bottom: 2px solid rgb(20, 20, 20);
      overflow: hidden;
      
    
      
  }
@media (max-height:510px){
    .home{
        height: 200vh ;
    }

}
@media (min-height:350px) and (max-height:520px){
    .home{
        height: 150vh ;
    }
    
}

@media (max-width:850px){
    header .menu{
        position: fixed;
        height:200% ;
        background:var(--main-color);
        right: 0;
        width: 100vw;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 60px;
        padding-top: 100px;
        transform: translateX(100%);
        z-index: 4;
        transition: 0.5s;
        
       
    }
    header .menu a{
       font-size: 20px;
       display: block;
       position: relative;
       top: 15%;
    }
}
#toggle {
    display: none;
  }
.hamburger {
    position: fixed;
    right: 10%;
    margin-left: -2em;
    width: 36px;
    z-index: 5;
    top: 25px;
    cursor: pointer;
    display: none;
  }
  .hamburger div {
    position: relative;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: var(--white);
    margin-top: 6.5px;
    transition: all 0.3s ease-in-out;
  }
  @media (max-width:850px){
      .hamburger{
          display: block;
      }
  }
  #toggle:checked + .hamburger .top-bun {
    transform: rotate(-47deg);
    margin-top: 30px;
  }
  #toggle:checked + .hamburger .bottom-bun {
    opacity: 0;
    transform: rotate(47deg);
  }
  #toggle:checked + .hamburger .meat {
    transform: rotate(47deg);
    margin-top: -4px;
  }
  
  #toggle:checked + .hamburger + .menu {
    transform: translateX(0);
  }


.home{
    position: relative;
}

.home .welcome-text{
    position: absolute;
    top: 180px;
    margin-bottom: 30px;
    transform: translateX(-100%);
    opacity: 0;
}
.home .welcome-text h2{
    font-size: 85px;
    line-height: 90px;
    color: var(--white);
    font-weight: 100;
    letter-spacing: 2px;
   
}
 

.welcome-text.start{
    animation:toright .5s ease-out forwards ;
    animation-delay: 0.4s;
  
}
@keyframes toright{
    to{
      transform: translateX(0%);
      opacity: 1;  
    }
}

@media (min-width:1075px){
    .container{
        padding-left: 30px;
    }
}
@media (max-width:440px){
    .container{
        margin-left: 5px;
    }
    .home .welcome-text{
        margin-left: 3px;
    }
    .home .welcome-text h2{
        font-size: 35px;
        line-height: 55px;
    }
    .home .container .welcome-text  .home-btn{
        padding: 12px;
        font-size: 10px;
        margin-top: 18px;
    }
    header .logo img{
        width: 45px;
    }
    
   
}
@media (max-width:338px){
    .home .welcome-text{
        top: 100px;
    }
    .home .welcome-text h2{
        font-size: 27px;
        line-height: 55px;
    }
    .home .container .welcome-text  .home-btn{
        padding: 10px;
        font-size: 8px;
        margin-top: 18px;
    }
}
@media (min-width:441px) and (max-width:629px){
    .home .welcome-text h2{
        font-size: 40px;
        line-height: 60px;
    }
    .home .container .welcome-text  .home-btn{
        padding: 14px;
        font-size: 10px;
    }
}
@media (min-width:630px) and (max-width:1100px){
    .home .welcome-text h2{
        font-size: 45px;
        line-height: 60px;
    }
}
@media (max-width:629px){
    .home .welcome-text{
        top: 140px;
    }
    
}


.home .welcome-text h2 span{
    background: var(--linear-color);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
}
.home .welcome-text .home-btn{
    background:transparent;
    border: 2px solid ;
    border-image-slice: 1;
    border-image-source: var(--linear-color);
    display: inline-block;
    padding: 17px;
    color: var(--white);
    font-size: 13px;
    margin-top: 25px;
    font-family:var(--second-font);
    letter-spacing: 1px;
    transition:all 0.2s;

}
.home .welcome-text .home-btn:hover{
    color: white;
    background: var(--linear-color);
    box-shadow:var(--div-shadow);
-webkit-box-shadow: var(--div-shadow);
-moz-box-shadow:var(--div-shadow);
    
}
.home .container img{
    position: absolute;
    z-index: -1;
    right:-120px ;
    min-width: 61%;
    height: 100vh;
    opacity: 10%;
    transform: translateX(100%);
   
}
@media (min-height:260px) and (max-height:520px){
   
    .home .container img{
        height: 200vh;
    }
}
.home .container img.start{
    animation:toleft .6s ease forwards ;
    animation-delay: 0.9s;
}
@media (min-width:550px){
    .home .container img{
        opacity: 25%;
    }
}
@media (max-width:400px){
    .home .container img.start{
        animation-delay: 1.7s;
    }
    header.start{
        animation-delay: 1.2s;
    }

}

@keyframes toleft{
    to{
      transform: translateX(0%); 
    }
}
.home .contact{
    margin-top: 50px;
    margin-left: 3px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
@media (min-width:1100px){
    .home .welcome-text,
    header .container .logo{
        margin-left: 70px;
    }
}
@media (max-width:460px){
    .home .welcome-text{
        top:130px;
    }
    .home .contact{
        flex-direction: column;
        gap: 30px;
    }
    .home .contact .gmail a , .home .contact .phone a {
       font-size: 15px;
    }
    .home .container .contact i{
        font-size: 20px;
    }
}
.home .contact a{
    font-family:var(--second-font);
    color: var(--white);
    letter-spacing: 1px;
    font-size: 16px;
}
.home .contact i{
    margin-right: 5px;
    font-size: 22px;
    color:var(--blue);
}
/**.home .contact .box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100px;
    background: #232324;
    padding: 10px;
    gap: 20px;
    border-radius: 5px;
    box-shadow: var(--div-shadow);
    cursor: pointer;
}
.home .contact .box a{
   font-size: 10px;
}
.home .contact .box i{
    font-size: 30px;
 }**/
.about{
    position: relative;
    margin-top: 40px;
}
.left-section-title{
    position: absolute;
    left: 0;
    width: 120px;
    background: var(--linear-color);
    padding: 15px 20px;
    color: white;
    font-weight: 100;
    font-size: 12px;
    letter-spacing: 2px;
    font-family:'Bruno Ace', sans-serif;
   
}
.right-section-title{
    position: absolute;
    text-align: center;
    right: 0;
    width: 120px;
    background: var(--linear-color);
    padding: 15px ;
    color: white;
    font-weight: 100;
    font-size: 12px;
    letter-spacing: 1px;
    font-family:'Bruno Ace', sans-serif;
    
    
  
}
.about .container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
   
}
.about .container .my-info{
    position: relative;
    width: 700px;
    margin-top: 150px;
    padding: 30px 35px;
    border: 5px solid;
    border-image-slice: 1;
    border-image-source: var(--linear-color);
    box-shadow: var(--div-shadow);
    transition: 0.3s;
    
}
.about .container .my-info:hover{
    transform: translatey(-6px);
}
.about .my-info .me{
    position: relative;
    text-align: center;
    width: 100%;
}
.about .my-info .me img{
    border-radius: 50%;
    width: 100px;
    transition: 0.2s;
   
}
.about .my-info .me img:hover{
    box-shadow: var(--div-shadow);
}

.about p{
    font-family: var(--second-font);
    color: var(--white);
}
@media (max-width:505px){
    .about .container .my-info .exp .skills{
        width: 100%;
    }
    .about .container .my-info .exp .skills p{
        font-size: 10px;
        padding: 2px 1px;
        width: 58px;
    }
}
.about .my-info .me .name,.age{
    font-size: 14px;
    margin-top: 10px;
    
}
.about .my-info .me .career{
    margin-top: 15px;
    font-size: 12px;
}
.about .my-info .exp{
    text-align: center;
    position: relative;
    width: 100%;
 
}
.about .my-info .exp .degree{
  background:var(--blue);
  padding: 3px 8px;
  font-size: 14px;
  font-family: var(--second-font);
  color: white;
  position: relative;
  display: inline-block;
  margin-inline: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 3px;
}
.about .my-info .exp .degree i{
    font-size: 17px;
    margin-right: 5px;
}
.about .my-info .exp .cv i{
    font-size: 15px;
    margin-right: 5px;
}
.about .my-info .exp .cv{
    background:var(--blue);
    padding: 3px 8px;
    font-size: 14px;
    font-family: var(--second-font);
    color: white;
    position: relative;
    display: inline-block;
    margin-top: 15px;
    margin-right: 5px;
    width: 100px;
    border-radius: 3px;
}
.about .my-info .exp .skills{
    display: flex;
    justify-content: center;
    flex-wrap:wrap ;
    gap: 20px;
    margin: 20px auto;
    width: 70%;
    
}
.about .my-info .exp .skills p{
    background: var(--blue);
    font-size: 14px;
    padding: 2px 8px;
    width: fit-content;
    border-radius: 2px;
    color: white;
}
.projects{
    margin-top: 80px;
    display: flex;

}
.projects .container{
    position:relative;
    display: grid;
    grid-template-columns:repeat(auto-fill,minmax(350px,1fr));
    gap: 50px;
    margin: 150px auto 0 auto;
  
}
.projects .container .box{
    box-shadow: var(--div-shadow);
    transition: 0.3s;
    text-align: center;
    background: var(--grey-color);
    padding-bottom: 10px;
    border-radius: 8px;
    padding: 15px; 
}
.projects .container .box.light{
    background: rgb(240, 240, 240);
    box-shadow: 4px 6px 9px -3px rgba(110,110,110,0.75);
    -webkit-box-shadow: 4px 6px 9px -3px rgba(110,110,110,0.75);
    -moz-box-shadow: 4px 6px 9px -3px rgba(110,110,110,0.75);
}
@media(max-width:450px){
    .projects .container .box{
        width: 90vw;
    }
}

.projects .container .box:hover{
    transform: translateY(-6px);
}

.projects .container .box img{
    width: 100%;
    max-width: 100%;
    min-height:200px;
    object-fit: cover;
   
}
.projects .container .box .tools{
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    position: relative;
    padding: 10px;
}
@media (min-width:992px){
    .projects .container .box img{
        height: 250px;
    }
}
.projects .container .box .tools p{
    font-family: var(--second-font);
    font-size: 15px;
    color: white;
    margin-right: 10px;
    padding: 4px 5px;
    background: var(--blue);
    border-radius: 3px;
   
}
.projects .container .box a{
    background: var(--linear-color);
    font-family: var(--second-font);
    width: 80%;
    padding: 10px 40px;
    display: inline-block;
    margin-top: 30px;
    color: white;
    position: relative;
    bottom: 15px;
    border-radius: 3px;
}


.projects .container .box a:hover{
  box-shadow:var(--div-shadow)
}
.services{
    margin-top: 100px;
    display: flex;
}
.services .left-section-title {
  display: flex;
  width: 140px;
 
}
.services .container{
    margin-top: 130px;
    display: flex;
    flex-direction:row;
    justify-content: center;
    margin-inline: auto;
    flex-wrap: wrap;
}
.services .container .service{
  text-align: center;
  color: var(--white);
  margin: 0 auto;

}
@media (max-width:400px){
    .services .container .service{
        width: 285px;
    }
    

}
.services .container .service img{
    width: 100%;
    max-width: 100%;
   
}

.services .container .service .text{
    text-align: center;
    padding: 0 10px;
    position: relative;
    bottom: 50px;
    margin-top: 45px;
}
.services .container .service .text p{
    font-family: var(--second-font);
    font-size: 15px;
    width: 359px;
    margin: 0 auto;
    line-height: 25px;
    
}
.services .container .service .text h2{
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-size: 30px;
}
@media (max-width:400px){
    .services .container .service .text h2{
        font-size: 24px;
    }
    .services .container .service .text p{
        width: 80%;
    }
}
.footer{
    margin-top: 70px;
    width: 100%;
    height: fit-content;
    background: transparent;
    text-align: center;
    padding-bottom: 5px;
}
.footer .logo{
  margin-top: 30px;
}
.footer .social{
    margin-top: 15px;
    position: relative;
    color: var(--white);
    text-align: center;
    left: 7px;
}
.footer .social a{
    margin-right: 15px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
    color: var(--white);
}
.footer .social a:hover{
    color: var(--blue);
}
.footer p{
    font-family: var(--second-font);
    color: var(--white);
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #474747a4;
    padding-block: 10px;
    margin-inline: auto;
    text-align: center;
}
.reveal{
    transform: translateX(-100%);
    opacity: 0;
    transition: 0.7s all ease;
}
.reveal.anim{
    transform: translateX(0%);
    opacity: 1;
}
.footer .footer-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.footer .footer-contact .cont{
    font-family: var(--second-font);
}
.footer .footer-contact .cont a{
    color: var(--white);
    font-size: 13px;
}

.footer .footer-contact .cont i{
    color: var(--blue);
}

   @keyframes fadeInUp {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  }
  100% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
  } 




