body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
/*---------------Header CSS-----------*/

#header{
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(img/pexels-pixabay-276514.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.user-box{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.user-box img{
    border-radius: 50%;
    border: 2px solid #060076;
}
.user-box h1{
    color: white;
    font-weight: bold;
    margin: 10px;
}
.user-box h4{
    color: rgba(208, 255, 0, 0.979);

}
.scroll-btn{
    bottom: 30px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    border: 2px solid #fff;
    padding: 20px 20px 40px;
    border-radius: 30px;

}
.scroll-bar span{
    border: 2px solid #fff;
    font-size: 10px;
    border-radius: 30px;
}
.scroll-bar{
    animation: mover 1s infinite alternate;
}

@keyframes mover{
    0%{transform: translateY(0);}
    100%{transform: translateY(10px);}
}

/*---------------user info-----------*/


.about{
    padding: 100px;
    padding-bottom: 50px;
}
.profile-img{
    height: 500px;
}

.navber{
    height: 50px;
    width: 100%;
    background: #000;
}
.nab-logo{
    height: fit-content;
    width: 50px;
    padding-left: 10px;
    cursor: pointer;
}
.nav{
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
}
.nav li{
    display: inline-block;
    margin: 15px;
    padding-bottom: 10px;
}


.nav_links li a{
    text-decoration: none;
    color: #fff;
    padding: 5px 0px;
    position: relative;

}
.nav_links li a::after{
    content: ''; 
    background: #ff3d00;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.5s;
}
.nav_links li a:hover::after{
    width: 100%;  
}





.skills-bar{
    margin-bottom: 60px;
    font-weight: 600;
}
.progress{
    border-radius: 16px;
    margin-bottom: 10px;
}
.progress-bar{
    border-radius: 16px;
    background: #000 !important;

}

/*------------resume------------*/
.resume{
    padding-top: 50px;
    padding-bottom: 30px;
    background: #f9f9f9;
}
.resume h3{
    margin-bottom: 50px;
}
.timeline{
    list-style-type: none;
    position: relative;
} 
.timeline::before{
    content: '';
    background: #555;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 1;
} 
.timeline li{
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    background: #fff;

}
.timeline li h4{
    background: #000;
    color: #fff;
    padding: 5px 0 5px 20px;
    font-style: 15px;
}
.timeline li::before{
    content: '';
    background: #fff;
    position: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #000;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 1;
}


/*----------service-------------*/

.service{
    padding-bottom: 50px;
    padding-top: 50px;
}
.service h1{
    margin-bottom: 15px;
}
.services-box{
    background: #f9f9f9;
    padding: 10px;
    margin-top: 20px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}
.services-box:hover{
    background: #000;
    color: #fff;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 50px;
    transition: 1s;
}


/* contact */

.Contact{
    padding-top: 50px;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(img/pexels-pixabay-276514.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}
.contact h1{
    color: #f9f9f9;
}
.contact p{
    color: #f9f9f9;
}