*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}
body{
    background: #0c1022;
    color: #fff;
}
.header{
    position: fixed;
    top: o;
    left: 0;
    width: 100%;
    padding: 20px 10px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.logo{
    font-size: 25px;
    color: #16cae2;
    text-decoration: none;
    font-weight: 600;
    pointer-events: none;
    padding: 0 10%;
    opacity: 0;
    animation: slidetop 1s ease forwards;
}
.nav-bar a{
    display: inline-block;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    opacity: 0;
    animation: slidetop .5s ease forwards;
    animation-delay: calc(.2s * var(--i));



}
.nav-bar .active,
.nav-bar a:hover{
    background: linear-gradient(45deg, #f06, #3cf);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;

}
.home{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}
.home-content{
    max-width: 500px;
}
.home-content h1{
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    animation: slideright 1s ease forwards;
    animation-delay: .7s;

     
}.home-content h3{
    font-size: 32px;
    font-weight: 700;
    animation: slideleft 1s ease forwards;
    animation-delay: .1s;
}
.home-content p{
    font-size: 16px;
    margin: 20px 0 40px;
    opacity: 0;
    animation: slideleft 1s ease forwards;
    animation-delay: 1.3s;

}
.btn{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 48px;
    border-radius: 40px;
    font-size: 19px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    opacity: 0;
    animation: slidetop 1s ease forwards;
    animation-delay: 1.8s;

}
.btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: o;
    inset: 0;
    background: linear-gradient(45deg, #f06, #3cf, #f06);
    background-size: 200%;
    background-position: 0 0;
    z-index: -1;
    border-radius: 40px;
    transition: .5s ease;
    filter: blur(56px);
    


}
.btn:hover::before{
    background: 100% 0;
}
.btn::after{
    content: '';
    position: absolute;
    top: 0;
    left: o;
    inset: 0;
    background: linear-gradient(45deg, #f06, #3cf, #f06);
    background-position: 0 0;
    background-size: 200%;
    z-index: -1;
    border-radius: 40px; 
    transition: .5s ease;
    
}
.btn:hover::after{
    background-position: 100% 0;
}
.home-sci a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f06, #3cf);
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    margin: 15px 0;
    z-index: 1;

}
.home-sci a:nth-child(1){
    opacity: 0;
    animation: slidebottom 1s ease forwards;
    animation-delay: 2.1s;
}
.home-sci a:nth-child(2){
    opacity: 0;
    animation: slideright 1s ease forwards;
    animation-delay: 2.1s;
}
.home-sci a:nth-child(3){
    opacity: 0;
    animation: slidetop 1s ease forwards;
    animation-delay: 2.1s;
}


.home-sci a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f06, #3cf);
    border-radius: 50%;
    z-index: -1;
    transition: .5s ease;
}
.home-sci a:hover::before{
    filter: blur(5px);
}
.home-sci a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0c1022;
    border-radius: 50%;
    transform: scale(.88);
    z-index: -1;
    transition: .5s ease;
}
.home-sci a:hover::after{
    transform: scale(0);

}
.home-img{
    width: 410px;
    height: 410px;
    opacity: 0;
    animation: zoomin 1s ease forwards, floatimage 4s ease-in-out infinite;
    animation-delay: 2.1s,3.1s;
}
.home-img .glowing-circle{
    width: 100%;
    height: 100%;
    background: linear-gradient(#f06, #3cf);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-img .glowing-circle::after{
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: #0c1022;
    border-radius: 50%;
}
.glowing-circle .span {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient( #f06, #3cf);
    border-radius: 100%;
}
.glowing-circle .image{
    position: relative;
    width: 380px;
    height: 380px;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden;
}
.image img{
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 350px;
    object-fit: cover;
}
@keyframes slidetop{
    0%{
        opacity: 0;
        transform: translateY(100px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideright{
    0%{
        opacity: 0;
        transform: translateX(-100px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideleft{
    0%{
        opacity: 0;
        transform: translateX(100px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slidebottom{
    0%{
        opacity: 0;
        transform: translateY(-100px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes zoomin{
    0%{
        opacity: 0;
        transform: scale(0);
    }
    100%{
        opacity: 1;
        transform: (1);
    }
}
@keyframes floatimage{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-24px);
    }
    100%{
        transform: translateY(0);
    }
}
.about{
    width: 100%;
    padding: 78px 0;

}
.about img{
    height: auto;
    width: 420px;
    border-radius: 4px;
    opacity: 0;
    animation: zoomin 1s ease forwards;
    animation-delay: 1.3s;

}
.about-text{
    width: 550px;

}
.main{
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.about-text h1{
    color: #fff;
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideright 1s ease forwards;
    animation-delay: .1s;

}
.about-text h5{
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideleft 1s ease forwards;
    animation-delay: .2s;

}
.about-text p{
    color: #fff;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideright 1s ease forwards;
    animation-delay: .3s;

}
button{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 48px;
    border-radius: 40px;
    font-size: 19px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    opacity: 0;
    animation: slidetop 1s ease forwards;
    animation-delay: 1.8s;

}
button:before{
    content: '';
    position: absolute;
    top: 0;
    left: o;
    inset: 0;
    background: linear-gradient(45deg, #f06, #3cf, #f06);
    background-size: 200%;
    background-position: 0 0;
    z-index: -1;
    border-radius: 40px;
    transition: .5s ease;
    filter: blur(56px);
    


}
button:hover::before{
    background: 100% 0;
}
button::after{
    content: '';
    position: absolute;
    top: 0;
    left: o;
    inset: 0;
    background: linear-gradient(45deg, #f06, #3cf, #f06);
    background-position: 0 0;
    background-size: 200%;
    z-index: -1;
    border-radius: 40px; 
    transition: .5s ease;
    
}
button:hover::after{
    background-position: 100% 0;
}
h1{
    text-align: center;
    opacity: 0;
    animation: slideright 1s ease forwards;
    animation-delay: 1.8s;

}
h3{
    margin: 5px;
}
.skills{
    width: 500px;
    margin: 60px auto ;
    color: #fff;
    padding: 20px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.25);

}
.skills li{
    margin: 20px 0;
    padding: 10px;
    list-style: none;
  
}
.bar{
    background: #353b48;
    display: block;
    height: 20px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.bar:hover{
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);

}
.bar span{
    height: 20px;
    float: left;
    background: linear-gradient(45deg, #f06, #3cf);

}
.html{
    width: 90%;
    animation: html 3s;
    text-align: center;
}
.css{
    width: 70%;
    animation: css 2s;
    text-align: center;

}
.php{
    width: 20%;
    animation: php .2s;

}
.javascript{
    width: 40%;
    animation: javascript .3s;
    text-align: center;
}
@keyframes html{
    0%{
        width: 0%;
    }
    100%{
        width: 90%;

    }
}
@keyframes css{
    0%{
        width: 0%;
    }
    100%{
        width: 70%;

    }
}
@keyframes php{
    0%{
        width: 0%;
    }
    100%{
        width: 20%;

    }
}
@keyframes javascript{
    0%{
        width: 0%;
    }
    100%{
        width: 40%;

    }
}
/*/////////////////////contact us section/////////////*/

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
  }
  
  h1 {
    text-align: center;
  }
  
  .contact-info p {
    margin-bottom: 10px;
    padding-bottom: 20px;
    opacity: 0;
    animation: slideleft 1s ease forwards;
    animation-delay: .3s;



  }
  
  .contact-info{
    width: 500px;
    margin: 0 auto;
  }
  .form-group{
    opacity: 0;
    animation: slideright 1s ease forwards;
    animation-delay: .3s;

  }
  

  
  input,
  textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    opacity: 0;
    animation: slidetop 1s ease forwards;
    animation-delay: .8s;

  }
  
  textarea {
    height: 100px;
  }
  
  button {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
  }
  @media screen and(max-width:600px)and (min-width:370px) {

    
  }