#social ul li {
    display:inline-block;
    font-size: 50px;
    padding: 20px;
    
    margin-right: 20px;
   
    
}

#social {
    text-align: center;

}

#social ul li a .fa-discord {
    color: #5865F2;
    
}
#social ul li a .fa-linkedin {
    color: #387dc2;
}
#social ul li a .fa-github {
    color: #333;
}
#social ul li a .fa-instagram {
    color: #e1306c;
}


header {
    overflow: hidden;  
  }

  header i{
    color: rgb(94, 7, 129);
  }
  

header h1 {
    float: left;       
    margin: 20px;
    margin-left: 45px;
    
  }
  
  header nav {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;

    margin: 30px;      
  }
  
  header nav a {
    margin-left: 20px; 
   
    color: black;
  }

  #navbar {
    text-align: center;
  }

  #name h1{
    font-family:'Poppins', sans-serif;
    font-size: 100px;
   
  }

  

  #name {
    font-family:'Poppins', sans-serif;
    line-height: 0;
    margin:50px;
    
  }


 body {
        margin: 0;
        padding: 0;
        min-height: 100vh;
        background: linear-gradient(to bottom, #F4F3F1, #ffeac1);
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        font-family: 'Poppins', sans-serif;
  }

  #name p {
    font-size: 19px;
  }

  #name img {
    margin-left: 950px;
    margin-top: -270px;
    height:400px;
    width:330px;
    border-radius: 30%;   
}

.circle img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
  }
  

  .circle img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.9);
    
  }


#intro {
    margin:50px;
}

#skills {
    margin:50px;

}

.skills-list i {
    display: inline-block;
    margin:70px;
    font-size: 90px;
    transition: transform 0.3s, color 0.3s;
    

    

}

.skills-list i:hover {
    transform: scale(1.3);
}

.skills-list li {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: rgb(45, 3, 62);
    
  }

  .skills-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 6px; 
    padding: 15px;
  }

  
  

#skills ul li i.fa-html5 {
    color: #E34F26;
}
#skills ul li i.fa-css3 {
   color: #1572B6;
}
#skills ul li i.fa-js {
    color:#F7DF1E;
}
#skills ul li i.fa-python {
    color:#3776AB; 
}
#skills ul li i.fa-java {
    color: #E76F00
}
#skills ul li i.fa-lightbulb {
    color:green;
}

#skills ul .skillnames {
    font-size: 20px;

}

#projects {
    margin:50px;
    
}

#projects img {
    border-radius: 4%;
}



.project-card {
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .project-card:hover {
    transform: scale(1.05);   
    
    
  }
  

  #navbar a {
    position: relative;
    text-decoration: none;
    color: #333;
    padding: 5px;
    transition: color 0.3s;
  }
  
  #navbar a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: rgb(45, 3, 62);
    transition: width 0.3s ease;
  }
  
  #navbar a:hover {
    color: #2d033e;
  }
  
  #navbar a:hover::after {
    width: 100%;
  }
  

  #contact {
    margin:50px;
  }

  .contact-form {
    max-width: 400px;
    margin: 30px auto;
    padding: 45px;
    display: flex;
    flex-direction: column;
    background: #f7edfa79;          
    border-radius: 26px;
    gap: 15px; 
  }
  
  .contact-form label {
    font-size: 14px;
    font-weight: 500;
    
    text-align: left;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    width: 95%;
    
  }
  
  .contact-form textarea {
    min-height: 100px;
    
  }

  .contact-form #namelabel,
  .contact-form #name {
    margin:0px;
  }
  
  .contact-form button {
    padding: 18px 190px;
    border: none;
    background: rgb(45, 3, 62);
    color: white;

    
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    text-align: justify;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background: #4a1361;
  }
  
  
  footer {
    background-color:#f7edfa79;
    height: 200px;
  }