   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #0a0a0a;
      color: #e5e5e5;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    h1, h2, h3, .logo, .nav-links a {
      font-family: 'Poppins', sans-serif;
    }

    :root {
      --orange: #f97316;
      --orange-dark: #ea580c;
      --orange-light: #ffedd5;
      --black: #0a0a0a;
      --black-light: #1f1f1f;
      --gray-dark: #2d2d2d;
      --text-light: #e0e0e0;
      --text-muted: #a1a1aa;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    nav {
      background: #000000;
      border-bottom: 1px solid #2a2a2a;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      max-width: 1280px;
      margin: 0 auto;
    }

    .logo a {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--orange);
      text-decoration: none;
      letter-spacing: -0.5px;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #e0e0e0;
      transition: color 0.2s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--orange);
    }

    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--orange);
      padding: 0 8px;
    }

    .btn-primary {
      background: var(--orange);
      color: #0a0a0a;
      padding: 0.7rem 1.8rem;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: 0.2s;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      background: #ff8c42;
      transform: translateY(-2px);
    }

    .btn-outline {
      border: 1.5px solid var(--orange);
      background: transparent;
      color: var(--orange);
      padding: 0.6rem 1.4rem;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 500;
      transition: 0.2s;
      display: inline-block;
    }

    .btn-outline:hover {
      background: rgba(249, 115, 22, 0.1);
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 2rem;
      position: relative;
      display: inline-block;
      color: white;
    }

    .section-title:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--orange);
      border-radius: 3px;
    }

    .section {
      padding: 80px 0;
      border-bottom: 1px solid #222;
    }

    .section:last-child {
      border-bottom: none;
    }

    .grid-2,
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .card {
      background: #111111;
      border-radius: 24px;
      padding: 1.5rem;
      transition: 0.2s;
      border: 1px solid #2a2a2a;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: var(--orange);
      box-shadow: 0 10px 25px rgba(249, 115, 22, 0.1);
    }.skill-tag {
      background: rgba(249, 115, 22, 0.15);
      color: var(--orange);
      padding: 0.3rem 1rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      display: inline-block;
      margin: 0.25rem;
      border: 0.5px solid rgba(249, 115, 22, 0.3);
    }

    footer {
      background: #000000;
      color: #6b7280;
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
      border-top: 1px solid #222;
    }

    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .hero-content {
      flex: 1;
    }

    .hero-image {
      flex: 0.8;
      text-align: center;
    }

    .profile-placeholder {
      width: 260px;
      height: 260px;
      background: #1a1a1a;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      border: 3px solid var(--orange);
      color: #6b7280;
      margin: 0 auto;
    }

    .profile-placeholder i {
      font-size: 4rem;
      color: var(--orange);
      margin-bottom: 0.5rem;
    }

    .contact-info i {
      width: 30px;
      color: var(--orange);
    }

    .social-links a {
      color: #e0e0e0;
      font-size: 1.6rem;
      margin-right: 1rem;
      transition: 0.2s;
    }

    .social-links a:hover {
      color: var(--orange);
    }

    .cert-badge {
      background: #1f1f1f;
      padding: 0.6rem 1rem;
      border-radius: 16px;
      display: inline-block;
      margin: 0.3rem;
      border-left: 3px solid var(--orange);
    }

    .read-more-btn {
      background: none;
      border: 1px solid var(--orange);
      color: var(--orange);
      padding: 0.4rem 1rem;
      border-radius: 30px;
      margin-top: 1rem;
      cursor: pointer;
      font-weight: 500;
      transition: 0.2s;
    }

    .read-more-btn:hover {
      background: var(--orange);
      color: black;
    }

    .project-img-placeholder {
      width: 100%;
      height: 160px;
      background: #1e1e1e;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      border: 1px dashed #f97316;
      color: #6b7280;
    }

    .detail-page {
      min-height: 100vh;
      background: #0a0a0a;
    }

    .back-btn {
      display: inline-block;
      margin: 2rem 0;
      color: var(--orange);
      text-decoration: none;
      font-weight: 500;
    }

    .back-btn:hover {
      text-decoration: underline;
    }

    .me {
      color: #f97316;
      margin-top: 10px;
    }

    /* ========== FULL RESPONSIVE (MOBILE + TABLET) - ADDED, NOTHING REMOVED ========== */
    @media (max-width: 800px) {
      .menu-toggle {
        display: block;
      }
      .nav-links {
        display: none;
        flex-direction: column;
        background: #000000;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid #2a2a2a;
        z-index: 999;
      }
      .nav-links.show {
        display: flex;
      }
      .section-title {
        font-size: 1.8rem;
      }
      .hero {
        flex-direction: column-reverse;
        text-align: center;
      }
      .section-title:after {
        left: 50%;
        transform: translateX(-50%);
      }
      .section-title {
        text-align: center;
        display: block;
      }
      .grid-2, .projects-grid {
        grid-template-columns: 1fr;
      }
      .hero-content h1 {
        font-size: 2rem !important;
      }
      .container {
        padding: 0 18px;
      }
      .profile-placeholder {
        width: 200px;
        height: 200px;
      }
      .card {
        padding: 1.2rem;
      }
      .section {
        padding: 50px 0;
      }
    }/* Extra small devices */
    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 1.8rem !important;
      }
      .btn-primary, .btn-outline {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
      }
      .section-title {
        font-size: 1.5rem;
      }
    }