/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #292F36;
  }
  
  h1, h2, h3 {
    color: #4ECDC4;
  }
  
  a {
    text-decoration: none;
    color: #F7FFF7;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    display: inline-block;
    margin-right: 20px;
  }
  
  /* Header */
  header {
    background-color: #000000;
    color: #333333;
    padding: 10px 0;
    text-align: center;
  }
  
  nav ul {
    padding: 0;
  }
  
  nav ul li {
    margin-right: 20px;
  }
  
  nav ul li a {
    color: #FFE66D;
    font-size: 18px;
  }
  
  /* About Section */
  #about {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  /* Skills Section */
  #skills {
    padding: 50px 20px;
    background-color: #f9f9f9;
  }
  
  .skills-list {
    display: flex;
    justify-content: space-around;
  }
  
  .skill {
    width: 30%;
    text-align: center;
  }
  
  .skill-bar {
    background-color: #CADF9E;
    height: 20px;
    transition: width 2s ease-out;
  }
  
  /* Projects Section */
  #projects {
    padding: 50px 20px;
    background-color: #fff;
  }
  
  .project {
    margin-bottom: 20px;
  }
  
  .project h3 {
    color: #333;
  }
  
  /* Contact Section */
  #contact {
    padding: 50px 20px;
    background-color: #ffffff;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  form input, form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #a3a1a1;
    border-radius: 5px;
  }
  
  button {
    padding: 10px;
    background-color: #333;
    color: rgb(197, 186, 186);
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
  }
  
  /* Slide-Up Animation */
  .slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .slide-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Project Hover Effects */
  .project {
    transition: transform 0.3s ease;
  }
  
  .project:hover {
    transform: scale(1.05);
  }
  
  /* Smooth Scrolling */
  html {
    scroll-behavior: smooth;
  }
  