:root {
  --neon: #00ff88;
  --glass: rgba(255, 255, 255, 0.08);
  --dark: #020202;
}
* {
}

html,
body {
  overflow-x: hidden !important;
  max-width: 100%;
}

/* ===================== BODY ===================== */
body {
  margin: 0;
  background: var(--dark);
  color: #fff;
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}

/* ===================== NEW MODERN NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  padding: 15px 25px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.1);
  z-index: 999;

  opacity: 0;
  animation: navbarFade 0.9s ease forwards;
}

@keyframes navbarFade {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: 2px;
  transition: 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 14px var(--neon);
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #baffd7;
  font-weight: 500;
  position: relative;
  font-size: 17px;
  transition: 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  bottom: -5px;
  left: 0;
  background: var(--neon);
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--neon);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===================== HAMBURGER ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--neon);
  border-radius: 3px;
  transition: 0.3s ease;
}

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    flex-direction: column;
    gap: 18px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 25px;
    text-align: center;

    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
  }
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================== HERO ===================== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}

.hero-content {
  position: absolute;
  left: 10%;
  max-width: 850px;
  animation: heroFade 1.4s ease forwards;
  opacity: 0;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cv-button {
  margin-top: 25px;
}

.cv-button a {
  display: inline-block;
  padding: 16px 80px;
  background: rgba(0, 95, 55, 0.616);
  border: 1px solid rgba(0, 255, 136, 0.5);
  color: var(--neon);
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.25);
}

.cv-button a:hover {
  background: rgba(0, 255, 136, 0.35);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.4), 0 0 30px rgba(0, 255, 136, 0.25);
}

.intro h2 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 4px;
}

.intro h1 {
  font-size: 54px;
  font-weight: 800;
  color: var(--neon);
  text-shadow: 0 0 18px rgba(0, 255, 136, 0.45);
}

/*  HIGHLIGHT BOX NEW ANIMATION  */
.highlight-box {
  display: inline-block;
  background: rgba(0, 255, 136, 0.22);
  border: 1px solid rgba(0, 255, 136, 0.35);
  padding: 12px 20px;
  border-radius: 12px;

  /* Jangan opacity 0 total → bikin kadang hilang */
  opacity: 0.001;
  transform: translateY(45px) scale(0.88);

  animation: highlightAppear 0.95s ease-out forwards;
}

/* SMOOTH PREMIUM SPRING */
@keyframes highlightAppear {
  0% {
    opacity: 0.001;
    transform: translateY(45px) scale(0.88);
  }
  55% {
    opacity: 1;
    transform: translateY(-14px) scale(1.05);
  }
  78% {
    transform: translateY(5px) scale(0.97);
  }
  90% {
    transform: translateY(-3px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.label-text {
  font-size: 30px;
  font-weight: 600;
}

.role-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/*  TYPING TEXT  */
.typing-text {
  font-size: 38px;
  font-weight: 700;
  color: var(--neon);
  min-width: 250px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

/*SOCIAL ICONS */
.social-icons {
  margin-top: 32px;
  display: flex;
  gap: 28px;
  font-size: 50px;
}

.social-icons a {
  color: #fff;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: var(--neon);
  transform: translateY(-5px) scale(1.12);
  text-shadow: 0 0 14px var(--neon);
}

/* =====================  ABOUT SECTION ===================== */
.about-section {
  width: 100%;
  padding: 120px 0;
  background: linear-gradient(180deg, #050505, #020202);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: var(--neon);
  margin-bottom: 8px;
  text-shadow: 0 0 14px rgba(0, 255, 136, 0.35);
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #baffd7;
  opacity: 0.85;
  margin-bottom: 70px;
}

/* CONTAINER */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
  gap: 60px;
  padding: 0 20px;
}

/* TEXT */
.about-text {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.8;
  color: #eaffea;
}

.about-text p {
  margin-bottom: 20px;
}

/* PHOTO */
.profile-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(0, 255, 136, 0.65);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.35);
  transition: 0.4s ease;
}

.profile-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.6);
}

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

/* ===================== RESPONSIVE ===================== */

/* TABLET & MOBILE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .profile-photo {
    order: -1;
  }

  .about-text {
    text-align: center;
    max-width: 90%;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .profile-photo {
    width: 200px;
    height: 200px;
  }

  .about-text {
    font-size: 16px;
  }
}

/* ===================== END ABOUT SECTION ===================== */

/* ============================ SKILL SECTION ============================= */
.skill-wrapper {
  padding: 90px 10%;
  background: #050505;
}

.skill-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: var(--neon);
  margin-bottom: 10px;
}

.skill-subtitle {
  text-align: center;
  font-size: 17px;
  color: #baffd7;
  opacity: 0.8;
  margin-bottom: 50px;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: center;
  justify-items: center;
}

.skill-item {
  text-align: center;
}

.circle {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  border: 3px solid rgba(0, 255, 136, 0.2);
  overflow: hidden;
}

.circle svg {
  width: 115px;
  height: 115px;
  transform: rotate(-90deg);
}

.circle .progress {
  stroke: var(--neon);
  stroke-width: 7;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  transition: stroke-dashoffset 0.2s linear;
}

.circle i {
  position: absolute;
  font-size: 32px;
  color: var(--neon);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.skill-label {
  margin-top: 12px;
  font-size: 17px;
  color: #eaffea;
  font-weight: 600;
}

/* ========================= TECH SECTION =================== */
.tech-section {
  padding: 100px 0;
  background: #111;
}

.tech-title {
  text-align: center;
  color: var(--neon);
  font-size: 32px;
  margin-bottom: 40px;
}
.wrapper {
  width: 95%;
  height: 100px;
  margin: 100px auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* STYLE PER ITEM */
.item {
  width: 60px;
  height: 60px;
  object-fit: contain;
  position: absolute;
  top: 15px;
  will-change: left;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.26));

  animation: scrollLeft 12s linear infinite;
}

.reverse .item {
  animation-name: scrollRight;
}

/* Gerak ke kiri */
@keyframes scrollLeft {
  from {
    left: 100%;
  }
  to {
    left: -120px;
  }
}

/* Gerak ke kanan */
@keyframes scrollRight {
  from {
    left: -120px;
  }
  to {
    left: 100%;
  }
}

/* GENERATE ANIMATION DELAY OTOMATIS */
.wrapper .item:nth-child(1) {
  animation-delay: 0s;
}
.wrapper .item:nth-child(2) {
  animation-delay: -2s;
}
.wrapper .item:nth-child(3) {
  animation-delay: -4s;
}
.wrapper .item:nth-child(4) {
  animation-delay: -6s;
}
.wrapper .item:nth-child(5) {
  animation-delay: -8s;
}
.wrapper .item:nth-child(6) {
  animation-delay: -10s;
}
.wrapper .item:nth-child(7) {
  animation-delay: -12s;
}
/* ================= RESPONSIVE ================= */

/* BUTTON CV */
@media (max-width: 768px) {
  .cv-button a {
    padding: 10px 22px;
    font-size: 16px;
  }

  .social-icons {
    justify-content: flex-start;
    gap: 20px;
  }

  .cv-button {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    left: 5%;
    max-width: 90%;
  }

  .cv-button a {
    padding: 10px 20px;
    font-size: 15px;
  }

  .social-icons {
    font-size: 38px;
    gap: 18px;
  }

  .cv-button {
    text-align: left;
  }
}

/* LAPTOP KECIL */

/* TABLET */
@media (max-width: 768px) {
  /* NAVBAR */
  .navbar {
    width: 92%;
    padding: 12px 18px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 15px;
  }

  /* HERO */
  .intro h1 {
    font-size: 36px;
  }

  .typing-text {
    font-size: 24px;
  }

  .social-icons {
    font-size: 40px;
    gap: 20px;
  }

  /* SKILL */
  .skill-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .circle {
    width: 95px;
    height: 95px;
  }

  /* TECH SECTION */
  .wrapper {
    height: 80px;
  }
  .item {
    width: 50px;
    height: 50px;
    top: 15px;
  }
}

/* HP */
@media (max-width: 480px) {
  .hero-content {
    left: 5%;
    max-width: 90%;
  }

  .intro h1 {
    font-size: 30px;
  }

  .intro h2 {
    font-size: 16px;
  }

  .typing-text {
    font-size: 20px;
  }

  .role-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .highlight-box .label-text {
    font-size: 20px;
  }

  /* SOCIAL ICONS */
  .social-icons {
    font-size: 32px;
    gap: 15px;
  }

  /* CV BUTTON */
  .cv-button a {
    font-size: 14px;
    padding: 8px 18px;
  }

  /* SKILL GRID */
  .skill-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .circle {
    width: 90px;
    height: 90px;
  }

  /* TECH ICON */
  .item {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .navbar {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 10px;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .nav-links a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .skill-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-content: center;
  }
}

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===================== HIGHLIGHT / STATS SECTION ===================== */

/* ===================== VALUE STRIP ===================== */

.value-section {
  width: 100%;
  padding: 110px 0;
  background: radial-gradient(
    circle at top,
    rgba(0, 255, 136, 0.12),
    #020202 60%
  );
}

.value-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  position: relative;
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: 22px;
  padding: 45px 30px;
  text-align: center;

  backdrop-filter: blur(14px);
  transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 255, 136, 0.25),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-14px) scale(1.04);
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.45);
}

/* ICON */
.value-card i {
  font-size: 48px;
  color: var(--neon);
  margin-bottom: 20px;
  text-shadow: 0 0 18px rgba(0, 255, 136, 0.6);
}

/* TITLE */
.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* DESC */
.value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #dfffe9;
  opacity: 0.9;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 900px) {
  .value-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* PROOF SECTOIN */

.proof-section {
  width: 100%;
  padding: 140px 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 255, 136, 0.18),
    #020202 65%
  );
}

.proof-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* TITLE */
.proof-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--neon);
  margin-bottom: 10px;
  text-shadow: 0 0 18px rgba(0, 255, 136, 0.45);
}

.proof-subtitle {
  font-size: 16px;
  color: #baffd7;
  opacity: 0.85;
  margin-bottom: 60px;
}

/* BIG PANEL */
.proof-panel {
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.28);
  border-radius: 28px;
  padding: 60px 45px;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.35);
}

/* ROW */
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-bottom: 55px;
}

/* COLUMN */
.proof-col i {
  font-size: 42px;
  color: var(--neon);
  margin-bottom: 18px;
  text-shadow: 0 0 18px rgba(0, 255, 136, 0.6);
}

.proof-col h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.proof-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #eaffea;
  opacity: 0.9;
}

/* CTA */
.proof-cta {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.proof-cta a {
  padding: 14px 38px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #020202;
  background: var(--neon);
  transition: 0.35s ease;
}

.proof-cta a.secondary {
  background: transparent;
  color: var(--neon);
  border: 1px solid rgba(0, 255, 136, 0.6);
}

.proof-cta a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.45);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 900px) {
  .proof-row {
    grid-template-columns: 1fr;
  }

  .proof-panel {
    padding: 45px 25px;
  }

  .proof-title {
    font-size: 34px;
  }
}

/* END PROOF SECTOIN */

/* FOOTER SECTION */
/* ===================== FOOTER ===================== */

.site-footer {
  width: 100%;
  padding: 70px 0 40px;
  background: linear-gradient(180deg, #020202, #000);
  border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* BRAND */
.footer-brand h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--neon);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

.footer-brand p {
  font-size: 14px;
  color: #baffd7;
  opacity: 0.85;
  margin-bottom: 30px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 35px;
}

.footer-social a {
  font-size: 28px;
  color: #eaffea;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: var(--neon);
  transform: translateY(-4px) scale(1.15);
  text-shadow: 0 0 14px var(--neon);
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #9fffd3;
  opacity: 0.7;
  border-top: 1px solid rgba(0, 255, 136, 0.15);
  padding-top: 18px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
