    *{
        margin: 0;
        padding-top: 0;
        box-sizing: border-box;

    }
body{
    background-color: #081b29;
    overflow-x: hidden;
}  

    .navbar{
        color: aqua;
        padding: 1rem 3rem  ;
        z-index: 1000;
    }
    .navbar-items{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .anker{
        margin-right: 5rem;
        display: flex;
    }
    .navbar-items a{
        text-decoration: none;
        color: white;
        font-size: 1.3rem;
        margin-left: 4rem;
    }
    .navbar-items a:hover{
        color: aqua;
        text-shadow: 0 0 10px;
        border-bottom: 2px solid aqua;
    }

    .navbar-items h1{
        font-size: 2.6rem;
    }

    /* MAIN CONTENT */
    .content{
        color: white;
        font-size: 1.2rem;
        margin-top: 9rem;
        margin-left: 5rem;
        line-height: 3rem;
    }
    .content span{
        font-weight: bold;
        color: aqua;
        letter-spacing: 1px;
        transition: 0.3s ease;
    }
    .content span:hover{
        text-shadow: 0 0 2px;
        cursor: pointer; 
    }

    .profile-pic{
        background-image: url(pic.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        border-radius: 50%;
        top: 130px;
        left: 800px;
        height: 300px;
        width: 300px;
        transition: 0.8s ease;
        border: 10px solid aqua;

        box-shadow: 0 0 30px aqua;
        cursor:pointer;
    }
   
    .profile-pic:hover{
    transform: scale(1.1,1.1);
        
    }

/* ABOUT SECTION */
.about-section{
    background-color: #112e42;
    height: 110vh;
}
.about-content{
    max-width: 900px;
    margin: auto;
    margin-top: 220px;
    text-align: center;
    color: white;
}
.pic2{
    background-image: url(pic.jpg);
    height: 250px;
    width: 250px;
    margin-left: 30%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
}
.about-content h1{
    padding-top: 30px;
    color: aqua;
    font-size: 4rem;
}
.pic2{
    
    margin-top: 20px;
    border: 10px solid aqua;
    animation: fullspin 10s linear infinite;
}
@keyframes fullspin {
    0%   { transform: rotateY(0deg); 
    box-shadow: 0 0 30px aqua;
    }
    100% { transform: rotateY(360deg);
    box-shadow: 0 0 30px aqua; 
    }
}

.about-content p{
    line-height: 6px;
    margin-top: 30px;
    font-size: 1.5rem;
}

.skills-section{
    background-color:#081b29;
    height: 140vh;   
}
.skills-content h1{
    margin-left: 40%;
    margin-top: 20px;
    color: aqua;
    font-size: 4rem;
    
}
.skill{
    margin-top: 40px;
}
.skill p{
    color: white;
    margin-left: 45%;
    margin-top: 20px;
    font-size: 1.5rem;
    line-height: 10px;
    letter-spacing: 2px;

}
.bar{
    margin-left: 22%;
    margin-top: 30px;
    width: 50%;
    background-color:white;
    height: 20px;
    border-radius:6px ;
    overflow: hidden;
}
.progress{
    height: 100%;
    color: white;
    text-align: right;
    line-height: 25px;
    
}
  
.html {
    width: 75%;
    background-color: green;
}

.css {
    width: 65%;
    background-color: orange;
}

.js {
    width: 70%;
    background-color: red;
}
.Nodejs{
    width: 70%;
    background-color: red;
}
.python{
    width:60%;
    background-color: orange;
}
.WD{
    width: 80%;
    background-color: green;
}

/* CONTACT SECTION */

.contact-section{
    background-color: #112e42;
    height: 100vh;
    text-align: center;
    
}
.contact-me h1{
    padding-top: 20px;
    font-size: 4rem;
    color: aqua;
}
.contact-me{
    max-width: 700px;
    margin: auto;
}
.form-row{
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    margin-top: 40px;
}
::placeholder{
    color: white;
}
.Contact{
    outline: none;
    flex: 1;
    padding: 10px;
    border: 2px solid aqua;
    background: transparent;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
     
}


textarea{
    margin-top: 20px;
    width: 100%;
    padding: 13px ;
    border: 2px solid aqua;
    background: transparent;
    outline: none;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    resize: none;
}
.Submit{
    margin-top: 20px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #00feba, #5b8df9);
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease-in;
}
.Submit:hover{
    transform: scale(1.1,1.1);
    box-shadow: 0 0 7px ;
}

.my-cont-info{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 25px;
    font-size: 2rem;
}

.icon{
    color: #00feba;
    transition: 0.3s ease;
}
.icon:hover{
    transform: scale(1.2);
}

footer{
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: white;
    background-color: #081b29;
    border-top: 2px solid aqua;
}


/*  Responsive CSS for Mobile Devices  */
@media (max-width: 768px) {
    
    /* Navbar items vertically align*/
    .navbar-items {
        display: flex;
    }
    .anker {
        display: none;
    }
    .navbar-items h1 {
        font-size: 2rem !important;
        text-align: center;
        margin-left: 0;
        width: 100%;  
    }
    /* Navbar links spacing and size */
    .navbar-items a {
        margin-left: 10px ; /* horizontal margin remove, vertical add */
        font-size: 0.9rem;
    }

   

    /* Content text align and margin fix */
    .content {
        font-size: 0.8rem;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
        text-align: center;
    }

    /* Profile pic center ho aur resize */
    .profile-pic {
        position: static;
        margin: 20px auto;
        height: 200px;
        width: 200px;
    }

    /* About section me image center */
    .pic2 {
        margin: 20px auto;
        height: 200px;
        width: 200px;
    }
    .about-section{
        height: 155vh;
    }
    /* About text thoda chota */
    .about-content p {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    /* Skills heading center aur resize */
    .skills-content h1 {
        margin-left: 0;
        text-align: center;
        font-size: 2.5rem;
    }
    .skill{
        margin-top: 3rem;
    }

    /* Skills text center */
    .skill p {
        margin-left: 0;
        text-align: center;
    }

    /* Bars ko center aur width choti */

    .bar {
        width: 80%;
        margin: 10px auto;
    }

    /* Contact form rows ko column banayein */
    .form-row {
        flex-direction: column;

    }

    /* Contact inputs full width */
    .Contact {
        width: 100%;
    }

    /* Contact heading choti aur center */
    .contact-me h1 {
        font-size: 2.5rem;
    }

    /* Contact form box spacing */
    .contact-me {
        padding: 0 1rem;
    }

    /* Contact icons center */
    .my-cont-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Footer font resize */
    footer {
        font-size: 1rem;
        text-align: center;
    }
}
