/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
  }



  body.light-mode {
    background-color: #f0f0f0;
    color: #000000;
  }
  
  header {
    background-color: #1f1f1f;
    padding: 20px;
  }
  
  header.light-mode {
    background-color: #ffffff;
  }
  
  nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
  }
  
  nav a {
    color: #00ff00;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #00ccff;
  }
  
  .section {
    padding: 40px 20px;
  }
  
  h1, h2 {
    color: #00ff00;
    margin-bottom: 20px;
  }
  
  h1.light-mode, h2.light-mode {
    color: #006600;
  }
  
  .profile-pic {
    border-radius: 50%;
    width: 500px;
    height: 500px;
    object-fit: cover;
    margin-bottom: 20px;
  }
  
  .intro p {
    font-size: 1.2rem;
  }
  
  .social-links a {
    color: #00ff00;
    font-size: 2rem;
    margin: 0 10px;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #00ccff;
  }
  
  .social-links.light-mode a {
    color: #000000;
  }
  
  /* Project Section */
  .project-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .project-item h3 {
    margin-bottom: 10px;
    color: #00ccff;
  }
  
  .project-item p a {
    color: #00ff00;
    text-decoration: underline;
  }
  
  .project-item p a:hover {
    color: #00ccff;
  }
  
  /* Contact Form */
  form {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  
  input, textarea {
    padding: 10px;
    background-color: #1f1f1f;
    border: 1px solid #00ff00;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
  }
  
  input.light-mode, textarea.light-mode {
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
  }
  
  button {
    padding: 10px;
    background-color: #00ff00;
    border: none;
    color: #121212;
    font-family: 'Courier New', Courier, monospace;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #00ccff;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
    }
    
    .project-list {
      flex-direction: column;
    }
  }
  
  @media (max-width: 480px) {
    .profile-pic {
      width: 100px;
      height: 100px;
    }
  
    h1 {
      font-size: 2rem;
    }
  }
  