*{
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;

}
body{
    background-image: linear-gradient(to right,rgb(2, 39, 18),rgb(0, 0, 0));
}
:root{
    --primary-color: rgb(10,10,10);
    --secondary-color:rgb(46,204,113);
    --text-color:white;
    --accent-color:rgba(46, 204, 113, 0.4);
}
.hero{
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: row;
}
@keyframes zoom{
    100%{
        transform: scale(1);
    }
}
.hero .leftside{
    width: 60%;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    padding: 50px;
    transform: scale(0);
    animation: zoom 2s ease forwards;
}
.hero .leftside h3{
    color: var(--secondary-color);
    font-size: 40px;
}
.hero .leftside .head1 button{
    width: 180px;
    height: 40px;
    background-color: var(--secondary-color);
    border: 2px solid;
    border-radius: 20px;
    color: black;
}
.hero .leftside .head1 button:hover{
    background-color: var(--text-color);
}
.hero .leftside .head1{
    display: flex;
    align-items: center;
    gap: 30px;
}
.hero .rightside{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
     transform: scale(0);
    animation: zoom 2s ease forwards;
}
.hero .rightside .myimage{
    display: flex;
    justify-content: center;
    width: 400px;
    height: 400px;
    border: 5px solid var(--secondary-color);
    border-radius: 50%;
    box-shadow: 5px 5px 30px 30px var(--accent-color);
    background-color: var(--secondary-color);
    object-fit: cover;
    overflow: hidden;
}
.hero .rightside .myimage .photo{
    width: 350px;
    height: 450px;
}
.bio{
    width: 100%;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bio h1{
    color: var(--secondary-color);
}
.bio .whole h2{
    color: var(--secondary-color);
}
.bio .bio1{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--secondary-color);
    padding-bottom: 20px;
}
.bio .whole{
    width: 100%;
    gap: 30px;
    padding: 30px;
    display: flex;
}
.bio .biocard{
    width: 50%;
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid var(--secondary-color);
    box-shadow: 2px 2px 5px 5px var(--accent-color);
    gap: 20px;
    padding: 20px;
    transition: all 1s ease-in-out;
    background-color: var(--primary-color);
}
.bio .biocard:hover{
    display: flex;;
    flex-grow: 1.0;
    scale: 1.05;
}
.biocard h4{
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    height: max-content;
}
.biocard1 h4{
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    height: max-content;
}
.bio .biocard1{
    width: 50%;
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid var(--secondary-color);
    box-shadow: 2px 2px 5px 5px var(--accent-color);
    gap: 20px;
    padding: 20px;
    transition: all 1s ease-in-out;
    background-color: var(--primary-color);
}
.bio .biocard1:hover{
    display: flex;
    flex-grow: 1.0;
    scale: 1.05;
}
.skill{
    width: 100%;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;  
    padding: 30px;
}
.skill .myskill{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.skill h1{
    color: var(--secondary-color);
}
.skill .container{
    width: 30%;
    padding:30px;
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 2px 2px 5px 5px var(--accent-color);
    transition: all 1s ease-in-out;
}
.skill .container:hover{
    flex-grow: 0.5;
    scale: 1; 
}
.skill .container h3{
    text-align: center;
    padding-bottom: 20px;
    color: var(--secondary-color);
}
.skill .container .technicalbar .progressbar{
    border-radius: 10px;
    position: relative;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
}
.skill .container .technicalbar .progressbar span{
    height: 100%;
    position: absolute;
    background-color: var(--secondary-color);
    border-radius: 10px; 
}
.progressbar.html span{
    width: 90%;
}
.progressbar.css span{
    width: 85%;
}
.progressbar.python span{
    width: 60%;
}
.progressbar.bootstrap span{
    width: 75%;
}
.progressbar span h6{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0%;
    margin: 0%;
}
.skill .whole{
    width: 100%;
    gap: 20px;
    display: flex;
}
.skill .cardcontainer{
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px;
    flex-wrap: wrap;
}
.skill .cardcontainer .card1 i{
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    background-color: white;    
    display: flex; 
    justify-content: center; 
    align-items: center;
}
.skill .cardcontainer .card1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    width: 22%;
    padding: 20px;
    gap: 20px;
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 2px 2px 5px 5px var(--accent-color);
    transition: all 1s ease-in-out;
}
.skill .cardcontainer .card1 h2{
    color: var(--secondary-color);
}
.skill .cardcontainer .card1:hover{
    flex-grow: 1.0;
    scale: 1.05;
}
.contact{
    width: 100%;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    gap: 30px;
}
.contact .info{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact .call  i{
    width: 50px;
    height: 50px; 
    border-radius: 50%; 
    background-color: white; 
    color: blue;
    display: flex; 
    justify-content: center; 
    align-items: center;
}
.contact .call  i:hover{
    background-color: var(--secondary-color);
}
.contact .socialaccounts i{
    width: 50px;
    height: 50px; 
    border-radius: 50%; 
    background-color: white; 
    color: blue;
    display: flex; 
    justify-content: center; 
    align-items: center;
}
.contact .socialaccounts i:hover{
    background-color: var(--secondary-color);
}
.contact .socialaccounts a{
    text-decoration: none;
}
.contact button a{
    text-decoration: none;
    color: var(--primary-color);
}
.contact .socialaccounts{
    display: flex;
    gap: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.contact .call a{
    text-decoration: none;
}

.contact .call{
    display: flex;
    gap: 30px;
    align-items: center;
}
.contact .full{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.contact button{
    width: 250px;
    height: 50px;
    border-radius: 20px;
    background-color: var(--text-color);
    color: var(--primary-color);
    font-size: large;
    border: 4px solid var(--secondary-color);
    box-shadow: 1px 1px 1px 1px var(--accent-color);
}
.contact button:hover{
    background-color: var(--secondary-color);
    border: 4px solid var(--primary-color);
}
footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: rgb(27, 50, 30);
    padding: 0%;
    margin:0;
}
footer .upfooter{
    width: 100%;
    display: flex;
    gap: 30px;
}
footer .downfooter{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .upfooter .footerbox{
    width: 25%;
    padding: 20px;
    gap: 10px;
    display: flex;
    flex-direction: column;
}
footer .upfooter .footerbox h4{
    color: var(--secondary-color);
}
footer .upfooter .footerbox a{
    text-decoration: none;
    color: var(--text-color);
}
footer .upfooter .footerbox a:hover{
    color: aqua;
}
footer button{
    width:170px;
    height: 30px;
    border-radius: 20px;
    background-color: black;
    border: 1px solid white;
}
footer .upfooter .footerbox .mycontact i{
    width: 40px;
    height: 40px; 
    border-radius: 50%; 
    background-color: white; 
    color: blue;
    display: flex; 
    justify-content: center; 
    align-items: center;
}
.project{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.project .myskills{
    display: flex;
    flex-direction: column;
    align-items: center;   
}


@media only screen and (max-width:780px){
    .hero{
        flex-direction: column;
        height: max-content;
    }
    .hero .leftside{
        width: 100%;
        padding: 20px;
        padding-top: 60px;
    }
    .hero .leftside .head1 button{
        width: 80px;
        height: 40px;
    }
    .hero .rightside{
        width: 100%;
    }
    .hero .rightside .myimage{
        width: 200px;
        height: 200px;
    }
    .hero .rightside .myimage .photo{
        width: 200px;
        height: 250px;
    }
    .bio .whole{
        flex-direction: column;
    }
    .bio .biocard{
        width: 100%;
        height: max-content;
    }
    .bio .biocard h4{
        font-size: 10px;
        gap: 5px;
    }
    .bio .biocard1 h4{
        font-size: 10px;
        gap: 5px;
    }
    .bio .biocard1{
        width: 100%;
        height: max-content;
    }
    .skill .container{
        width: 100%;
    }
    .skill .cardcontainer{
        flex-direction: column;
    }
    .skill .cardcontainer .card1{
        width: 100%;
    }
    footer .upfooter{
        flex-direction: column;
    }
    footer .upfooter .footerbox{
        width: 100%;
    }
    .contact{
        width: 100%;
    }
    footer .upfooter .footerbox a:hover{
        color: aqua;
    }
}