body{
    margin: 0;
    padding: 0;
    background-color: #000000;
}

.nav-bar{
    display: flex;
    background-color: #000000;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    position: sticky;
    top: 0.1px;
    z-index: 10;
    box-sizing: border-box;
    box-shadow: 0px 5px 30px aqua;
    /* border: 1px solid red; */

}
.logo{
    height: 100px;
}

.home .a-li{
    background-color: rgba(0, 255, 255, 0.24);
    color: aqua;
    padding: 10px 10px;
    border-radius: 5px;
    
}
.li-a{
    /* border: 1px solid red; */
    display: inline;   
    padding: 10px;
    margin: 0 10px; 
    border-radius: 5px;
}
.a-li{
    font-size: 20px;
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
    color: rgb(255, 255, 255);
}
.a-li:hover{
   color: aqua;
   transition: 0.4s;
}
header{
    background-color: #000000;
    color: white;
    height: 100%;
    padding: 5px;
    text-align: center;
}
.information{
    display: flex;
    /* margin-top: 10px; */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    justify-content: space-evenly;
    /* border: 1px solid white; */
    text-align: center;
    height: 500px;
    width: 100%;
}
.intro{
    /* border: 1px solid white; */
    margin-top: 80px;
    text-align: left;
    max-width: 500px;
    min-width: 100px;
    font-size: 28px;
}
.intro:hover{
    filter: drop-shadow(-2px -2px 20px aqua);
}
.name{
    color: aqua;
}
.picture{
    width: 350px;
    height: 503px;
}
section{
    background-color: black;
    color: white;
    height: 100%;   
    /* border-bottom: 2px solid white; */
}
.section-information{
    justify-content: space-evenly;
    display: flex;
}
.section-picture{
    margin-top: 100px;
}
.picture{
    width: 370px;
    height: 470px;
    margin-top: 50px;
}
.section-infor{
    margin-top: 200px;
    align-items: center;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.infor-h1{
    font-size: 40px;
    font-weight: 900;

}
.infor-pera{
    font-size: 15px;
}
.download-btn{
    margin-top: 20px;
    font-weight: 800;
    display: inline-block;
    padding: 15px 25px;
    background-color: black;
    color: aqua;
    /* text-align: center; */
    border: 1px solid aqua;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: aqua; /* Darker green on hover */
    color: white;
}

.section-skills{
    height: 100%;
    background-color: #000000;
    margin-bottom: 10%;
}
 .he-2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.skill-container {
    margin-bottom: 30px;
}

.skill-name {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.progress-container {
    max-width: 100%;
    margin-left: 50px;
    margin-right: 50px;
    background-color: #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
}
.progress-bar {
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: white;
    font-weight: bold;
    border-radius: 20px;
    transition: width 0.4s ease;
}

/* Colors for different skills */
.html-bar { background-color: #e34c26; }
.css-bar { background-color: #264de4; }
.js-bar { background-color: #f0db4f; color: black; }
.ts-bar { background-color: #007acc; }
.python-bar { background-color: #3776ab; }

/* Widths based on skill percentage */
.html-bar { width: 90%; }
.css-bar { width: 80%; }
.js-bar { width: 70%; }
.ts-bar { width: 70%; }
.python-bar { width: 30%; } 

footer{
    height: 50%;
    text-align: center;
    color: rgb(0, 0, 0);
    background-color: rgb(221, 221, 221);
}
.footer-h1{
    /* margin-top: 100px; */
    padding: 30px;
    font-size: 50px;
    font-weight: 900;
}
.grid{
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(80px, 0fr));
    grid-gap: 10px;
    margin-top: 10px;
}
.icons{
    margin-top: 20px;
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
}
.last-tag{
    margin-top: 100px;
    margin-bottom: 0px;
}
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}
/* Responsive Design */
@media (max-width: 760px) {
    .information {
        flex-direction: column;
        text-align: center;
        order: 2;
    }
    .nav-links{
        display: none;
        padding: 10px;
        flex-direction: column;
        align-items: center;
        width: 30%;
        background-color: rgba(0, 255, 255, 0.637);
        box-shadow: 0px 0px 40px rgba(0, 255, 255, 0.87);
        border-radius: 18px;
        position: absolute;
        top: 85%;
        right: 5px;
    }
    .nav-links li {
        margin-bottom: 10px;
    }
    .nav-links:hover{
        background-color: none;
    }
    .nav-links.active{
        display: flex;
    }
    .li-a {
        width: 70%;
        border-radius: 15px;
        height: 20px;
        text-align: center;
        margin: 5px ;
        margin-right: 20px;
    }
    .hamburger {
        display: block;
    }

    .profile-picture {
        margin-top: 0%;
        /* display: inline-block; */
        display: none;        

    }
    .section-information{
        
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 400px){
    .intro{
        font-size: 25px;
    }
}
