
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
    }

    body {
      background: linear-gradient(135deg, #0a0f1f, #1a1033, #0f172a);
      color: #e5e7eb;
      line-height: 1.6;
      transition: 0.3s;
    }

    body.light {
      background: #f5f5f5;
      color: #111;
    }

    /* Navbar */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      display: flex;
      justify-content:space-between;
      padding: 30px 15px;
      background: rgba(10, 15, 31, 0.6);
      backdrop-filter: blur(12px);
      z-index: 1000;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .navbar a {
      color: #e5e7eb;
      margin: 0 10px;
      text-decoration: none;
      transition: 0.3s;
    }

    .navbar a:hover {
      color: #a78bfa;
    }

    /* Hero */
    .hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
    }

    .hero img {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #a78bfa;
      margin-bottom: 20px;
      box-shadow: 0 0 25px rgba(167,139,250,0.4);
    }

    .hero h1 {
      font-size: 3rem;
    }

    .typing {
      border-right: 2px solid #a78bfa;
      white-space: nowrap;
      overflow: hidden;
    }

    .buttons {
      margin-top: 20px;
    }

    .btn {
      padding: 10px 20px;
      margin: 5px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn-primary {
      background: #a78bfa;
      color: #0a0f1f;
      font-weight: 600;
    }

    .btn-primary:hover {
      background: #8b5cf6;
    }

    .btn-outline {
      background: transparent;
      border: 1px solid #a78bfa;
      color: #e5e7eb;
    }

    .btn-outline:hover {
      background: #a78bfa;
      color: #0a0f1f;
    }

    section {
      padding: 100px 20px;
      max-width: 1000px;
      margin: auto;
      opacity: 0;
      transform: translateY(30px);
      transition: 0.6s;
    }

    section.show {
      opacity: 1;
      transform: translateY(0);
    }

    h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      border-left: 4px solid #a78bfa;
      padding-left: 10px;
    }

    .skills, .projects {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
    }

    .skills_hr {
      margin: 30px auto;
      width: 30%;
      border-color: #a78bfa;
    }

    .card, .skill {
      background: rgba(255,255,255,0.03);
      padding: 15px;
      border-radius: 10px;
      transition: 0.3s;
      border: 1px solid rgba(255,255,255,0.05);
    }

    .card:hover, .skill:hover {
      transform: scale(1.05);
      border-color: #a78bfa;
    }

    .toggle {
      cursor: pointer;
      padding: 5px 10px;
      border: 1px solid #a78bfa;
      border-radius: 10px;
      color: #e5e7eb;
    }

    /* Experience */
    .timeline {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .exp {
      background: rgba(255,255,255,0.03);
      padding: 15px;
      border-radius: 10px;
      border-left: 3px solid #a78bfa;
      transition: 0.3s;
    }

    .exp:hover {
      transform: translateX(5px);
    }
  