/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(ellipse at top left, #0f0f1b, #000);
    color: #e0f7ff;
    overflow-x: hidden;
  }
  
  canvas#bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
  }
  
  /* Navbar */
  .nav {
    position: fixed;
    width: 100%;
    background: rgba(20, 20, 40, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  }
  
  .nav h2 {
    font-size: 1.8rem;
    color: #00ffff;
  }
  
  .nav nav a {
    margin-left: 1.5rem;
    color: #aefeff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .nav nav a:hover {
    color: #ffffff;
  }
  
  /* Hero Section */
  .home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
  }
  
  .title {
    font-size: 4rem;
    color: #ffffff;
    text-shadow: 0 0 10px #00ffff;
  }
  
  .title span {
    color: #00ffff;
  }
  
  .subtitle {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: #9be8ff;
  }
  
  /* Section Styles */
  section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: auto;
    text-align: center;
  }
  
  section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
  }
  
  section p,
  section li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #c0e9ff;
  }
  
  /* Skills */
  #skills ul {
    list-style: none;
    padding: 0;
  }
  
  #skills li {
    padding: 0.5rem 0;
  }
  
  /* Projects */
  .project {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 1.5rem 0;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  }
  
  /* Contact */
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: auto;
  }
  
  form input,
  form textarea {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
  }
  
  form button {
    background: #00ffff;
    color: #000;
    padding: 0.75rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  form button:hover {
    background: #00bcbc;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 2rem 1rem;
    color: #6effff;
    background: rgba(10, 10, 30, 0.5);
  }
  