*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    font-family: "Alegreya", serif;
    background-color: rgb(2, 2, 55);
    color: white;
    line-height: 1.6;
}
/* Navbar styles */
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    position: fixed;
    width: 100%;
    top: 0px;
    background-color: rgba(10, 25, 47, 0.95);
    z-index: 100;
}
.navbar a:hover,
.navbar a.active{
    color: aqua;
    border-bottom: 3px solid aqua;
}
#mylogo{
    width: 100px;
}
.nav-links{
    display: flex;
    gap: 2rem;
}
.nav-links a{
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-links a:hover{
    color: aqua;
}
.homesection{
    display: flex;
    min-height: 100vh;
    padding: 8rem 5% 5rem;
    gap: 2rem;
    align-items: center;
}
.homecontent{
    flex: 1;
    max-width: 600px;
}
.homecontent h3{
    color: turquoise;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.homecontent h1{
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.homecontent h2{
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.homecontent p{
    color: #8892b0;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}
.homebutton{
    display: flex;
    align-items: center;
    gap: 2rem;
}
.download{
    padding: 10px 10px;
    color: black;
    text-decoration: none;
    background-color: aquamarine;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}
.download:hover{
    background-color: rgb(98, 115, 111);
}
.sociallinks{
    display: flex;
    gap: 1rem;
}
.social-link{
    color: #8892b0 ;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 2rem;
}
.social-link:hover{
    color: aqua;
}
.homeimg{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.imgcontainer{
    width: 400px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.imgcontainer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section{
    display: flex;
    min-height: 100vh;
    padding: 8rem 5% 5rem;
    gap: 2rem;
    align-items: center;
}
.section h3{
    color: aqua;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.section h2{
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.sectioncontent{
    flex: 1;
    max-width: 600px;
}
.sectionimage{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
.imagecontainer img{
    width: 600px;
}
.skills{
    margin-top: 2rem;
}
.skillitem{
    margin-bottom: 1.5rem;
}
.skillitem h4{
    margin-bottom: 0.5rem;
}
.progressbar{
    width: 100%;
    height: 8px;
    background-color:rgba(100,255,218,0.1) ;
    border-radius: 4px;
    overflow: hidden;
}
.prgress{
    height: 100%;
    background-color: aquamarine;
    border-radius: 4px;
}
.edu h3{
    text-align: center;
    color: aquamarine;
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 600;
}
.edu-section{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    padding: 25px;
}
.edu-content{
    border: solid;
    border-color: cadetblue;
}
.edu-content h2{
    text-align: center;
    margin-bottom: 20px;
    color: cadetblue;
    border: solid;
}
.edu-content p{
    line-height: 1.5;
    text-align: justify;
    letter-spacing: 0.75px;
}
.experience{
    text-align: center;
    margin-top: 100px;
}
.experience h3{
    font-size: 50px;
    color: aquamarine;
}
.expo{
    border: double;
}
.expo h2{
    font-size: 30px;
}
span{
    color: cadetblue;
}
.expo p{
    justify-content: center;
    text-align: justify;
    padding: 10px 30%;
}

/* contact syle */

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-form input,
.contact-form textarea{
    background-color: rgba(100,255,218,0.1) ;
    border: 1px solid rgba(100,255,218,0.1) ;
    border-radius: 5px;
    padding: 1rem;
    color: white;
    font-size: 20px;
}
.contact-form textarea{
    height: 150px;
    resize: none;
}
.contact-info{
    background-color: rgba(100,255,218,0.1);
    border-radius: 10px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}
.info-items{
    margin-bottom: 1.5rem;
}
.info-items h4{
    color: aquamarine;
    margin-bottom: 0.5rem;
}
.info-items p{
    color: cadetblue;
}
.primary-btn{
    padding: 10px 10px;
    color: black;
    text-decoration: none;
    background-color: aquamarine;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}
footer {
    margin-top: 10px;
}

#copyright {
    text-align: center;
    font-weight: 600;
}
