    :root {
      --primary: #4f46e5;
      --dark: #0f172a;
      --light: #f8fafc;
      --gray: #94a3b8;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: var(--dark);
      color: var(--light);
      line-height: 1.6;
    }

    header {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
    }

    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .profile-image {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid var(--primary);
      box-shadow: 0 10px 30px rgba(79,70,229,0.4);
    }

    .profile-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    header h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    header span {
      color: var(--primary);
    }

    header p {
      max-width: 600px;
      margin: auto;
      color: var(--gray);
    }

    .btn {
      display: inline-block;
      margin-top: 2rem;
      padding: 0.75rem 2rem;
      background: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 30px;
      transition: 0.3s;
    }

    .btn:hover {
      background: #3730a3;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .social-links a {
      padding: 0.6rem 1.4rem;
      border: 1px solid var(--primary);
      border-radius: 25px;
      color: var(--light);
      text-decoration: none;
      font-size: 0.9rem;
      transition: 0.3s;
    }

    .social-links a:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
    }

    section {
      padding: 5rem 10%;
    }

    h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    .about p {
      max-width: 800px;
      margin: auto;
      color: var(--gray);
      text-align: center;
    }

    .skills {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .skill {
      background: #020617;
      padding: 1.5rem;
      border-radius: 12px;
      text-align: center;
      transition: 0.3s;
    }

    .skill:hover {
      transform: translateY(-5px);
      background: #020617;
      box-shadow: 0 10px 30px rgba(79,70,229,0.2);
    }

    .projects {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .project {
      background: #020617;
      padding: 1.5rem;
      border-radius: 12px;
    }

    .project h3 {
      margin-bottom: 0.5rem;
    }

    .project p {
      color: var(--gray);
      font-size: 0.9rem;
    }

    footer {
      text-align: center;
      padding: 2rem;
      color: var(--gray);
      border-top: 1px solid #020617;
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 2.2rem;
      }
    }
    .project img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}
