/* ------HOME style---------- */
.Home_contanier{
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.5)), url("/image/coverpage.jpg");
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.profile_img{
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 5px 0px #844124;

}
.profile_img:hover{
    transform: rotate3d(0,1,0, 360deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transition: 0.7s;
}
.profile_text{
    margin-top: 30px;
    color:rgb(246, 243, 243);
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
}
.profile_text:hover{
    transform: scale(1.2);
    transition: 0.1s;
    color: rgb(4, 4, 4);
    
}
.scroll-btn{
    bottom: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #fff;
    padding: 10px 10px 20px;
    border-radius: 30px;
}
.scroll-btn:hover{
    background-color: #ecd1a5;
    color: #000;
    transform: translateX(-50%) translateY(10px);
    transition: 0.3s;
}
.scroll-bar span{
    border: 2px solid #fff;
    font-size: 15px;
    border-radius: 30px;
}
.scroll-bar{
    animation: mover 1s infinite alternate;
}
@keyframes mover{
    0%{transform:translateY(0);}
    100%{transform:transtaleY(10px);}
}

/* ------ABOUT style---------- */
#About{
    background-color: #efeae3;
}
.nav_color{
    background-color:rgb(162, 138, 108);
}
.logo{
    width: 80px;
    height: 40px;
    margin-left: 10px;
    border: 5px solid rgb(132, 108, 78);
    box-shadow: 0 0 40px rgb(221, 127, 12);
}
.logo:hover{
    transform: rotate3d(0,0,1, 350deg);
    transition: 0.3s;
}
.About_img {
    height:600px
}

.About_img:hover{
    transform: scale(1.05);
    transition: 0.3s;
}
.nav-bar{
    top: 0;
    position: sticky;
    z-index: 2;
}
.navbarC{
    background-color: #070707;
}
.navbar-nav{
    float: right;
    padding: 10px;
    margin-left: 10px;
    text-align: right;
}
.nav-link{
    color: rgb(0, 0, 0);
    font-weight: bold;
}
.nav-link:hover{
    text-decoration: underline;
    font-weight: bold;
    color: rgb(217, 103, 46);
}
.about_box{
    margin-bottom: 180px;
}



/* ------skills style---------- */
.skill_heading:hover{
    color: rgb(217, 103, 46);
    text-decoration: underline;

}
.skills_box{
    margin-top: 60px;
    margin-bottom: 50px;
    padding: 30px;
    padding-top: 0px;
    background-color:rgb(233, 218, 194);
    width: 100%;
    box-shadow: #e3b77c 0px 0px 20px;
}
.skill_heading{
    font-size: 40px;
    font-weight: bold;
}
.each_skill_container{
    margin-top: 20px;
    padding: 40px;
}
.each_skill_container:hover{
    transform: scale(1.05);
    transition: 0.3s;
}
.skill_icon{
    width: 100px;
    height: 100px;
    background-color: #ecd1a5;
    align-items: center;
    box-shadow: #e3b77c 0px 0px 20px;
}




/* ------project style---------- */
.project_heading:hover{
    color: rgb(217, 103, 46);
    text-decoration: underline;

}
.project_boxs:hover{
    transform: scale(1.05);
    transition: 0.3s;

}
.project_box{
    margin-bottom: 100px;

}
.project_boxs{
    background-color: #ecd1a5;
   
    padding: 20px;
}
.card{
    height: 400px;
    overflow: hidden;
}



/* ------contact style---------- */
.contact_box{
    
    background-image:radial-gradient(circle, #efeae3, #ecd1a5);
    background-size: cover;
    padding: 50px 0;
    margin-top: 100px;
}
.contact_heading:hover{
    color: rgb(217, 103, 46);
    transform: scale(1.05);
    transition: 0.3s;
    text-decoration: underline;
}

/* ------FOOTER STYLE---------- */
.footer{
    background-color: #070707;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* ------SOCIAL ICON---------- */
.social_icon{
    top: 50%;
    transform: translateY(-50%);
    position: sticky;
    z-index: 1;
    width: 80px;
}
.social_icon ul{
    padding: initial;
}
.social_icon ul li{
    height: 40px;
    width: 40px;
    list-style-type: none;
    padding-left: 12px;
    padding-top:6px;
    margin-top: 5px;
    color: #fff;
    background-color: #ecd1a5;
}
.social_icon ul li:hover{
    width: 80px;
    padding-left: 30px;
    translate: 1s;
    background-color: #d9672e;
    transform: scale(1.1);
    transition: 0.3s;
}
.each_icon{
    width: 21px;
    height: 20px;
    font-size: 20px;
}
