body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top left, #0b001a 0%, #120029 100%);
    color: #fff;
    overflow-x: hidden;
  }
  
  a {
    color: #b388ff;
    text-decoration: none;
    transition: 0.3s;
  }
  a:hover { text-decoration: underline; }
  
  h1 {
    text-align: center;
    margin-top: 3rem;
    font-size: 2rem;
    color: #fff;
  }
  h1 i {
    color: #b366ff;
    margin-right: 10px;
  }
  
  /* ===== Navbar ===== */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background: transparent;
    font-size: 1.1rem;
  }
  
  .logo {
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    color: #b366ff;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: #b366ff;
  }
  
  .github-btn {
    background: #b366ff22;
    border: 1px solid #b366ff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s;
  }
  .github-btn:hover {
    background: #b366ff44;
  }
  /* ===== Container ===== */
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    padding: 1rem;
  }
  
  /* ===== Form Card ===== */
  .form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(179, 136, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 0 20px rgba(179, 136, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
  }
  
  .form-card:hover {
    box-shadow: 0 0 30px rgba(179, 136, 255, 0.4);
    transform: scale(1.02);
  }
  
  .form-card h1 {
    margin-bottom: 0.5rem;
    color: #b366ff;
    font-size: 2rem;
  }
  
  .form-card p {
    font-size: 0.9rem;
    color: #d8c6ff;
    margin-bottom: 1.5rem;
  }
  
  /* ===== Input Fields ===== */
  input, textarea {
    width: 100%;
    padding: 0.9rem;
    margin: 0.6rem 0;
    border: 1px solid rgba(179, 136, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 1rem;
  }
  
  input::placeholder,
  textarea::placeholder {
    color: white;
    opacity: 0.7;
  }
  
  input:focus,
  textarea:focus {
    border-color: #b366ff;
    box-shadow: 0 0 10px rgba(179, 136, 255, 0.3);
  }
  
  textarea {
    height: 120px;
    resize: none;
  }
  
  /* ===== Button ===== */
  #btn {
    width: 100%;
    padding: 0.9rem;
    margin-top: 1rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #b366ff, #7a33ff);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  #btn:hover {
    background: linear-gradient(45deg, #7a33ff, #b366ff);
    box-shadow: 0 0 15px rgba(179, 136, 255, 0.5);
    transform: translateY(-2px);
  }
  
  /* ===== Responsive Design ===== */
  
  /* Mobile view - already perfect */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      gap: 0.8rem;
    }
  
    .nav-links {
      gap: 1rem;
    }
  
    .form-card {
      width: 100%;
      padding: 1.5rem;
    }
  
    .form-card h1 {
      font-size: 1.7rem;
    }
  
    input, textarea, #btn {
      font-size: 0.95rem;
      padding: 0.8rem;
    }
  }
  
  /* Larger screens - PC specific */
  @media (min-width: 1024px) {
    .form-card {
      max-width: 600px;
      padding: 3rem 3.5rem;
    }
  
    .form-card h1 {
      font-size: 2.4rem;
    }
  
    .form-card p {
      font-size: 1rem;
    }
  
    input, textarea {
      font-size: 1.1rem;
      padding: 1.2rem;
      border-radius: 12px;
    }
  
    textarea {
      height: 160px;
    }
  
    #btn {
      font-size: 1.1rem;
      padding: 1.1rem;
    }
  }
  
    /* ===== Responsive ===== */
    @media (max-width: 786px) {
      .navbar {
        flex-direction: column;
        gap: 0.6rem;
      }
      .nav-links { gap: 0.6rem; }
      ul { padding: 0; }
    
      .experience-section {
        width: 90%;
      }
    }