
    body { 
      font-family: 'Segoe UI', Arial, sans-serif; 
      background: #fff; 
      margin: 0; 
      padding: 0; 
      color: #222;
    }
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 32px 48px 0 48px;
    }
    .navbar-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .dot {
      width: 18px;
      height: 18px;
      background: orange;
      border-radius: 50%;
      display: inline-block;
      margin-right: 10px;
    }
    .navbar-title {
      font-weight: bold;
      font-size: 1.2em;
    }
    .navbar-role {
      color: #888;
      font-size: 1em;
      margin-left: 6px;
    }
    .navbar-links {
      display: flex;
      gap: 24px;
      font-size: 1.1em;
    }
    .navbar-links a {
      color: #222;
      text-decoration: none;
      font-weight: 500;
      border-right: 1px solid #bbb;
      padding-right: 16px;
    }
    .navbar-links a:last-child {
      border-right: none;
      padding-right: 0;
    }
    .main-content {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 40px;
      gap: 60px;
    }
    .profile-pic {
      width: 340px;
      height: 340px;
      border-radius: 50%;
      object-fit: cover;
      background: #eee;
      box-shadow: 0 2px 16px #ddd;
    }
    .intro {
      max-width: 420px;
    }
    .intro h1 {
      font-size: 3.5em;
      margin: 0 0 12px 0;
      font-weight: 700;
      letter-spacing: -2px;
    }
    .intro h2 {
      font-size: 1.3em;
      margin: 0 0 10px 0;
      font-weight: 600;
    }
    .intro p {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 32px;
    }
    .buttons {
      display: flex;
      gap: 24px;
    }
    .circle-btn {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2em;
      font-weight: bold;
      border: none;
      cursor: pointer;
      transition: transform 0.15s;
      box-shadow: 0 2px 8px #eee;
      text-decoration: none;
      color: #222;
    }
    .resume-btn { background: #FFC107; }
    .projects-btn { background: #FF3B30; color: #111; }
    .contact-btn { background: #4DD0E1; }
    .circle-btn:hover { transform: scale(1.07);}
    @media (max-width: 900px) {
      .main-content { flex-direction: column; gap: 32px; }
      .profile-pic { width: 220px; height: 220px; }
      .intro h1 { font-size: 2.2em; }
      .intro { max-width: 95vw; }
    }