      body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        background-color: #0f0f0f;
        color: #ffffff;
        max-width: 100%;
      }

      /* Header & Navbar */
      header {
        background-color: #1d1c1c;
        box-shadow: 0 6px 6px rgba(168, 85, 247, 0.4);
        padding: 1rem 8vw;
        position: relative;
        top: 0;
        z-index: 100;
        border-bottom: 1px solid #1f1f1f;
      }

      .container {
        width: auto;
        height: auto;
        position: relative;
        justify-content: flex-end;
        flex-direction: column;
        overflow: hidden;
        box-sizing: border-box;
        padding: 20px;
        transition: width .75s ease;
        display: center;
        -webkit-transition: width .75s ease;
        -moz-transition: width .75s ease;
        -ms-transition: width .75s ease;
        -o-transition: width .75s ease;
      }

      .logo-container {
        display: end;
        align-items: center;
        text-decoration: none;
      }

      .logo-img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 10px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
        text-decoration: none;
      }

      .logo span {
        color: #a855f7;
      }

      .nav-links {
        list-style: none;
        text-align: center;
        display: flex;
        gap: 2rem;
        margin: 0;
        padding: 0;
        z-index: 1;
      }

      .nav-links li a {
        text-decoration: none;
        color: #ccc;
        text-decoration: solid;
        transition: .7s ease;
        font-weight: 500;
        transition: color 0.3s;
        -webkit-transition: .7s ease;
        -moz-transition: .7s ease;
        -ms-transition: .7s ease;
        -o-transition: .7s ease;
      }

      .nav-links li a:hover {
        color: #a855f7;
      }

      /* Mobile Navigation */
      @media (max-width: 668px) {
        .nav-links {
          display: none;
        }
      }

      .hero {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4rem 8vw;
        gap: 2rem;
        flex-wrap: wrap;
      }

      .hero-left {
        flex: 1;
        min-width: 300px;
      }

      .hero-left h1 {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        max-width: 500px;
      }

      .btn-hire {
        background: linear-gradient(135deg, #a855f7, #6b21a8);
        color: white;
        padding: 0.9rem 2rem;
        border: none;
        border-radius: 999px;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: 0.3s;
        -webkit-border-radius: 999px;
        -moz-border-radius: 999px;
        -ms-border-radius: 999px;
        -o-border-radius: 999px;
      }

      .btn-hire:hover {
        opacity: 0.9;
        color: yellow;
      }

      .stats {
        display: flex;
        gap: 1rem;
        margin-top: 2.5rem;
        flex-wrap: wrap;
      }

      .stat-box {
        flex: 1;
        box-shadow: 0 6px 6px rgba(107, 33, 168, 0.5);
        min-width: 100px;
        padding: 1.2rem;
        border-radius: 1.2rem;
        background-color: #1f1f1f;
        text-align: center;
        color: white;
        -webkit-border-radius: 1.2rem;
        -moz-border-radius: 1.2rem;
        -ms-border-radius: 1.2rem;
        -o-border-radius: 1.2rem;
}
      .stat-box:hover{
        color: #fee711;
      }

      .stat-box h3 {
        font-size: 1.8rem;
        margin: 0;
      }

      .stat-box p {
        font-size: 0.95rem;
        margin-top: 0.3rem;
      }

      .hero-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-top: 1rem;
      }

      .about-content {
        color: white;
      }

      .profile-info {
        list-style: none;
        background-color: #1a1a1a;
        padding: 1rem 1.5rem;
        margin: 1rem 0;
        border-radius: 1rem;
        border: 1px solid #2e2e2e;
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.05);
        /* cahaya halus */
        position: relative;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
      }

      .profile-info li {
        margin-bottom: 0.6rem;
        color: #ddd;
        font-weight: 500;
      }

      .profile-info li span {
        color: #a855f7;
        font-weight: 600;
      }

      .profile-info:hover {
        box-shadow: 0 0 25px rgba(168, 85, 247, 0.2);
        transform: translateY(-2px);
      }


      .profile-img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid #2a2a2a;
        margin-bottom: 1rem;
        animation: float 3s ease-in-out infinite;
      }

      @keyframes float {
        0% {
          transform: translateY(0px);
        }

        50% {
          transform: translateY(-10px);
        }

        100% {
          transform: translateY(0px);
        }
      }


      .info-box:hover {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.8);
        /* lebih terang saat hover */
      }

      .info-box p {
        margin: 0.3rem 0;
      }

      .social-icons {
        display: center;
        gap: 1rem;
        font-size: 1.4rem;
        text-align: center;
      }

      .social-icons a {
        color: white;
        transition: 0.3s;
      }

      .social-icons a:hover {
        color: #a855f7;
      }
      .projects {
        padding: 4rem 8vw;
        background-color: #0f0f0f;
        color: white;
      }

      .section-title h2 {
        max-width: auto;
        font-size: 2rem;
        text-align: center;
}
      .section-title p {
        color: rgb(255, 255, 255);
        border: #0f0f0f;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
}

      .projects-container {
        display: center;
        flex-direction: column;
        gap: 3rem;
      }

      .projects-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        /* tengah kiri-kanan */
        gap: 5px;
        padding: 1rem;
      }

      .project-card {
        display: flex;
        flex-direction: column;
        background-color: #1e1e1e;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
        margin-bottom: 2rem;
        max-width: 400px;
        width: 90%;
        margin: 0 auto;
        /* Tengah horizontal */
      }

      .project-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
      }

      .project-info {
        padding: 1.5rem;
        text-align: center;
        color: #eee;
        /* Pastikan teks warnanya terlihat */
      }


      .project-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: #a855f7;
      }

      .project-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin: 1rem 0;
      }

      .project-tags span {
        background-color: #2a2a2a;
        color: #ccc;
        padding: 0.3rem 0.7rem;
        border-radius: 999px;
        font-size: 0.85rem;
      }

      @media (max-width: 768px) {
        .project-card {
          flex-direction: column;
        }

        .project-info {
          padding: 1rem;
        }
      }


      .btn-view {
        display: inline-block;
        padding: 0.6rem 1.4rem;
        background-color: #a855f7;
        color: white;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s;
      }

      .btn-view:hover {
        background-color: #9333ea;
      }


      .sketchup-container {
        width: 100%;
        max-width: 960px;
        aspect-ratio: 16 / 9;
        margin: 3rem auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 0 16px rgba(168, 85, 247, 0.2);
        /* Glow lembut */
      }

      .sketchup-container h1 {
        text-align: center;
        text-shadow: #6b21a8;
      }

      .sketchup-container iframe {
        width: 100%;
        height: 100%;
        border: none;
      }


      .cv-download {
        padding: 3rem 0;
        text-align: center;
      }

      .cv-content {
        background-color: #dfdfdf;
        padding: 10px 24px;
        border-radius: 0.75rem;
        box-shadow: 0 0 10px 3px rgba(168, 85, 247, 0.4);
        margin: 0 auto;
        display: inline-block;
        transition: box-shadow 0.3s ease, background-color 0.3s ease;
      }

      .cv-content:hover {
        background-color: #ffffff;
        box-shadow: 0 0 20px 6px rgba(168, 85, 247, 0.6);
      }

      .btn-cv {
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
        font-size: 1.05rem;
        display: inline-block;
        padding: 8px 16px;
        border-radius: 999px;
        background: transparent;
        transition: color 0.3s ease;
      }

      /* Tetap putih di semua keadaan link */
      .btn-cv:link,
      .btn-cv:visited,
      .btn-cv:hover,
      .btn-cv:active {
        color: #ffffff;
      }

      @media (max-width: 768px) {
        .hero {
          flex-direction: column;
          text-align: center;
        }
      }

      #experience {
        background-color: #0f0f0f;
        color: #ffffff;
      }

      .experience-item {
        background-color: #1a1a1a;
        border-left: 5px solid #a855f7;
        padding: 1rem 1.5rem;
        border-radius: 0.75rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.1);
        transition: transform 0.3s ease;
      }

      .experience-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 25px rgba(168, 85, 247, 0.25);
      }

      .experience-item h3 {
        margin: 0;
        font-size: 1.25rem;
        color: #fff;
      }

      .experience-time {
        font-size: 0.9rem;
        color: #ccc;
        margin-bottom: 0.8rem;
      }

      .contact {
        padding: 4rem 8vw;
        color: #f9fafb;
      }

      .contact .section-title {
        text-align: center;
        margin-bottom: 2rem;
      }

      .contact .section-title h2 {
        font-size: 2rem;
        color: #a855f7;
      }

      .contact .section-title h2 .contact .section-title p {
        font-size: 1rem;
        color: #9ca3af;
      }

      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      .contact-card {
        background-color: #1f2937;
        padding: 1rem;
        border-radius: 0.5rem;
        text-align: center;
      }

      .contact-card:hover {
        background-color: #6b21a8;
      }

      .contact-card i {
        font-size: 1.5rem;
        color: #a855f7;
        margin-bottom: 0.5rem;
      }

      .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .contact-form input,
      .contact-form textarea {
        padding: 0.8rem;
        border-radius: 0.4rem;
        border: none;
        background-color: #374151;
        color: #f9fafb;
        font-size: 1rem;
      }

      .contact-form input::placeholder,
      .contact-form textarea::placeholder {
        color: #9ca3af;
      }

      .contact-form .btn {
        background-color: #a855f7;
        color: white;
        border: none;
        padding: 0.8rem;
        font-size: 1rem;
        border-radius: 0.5rem;
        cursor: pointer;
        transition: background 0.3s;
      }

      .contact-form .btn:hover {
        background-color: rgba(107, 33, 168, 0.5)
      }

      @media screen and (max-width: 768px) {
        .contact-grid {
          grid-template-columns: 1fr;
        }
      }

      .footer {
        display: inline-block;
      }

      .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        margin: auto;
      }

      .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #a855f7;
        text-decoration: none;
      }

      .footer-logo span {
        color: #ffffff;
      }

      .footer-links {
        display: flex;
        flex-wrap: flex;
        flex: 1;
        position: relative;
        gap: 1rem;
        list-style: none;
        padding: 0;
        margin: 20px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .footer-links li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
        -webkit-transition: color 0.3s ease;
        -moz-transition: color 0.3s ease;
        -ms-transition: color 0.3s ease;
        -o-transition: color 0.3s ease;
      }

      .footer-links li a:hover {
        color: #a855f7;
      }

      .social-links a {
        color: #f7f7f7;
        font-size: 30px;
        margin: 10px;
        padding: 2px;
        box-sizing: border-box;
        background-color: #1a1a1a;
        box-shadow: 0 0 20px rgba(107, 33, 168, 0.5);
        /* cahaya ungu lembut */
        padding: 1rem 1.5rem;
        border-radius: 1rem;
        margin-bottom: 1rem;
        font-size: 0.95rem;
        transition: box-shadow 0.3s ease;
        cursor: pointer;
      }

      .social-links a:hover {
        background-color: #a855f7;
      }


      .footer-credit {
        background-color: #1a1a1a;
        border-left: 5px solid #a855f7;
        padding: 1rem 1.5rem;
        border-radius: 0.75rem;
        margin-bottom: 1.5rem;
      }

      .footer-credit:hover {
        background-color: #a855f7;
      }