
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playwrite+BE+VLG:wght@100..400&family=Poppins:wght@300;400;600;900&family=Roboto:ital,wght@0,400;0,900;1,100;1,400;1,500&display=swap');


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background-color: #F7F7F7;
}
a{
    text-decoration: none;
}
p{
    text-indent: 20px;
}
a:visited{
    color: #149ddd;
}
.project{
    display: flex;
    
}
.sideNav{
    display: flex;
    position: fixed;
    flex-direction: column;
    width: 280px;
    height: 640px;
    background-color: #040b14;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    
}
.profilePic{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:8%;
}
.profilePic img{
    background-color: #6c757d;
    border-radius: 50%;
    box-shadow: 1px 1px 15px #6c757d;
    padding: 5px;
    margin: 2%;
}
.profilePic span{
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
} 
.media ul{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    margin-top: 3%;
}
.media ul li{
    list-style: none;
}
.media ul li a{
    font-size: 18px;
    padding: 5px 8px;
    color: #F7F7F7;
    margin-left: 5px;
    background-color: #6c757d;
    border-radius: 50%;
}
.media ul li a:hover{
    background-color: #149ddd;
    box-shadow: 1px 1px 15px #149ddd;
}
.menu{
    width: 100%;
    height: 100%;
    margin: 5%;
}

.menu .menuList #active{
    color: #149ddd;
}
.menu .menuList{
    font-size: 20px;
    padding: 15px;
    cursor: pointer;
    /* border: 1px solid red; */
    width: 100%;
}

.menu .menuList span{
    width: 100%;
    margin-left: 2%;
    font-size: 18px;
}
.menu .menuList a{
    color: #6c757d;
}
.menu .menuList a:hover{
    color: #149ddd;
}
.menu .menuList span:hover{
    color: #ffffff;

}
.design{
    margin: 5%;
    font-size: 12px;
}
.design a{
    font-size: 15px;
    margin-left: 2%;
}
.design a:hover{
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;   
}

.btn{
    position: absolute;
    top: 16px;
    right: 16px;
    width: 25px;
    height: 21px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;

    
}
.btn .bar{
    width: 100%;
    height: 3px;
    background-color: #ffffff
}

.homepage{
    background : url(./pexels-goumbik-574069.jpg);
    background-position: center;
    background-size: cover;
    height: 100vh;
    position: relative;
    z-index: -1;
    overflow: hidden;
}

.homepage h3{
    color: #fff;
    font-size: 32px;
    position: absolute;
    top: 40%;
    left: 33%;
    
}
.left_content{
    overflow-x:hidden
}
.homepage h3 span{
    font-size: 52px;
    text-shadow: 5px 5px 10px #149ddd;
}

.aboutpage{
    margin-left: 25%; /* Please do this property to all (And chance in media quary also*/
    z-index: -1;
}
.aboutpage .about{
    margin-top: 5%;
}
.aboutpage .about h3{
    font-size: 32px; /* Header text to */
    width:100px;
    font-family:sans-serif;
    border-bottom: 2px solid #149ddd;
    margin-bottom: 20px;
}

.aboutpage .about p{
    padding: 25px 10px;
    text-align: justify;
}
.aboutpage .about_bio{
    display: flex;
}

.about_bio .about_profile img{
    border-radius: 5px;
    
}

.about_bio .about_biodata{
    display: flex;
    width: 100%;
    padding: 5%;
}
.about_biodata .section1 .data{
    display: flex;
    padding: 15px;
    font-size: 18px;
}
.about_biodata .section2 .data{
    display: flex;
    padding: 15px;
    font-size: 18px;
}
.about_biodata .section1 .data span{
    font-weight: bold;
}

.about_biodata .section2 .data span{
    font-weight: bold;
}

.skillpage{
    margin-left: 25%; /* Please do this property to all (And chance in media quary also*/
    z-index: -1;
}
.skillpage .skill{
    margin-top: 5%;
}
.skillpage .skill h3{
    font-size: 32px; /* Header text to */
    width:70px;
    font-family:sans-serif;
    border-bottom: 2px solid #149ddd;
    margin-bottom: 20px;
}
.barframe{
    padding: 10%;
    display: flex;
    justify-content: space-between;
    width: 950px;
}
.barframe .bar .line{
    height: 25px;
    margin: 0 auto 10px;
    min-width: 350px;;
    line-height: 25px;
    font-size: 15px;
    color: #fff;
    padding: 0 0 0 10px;
    position: relative;
    
}
.line::before{
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    height: 20px;
    top: 0;
    z-index: -2;
    background-color: #6c757d;
    border-radius: 10px;
}
.line::after{
    content: '';
    background-color: #149ddd;
    height: 20px;
    transition: 0.8s;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    border-radius: 10px;

}

.line1::after{
    width: 99%;
    animation: line1 1 4s;
}

.line2::after{
    width: 90%;
    animation: line2 1 4s;
}
.line3::after{
    width: 83%;
    animation: line3 1 4s;
}
.line4::after{
    width: 70%;
    animation: line4 1 4s;
}

@keyframes line1{
    0%{
        width: 0;
    }
    100%{
        width: 99%;
    }
}
@keyframes line2{
    0%{
        width: 0;
    }
    100%{
        width: 90%;
    }

}
@keyframes line3{
    0%{
        width: 0;
    }
    100%{
        width: 83%;
    }

}
@keyframes line4{
    0%{
        width: 0;
    }
    100%{
        width: 70%;
    }

}


.resumepage{
    margin-left: 25%; /* Please do this property to all (And chance in media quary also*/
    z-index: -1;
}
.resumepage .resume{
    margin-top: 5%;
}
.resumepage .resume h3{
    font-size: 32px; /* Header text to */
    width:120px;
    font-family:sans-serif;
    border-bottom: 2px solid #149ddd;
    margin-bottom: 20px;
    
}
.resume_sumary{
    display: flex;
    
}
.sumary_item1,
.sumary_item2{
    width: 550px;
    margin-right: 2%;
}
.sumary_item1 .sumary h3,
.sumary_item2 .sumary h3{
    font-size: 32px; /* Header text to */
    width:120px;
    font-family:sans-serif;
    border-bottom: 2px solid #149ddd;
    margin-bottom: 20px;
    margin-top: 20px;
    
}
.sumary_details span{
    font-size: 24px;
    
}
.sumary_details p{
    font-size: 18px;
}

.sumary_item1 .header,
.sumary_item2 .header{
    font-size: 20px;
    color: #6c757d;
    text-transform: uppercase;
}
.sumary_item1 p,
.sumary_item2 p{
    font-size: 18px;
    margin: 10px 0
}

.sumary_details ul{
    margin-left: 30px;
}

.sumary_details ul li{
    padding: 5px;
}

.education1 .education{
    display: block;
    margin-top: 10px;
}

.sumary_details ul{
    margin-left: 30px;
}

.sumary_details ul li{
    padding: 5px;
}

.projectpage{
    margin-left: 25%; /* Please do this property to all (And chance in media quary also*/
    z-index: -1; 
}
.projectpage .project{
    margin-top: 5%;
}
.projectpage .project h3{
    font-size: 32px; /* Header text to */
    width:100px;
    font-family:sans-serif;
    border-bottom: 2px solid #149ddd;
    margin-bottom: 20px;
    
}
.projectpage .project a img{
    width: 350px;
    height: 200px;
}
.projectpage .project a img:hover{
    scale: 1.05;
    transition: .5s ease-in;
}
.projectpage .projectsection{
    width: 900px;
    display: flex;
    gap: 100px;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}
footer{
    margin-top: 5%;
    margin-left: 20%; /* Please do this property to all (And chance in media quary also*/
    z-index: -1;
    background-color: #6c757d2d;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}















@media (max-width:968px){
    .sideNav{
        display: none;
    }
    .sideNav.active{
        display: flex;
        
    }

    .btn{
        display: flex;
    }

    .homepage h3{
        left: 5%;
    }
    
    .aboutpage,.skillpage,.resumepage,.projectpage{
        margin: 20px; /* Please do this property to all*/
    }

    .aboutpage .about_bio{
        flex-direction: column;
    }

    .about_bio .about_profile img{
        margin-left: 12%;
    }
    .about_bio .about_biodata{
       flex-direction: column;
    }
    .barframe{
        flex-direction: column;
        width: 200px;
       
    }
    .resume_sumary{
        flex-direction: column;
    }

    .sumary_item1,
    .sumary_item2{
        width: 450px;
    }
    .projectpage .project a img{
        width: 450px;
        height: 280px;
    }
    
    .projectpage .projectsection{
        flex-direction: column;
    }
    .projectpage .project a img:hover{
        scale: 1.01;
        justify-content:baseline;
    }



}