* { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #1e293b; }

    nav {
      background-color: #0f172a;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    nav h1 { font-size: 1.5rem; margin: 0; }
    nav ul { list-style: none; display: flex; gap: 1.5rem; margin: 0; }
    nav a {
      color: #cbd5e1;
      text-decoration: none;
      font-weight: 500;
    }
    nav a:hover { color: #38bdf8; }

    #hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  text-align: center;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 1rem;
  margin: 0;
}
    #hero::before {
      content: "";
      position: absolute;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.08) 2%, transparent 60%), radial-gradient(circle, rgba(255,255,255,0.04) 2%, transparent 50%);
      background-size: 20% 20%;
      animation: floatBG 90s linear infinite;
      top: -50%;
      left: -50%;
      z-index: 0;
      filter: blur(20px);
    }
    @keyframes floatBG {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    #hero h1 {
     font-size: 8rem;
     color: white;
     z-index: 1;
     position: relative;
    }

    #hero h2 {
        font-size: 8rem;
        color: white;
        z-index: 1;
        position: relative;
       }

    #hero p {
      font-size: 1.25rem;
      color: #cbd5e1;
      max-width: 700px;
      z-index: 1;
      position: relative;
      margin-top: 1rem;
    }

    section {
  width: 100%;
  max-width: 100%;
  padding: 0 1.5rem;
  margin: 3rem auto;
}
    h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .project, .tech-card {
      background: #fff;
      padding: 1.5rem;
      margin-bottom: 1rem;
      border-left: 4px solid #38bdf8;
      border-radius: 0.5rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    .project h3, .tech-card h3 { margin-bottom: 0.5rem; }
    .project p, .tech-card ul { color: #475569; }
    .project a { color: #38bdf8; text-decoration: none; font-weight: 500; }

    .tech-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
    }
    .tech-card ul { list-style: none; padding: 0; margin-top: 0.5rem; }
    .tech-card li { margin: 0.3rem 0; display: flex; align-items: center; gap: 0.5rem; }

    #contact ul { list-style: none; padding: 0; }
    #contact li { margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
    #contact a { color: #3b82f6; text-decoration: none; }
    footer {
      background: #111827;
      color: #cbd5e1;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
    }