*{
    margin:0;
    padding:0;
    box-sizing:border-box;  
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #080808;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 12%;
    backdrop-filter: blur(10px);
    z-index: 100;
}
.logo{
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    transition:0.3s ease;
}
.logo:hover{
    color: #f00;
    text-shadow: 0px 0px 25px orangered,
                 0px 0px 50px orangered;
    transform: scale(1.1);
}
span{
    color: #f00;
}
.navbar a{
    font: size 18px;
    color: #fff;
    margin: 0 20px;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}
.navbar a:hover,
.navbar a.active{
    color: #f00;
    border-bottom: 3px solid orangered;
}
.contact{
    background-color: rgb(255, 255, 255);
    color: #080808;
    padding: 10px 28px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
}
.contact:hover{
    background-color: #f00;
    color: #fff;
    border: 2px solid #f00;
    box-shadow: 0px 0px 20px rgba(255, 0, 0, 0.5);
    transform: scale(1.05);
}
.home{
    width:100%;
    min-height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 7em;
    padding: 30px 12% 0;
}
.home-content{
    max-width: 800px;
}
.home-content h3{
    font-size: 42px;
}
.home-content h1{
    font-size: 62px;
    line-height: 1.2;
}
.home-content p{
    font-size: 18px;
    color: #333;
    margin: 25px 0 30px;
}
.btn-box{
    width: 345px;
    display: flex;
    gap: 2em;  
}
.btn-1{
    padding: 15px 28px;
    background-color: rgb(0, 0, 0);
    color: #fff;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor:pointer
}
.btn-1:hover{
    background-color: rgb(255, 255, 255);
    color: #000000;
    border: 2px solid rgb(0, 0, 0)
}
.btn-2{
    padding: 15px 28px;
    background-color: rgb(255, 0, 0);
    color: #ffffff;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor:pointer
}  
.btn-2:hover{
    background-color: rgb(255, 255, 255);
    color: #ff0000;
} 
.img-circle{
    width: 550px;
    border-radius: 50%;
}
::-webkit-scrollbar{
    width: 15px;
}
::-webkit-scrollbar-thumb{
    background: #f00;
} 
::-webkit-scrollbar-track{
    background: #0000006f;
    width: 50px;
}  
.about{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12% 8%;
    gap: 10em;
    background: #000000;
}
.about-img img{
    position: relative;
    width: 550px;
    box-shadow: 0px 0px 25px rgb(255, 0, 0),
                0px 0px 50px rgb(255, 0, 0);
    border-radius: 50px;            
}
.about-content h2{
    text-align: left;
    color: rgb(255, 255, 255);
    font-size: 42px;

}
.about-content h3{
    font-size: 62px;
    color: rgb(255, 255, 255);
}
.about-content p{
    font-size: 20px;
    color: #fff;
    margin: 2em 0 3em;
}
.services{
    max-width:600px;
    padding:80px 5%;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}
.services-content h2{
    text-align: center;
    color: #ff0000;
    font-size: 52px;
    font-weight: bolder;
}
.services-content h3{
    text-align:center;
    color: #fff;
    font-size: 22px;
    margin-top: 2em;
    margin-bottom: 2em;
}
.service-content p{
    font-size: 20px;
    color: #000000;
    display: flex;
    text-align:center;
    margin: 1em 0;
    margin-bottom: 2em;
}
.service-span{
    color: #f00;
}
.service-box::before{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2em;
}
.serice-box hover::after{
    position: absolute;
    width: 80px;
    height: 4px;
    bottom:-10px;
    border-radius: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
    box-shadow: inset 0px 0px 10px orangered,
                0px 0px 10px orangered;
    transition: translateY(-50%);
}
.skills{
    padding: 80px 5%;
    background-color: #000000;
    min-height: 100vh;
    gap: 7em;
}
.skills-content h2{
    text-align: center;
    color: #ff0000;
    font-size: 52px;
}
.skills-content h3{
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    margin-top: 2em;
    margin-bottom: 2em;
}
.progress-bar{
    width: 100%;
    height: 15px;
    background-color: #ff0000;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    inset-inline-start: 20px;
}
.projects{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 5%;
    background-color: #fffefe;
}
.project-content h2{
    text-align: center;
    color: #ff0000;
    font-size: 82px;
}
.education{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #ffffff;
}
.education-content h2{
    text-align: center;
    color: #ff0000;
    font-size: 52px;
    margin-top: 1em;
    margin-bottom: 2em;
}
.education-content h3{
    text-align: center;
    color: #000000;
    font-size: 22px;
    margin-top: 2em;
    margin-bottom: 2em;
}
.education-box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2em;
}
.education-item{
    background: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.education-span{
    color: #f00;
    font-weight: dark bold;
    font-display: swap;
}
.contact-form{
    padding: 80px 5%;
    background-color: #ffffff;
}
.contact-form h2{
    text-align: center;
    margin-top: 3em;
    margin-bottom: 1em;
    font-size: 36px;
    color: #000000;
}
.contact-form form{
    max-width: 50em;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3em;
}
.contact-form form .input-box{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-form form .input-box input,
.contact-form form  textarea{
    width: 100%;
    padding: 1.5em;
    margin: 18px;
    border-radius: .8em;
    background-color: #f0f0f0;
    font-size: 18px;
    margin:1rem 0;
    resize:none;
}
.footer{
    background-color: #080808;
    padding: 40px 0;
    position:relative;
    width:100%;
    bottom: 5px;
}
.footer.social{
    font-size: 24px;
    color:#fff;
    border: 2px solid orangered;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    box-shadow: inset 0px 0px 10px orangered,
                0px 0px 10px orangered;
    transition: 0.3s ease;
}
.footer.social:hover{
    color: #f00;
    border:2px solid #f00; 
    transform: scale(1.2)translatevY(-10px);
}
.footer ul{
    margin-top:0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    padding: 0;
    text-align: center;
}
.footer ul li a{
    color:#fff;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}
.footer ul li a:hover{
    border-bottom: 3px solid orangered;
}
.footer ul li {
    display: inline-block;
    padding: 0px 15px;
}
.footer .copyright{
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
}

