*{
    margin:0;
    padding:0;
}

body{
    font-family:"Poppins",sans-serif;
    background-color:rgb(224, 224, 198);
}
html{
    scroll-behavior: smooth;
}
p{
    color:rgb(red, green, blue)
}
a,.btn{
    transition: all 300ms ease;
}
nav,
.nav-links{
    display:flex;
}
nav{
    justify-content: space-around;
    align-items: center;
    height: 17vh;
}
.nav-links{
    gap:2rem;
    list-style:none;
    font-size:1.5rem;
}
a{
   color: black;
   text-decoration:none ;
   text-decoration-color: white;
}
a:hover{
    color:black;
    text-decoration:underline;
    text-underline-offset: 1rem;
}
.logo{
    font-size:2rem;
}
.logo:hover{
    cursor:default;
}
#down-navbar{
    display:none;
}
.down-menu{
    position:relative;
    display:inline-block;
}
.down-icon{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:24px;
    width:30px;
    cursor:pointer;
}
.down-icon span{
    width:100%;
    height:2px;
    background-color: black;
    transition: all 0.3 ease-in-out;
}
.menu-links{
    position:absolute;
    top:100%;
    right:0;
    background-color: beige;
    width:fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3 ease-in-out;
}

@media screen and (max-width:1200px){
    #nav{
        display:none;
    }
    #down-navbar{
        display:flex;
    }
}

.menu-links a{
    display: block;
    padding: 10px;
    text-align:center ;
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
    transition: all 0.3 ease-in-out;
}
.menu-links li{
    list-style: none;
}
.menu-links.open{
    max-height: 300px;
}
.down-icon.open span:first-child{
    transform: rotate(45deg)translate(10px,5px);
}
.down-icon.open span:nth-child(2){
    opacity:0;
}
.down-icon.open span:last-child{
    transform: rotate(-45deg) translate(10px,-5px);
}
.down-icon span:first-child{
    transform: none;
    opacity:1;
}

#profile{
    display:flex;
    justify-content: center;
    gap:5rem;
    height:90vh; 
    margin-bottom:50px; 
}
section{
    padding-top: 4vh;
    height: 96vh;
    margin: 0 10rem;
    min-height: fit-content;
}
.section-container{
    display: flex; 
}
.section_text{
    align-self: center;
    text-align: center; 
}
.section_text p{
    font-weight: 600;
}
.section_text_p1{
    text-align: justify;
    font-size: 1.40rem;
    margin-bottom:1rem ;
}
.section_text_p2{
    text-align: justify;
    margin-bottom:1rem ;
}
.section_text_p3{
    text-align: justify;
    font-size: 1.35rem;
    margin-bottom:1rem ;
}
.section_text_p5{
    text-align: justify;
    margin-bottom:2rem ;
}
.title{
    font-size: 3rem;
    text-align: justify;
    margin-bottom: 1rem;
}
#socials-container{
    display: table;
}
.icon{
    cursor: pointer;
    height: 2rem;
    margin-right: 1rem;
}

.btn-container{
    display: table-cell;
    gap:1rem;
}
.btn{
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 10rem;
    border-radius: 3rem;
    margin-bottom: 1rem;
}
.btn-color-1{
    border: rgb(53,53,53)0.1rem solid;
}
.btn-color-1:hover{
    cursor:pointer;
    background: rgb(53,53,53);
    color:white;
}

#about{
    display:flex;
    justify-content: center;
    gap:5rem;
    padding:20px;
    height:120vh;
    margin-bottom: 30px;
    text-align:center;
}
.section_text_p0{
    text-align: justify;
    font-size: 1.40rem;
    margin-bottom:1rem ;
}

.education-box {
    background-color: beige; /* Background color of the box */
    padding: 20px; /* Padding around the content inside the box */
    margin-bottom: 20px; /* Margin at the bottom to create space between boxes */
    border: 1px solid black; /* Border around the box */
    border-radius: 5px; /* Rounded corners for the box */
    margin-bottom: 2rem;
}



.skills-box {
    background-color: beige; /* Background color of the box */
    padding: 20px; /* Padding around the content inside the box */
    border: 1px solid black; /* Border around the box */
    border-radius: 5px; /* Rounded corners for the box */
    clear:both;
    margin-bottom:10rem;
}

.list {
    margin-top: 2rem;
    list-style-type: none; /* Remove default list styles */
    padding: 0;
}

.skill-name {
    font-weight: bold;
    display: flex;
}

.skill-bar {
    background-color: #ddd;
    height: 15px;
    border-radius: 2px;
    overflow: hidden;
    position: relative; 
    margin-bottom: 1rem;/* Position relative for positioning absolute elements */
}
.skill-info {
    display: flex; /* Use flexbox for alignment */
    justify-content: space-between; /* Space between items */
    align-items: center; /* Center vertically */
    margin-bottom: 5px;
}

.skill-level {
    height: 100%;
    background-color:cadetblue; /* Base color for skill level */
    border-radius: 5px; /* Rounded corners */
}
.skill-percent{
    font-weight:bold;
}

/* Footer styles */
/* Footer styles */
footer {
    background-color: beige; /* Background color */
    color: black; /* Text color */
    padding: 90px; /* Padding */
    text-align: center; /* Center align text */
    
}

.footer-content {
    max-width: 1200px; /* Max width of content */
    margin: 0 auto; /* Center align content */
}

.social-icons {
    margin-top: 20px;
    margin-bottom: 2rem; /* Add margin for spacing */
}

.social-icons a {
    display: inline-block; /* Display icons inline */
    margin-right: 10px; /* Add margin between icons */
}

.social-icons img {
    width: 30px; /* Set width of icons */
    height: 30px; /* Set height of icons */
}
.section_text_p6{
    text-align: flex;
    margin-bottom:1rem ;
    font-weight: bold;
}