*{
    /* background-color:rgba(186, 186, 250, 0.904); */
    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%;
    padding: 35px 12%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.skill{
    text-align: center;
    margin: 30px;
    padding: 13px;
    position: relative;
    color: rosybrown;
    font-size: 33px;
}
.skill:hover{
    pointer-events: all;
    color: orangered;
    text-shadow: 0 0 25px orangered
                 0 0 50px orangered;
    cursor: pointer;
}
.skill1{
    text-align: center;
    margin: 30px;
    padding: 13px;
    font-size: 23px;
    line-height: 1.3em;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: orange;
}
.span{
    color: rgba(179, 111, 221, 0.87);
    font-size: 23px;
    margin-left: 150px;
}
.logo{
    font-size: 25px;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}
.logo:hover{
    color: orangered;
    text-shadow:0 0 25px orangered,
                0 0 50px orangered;
    transform: scale(1.1);            
}
.exp1{
    margin: 0;
    padding: 0;
    animation: scroll-left 10s linear infinite;
    position: absolute;
    left: 100%;
}
@keyframes scroll-left{
    0%{
        transform: translate(0%);
    }
    100%{
        transform: translate(-200%);
    }
}
.exp{
    font-size: 50px;
    text-align: center;
    color: rgb(218, 17, 84);
}
span{
    color: orangered;
}
.navbar a{
    font-size: 1opx;
    color: orangered;
    font-size: 500;
    margin: 0 20px;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}
.navbar a:hover,
.navbar a.active{
    color: orangered;
    border-bottom: 3px solid orangered;
}
.contact{
    padding: 10px 28px;
    background-color: wheat;
    color: black;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight:600;
    transition: 0.3s ease;
}
.contact:hover{
    background-color: orangered;
    box-shadow: 0 0 25px orangered;
    color: white;
}
.home{
    width: 100%;
    min-height: 100vh;
    background: rgb(241, 241,241);
    display: flex;
    align-items: center;
    gap: 7em;
    padding: 30px 12% 0;
}
.home-content{
    max-width: 800px;
}
.home-content h3{
    font-size: 40px;
}
.home-content h1{
    font-size: 50px;
    line-height: 1;
}
.home-content p{
    font-size: 25px;
    margin: 25px 0 30px;
}
.btn-1{
    padding: 15px;
    background-color: black;
    color: white;
    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: white;
    color: black;
    border: 2px solid black;
}
.btn-2{
    padding: 15px 28px;
    background-color: orangered;
    color: white;
    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: white;
    color: orangered;
}
.img-box img{
    border-radius: 60%;
    width:460px;
}
::-webkit-scrollbar{
    width: 15px;
}
::-webkit-scrollbar-thumb{
    background-color: orangered;
}
::-webkit-scrollbar-track{
    background-color: black;
    width: 50px;
}
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12% 8%;
    gap: 10em;
    background: black;
}
.about-img img{
    position: relative;
    width: 550px;
    box-shadow: 0 0 25px orangered,
                0 0 25px orangered;         
    border-radius: 50%;
}
.about-content h2{
    text-align: left;
    color: white;
    font-size: 42px;
}
.about-content h3{
    font-size: 62px;
    color: white;
}
.about-content p{
    color: white;
    font-size: 20px;
    margin: 2em 0 3em;
}
.contact-form h2{
    text-align: center;
    margin-top: 3em;
    margin-bottom: 1em;
    font-size: 36px;
}
.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;
    font-size: 18px;
    color: black;
    background: rgb(241, 241,241);
    border-radius: 4%;
    margin: 1rem 0;
    resize: none;
}
.footer{
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    background-color: black;
}
.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: white;
}
.footer .social a{
    font-size: 24px;
    color: white;
    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 0 0 10px orangered , 0 0 10px orangered;
    transition: 0.3s ease;
}
.footer .social a:hover{
    transform: scale(1.2)translateY(-10px);
    color: orangered;
    border: 2px solid orangered;
}
.footer ul{
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}
.footer ul li a{
    color: white;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}
.footer ul li a:hover{
    border-bottom: 3px solid orangered;
}
.footerul li {
    display: inline-block;
    padding: 0 15px;
}
.footer.copyright{
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header {
        padding: 20px 5%;
    }

    .home {
        padding: 30px 5%;
        gap: 4em;
    }

    .about {
        padding: 12% 5%;
        gap: 4em;
    }

    .img-box img,
    .about-img img {
        width: 350px;
    }

    .home-content h1 {
        font-size: 40px;
    }

    .home-content h3 {
        font-size: 30px;
    }

    .home-content p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact {
        margin-top: 10px;
    }

    .home {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-content h3 {
        font-size: 35px;
    }

    .about-content h2 {
        font-size: 30px;
        text-align: center;
    }

    .about-content p {
        font-size: 18px;
    }

    .img-box img,
    .about-img img {
        width: 280px;
    }

    .btn-box {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer ul li {
        display: block;
        margin: 10px 0;
    }

    .footer .social a {
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .home-content h1 {
        font-size: 30px;
    }

    .home-content h3 {
        font-size: 22px;
    }

    .home-content p {
        font-size: 16px;
    }

    .btn-1,
    .btn-2 {
        padding: 10px 20px;
        font-size: 16px;
    }

    .contact-form h2 {
        font-size: 28px;
    }

    .contact-form form .input-box input, 
    .contact-form form textarea {
        padding: 1em;
        font-size: 16px;
    }

    .footer {
        padding: 20px 0;
    }
}
