@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Plus+Jakarta+Sans:wght@600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0f172a;
  color: #f1f5f9;
  line-height: 1.6;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  
}
h1, h2, h3, h4, h5, h6, .section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.page-wrapper {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
}


a {
  color: #38bdf8;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(30, 41, 59, 0.15); /* lebih transparan */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  filter: drop-shadow(0 0 5px #38bdf8);
  transition: transform 0.3s ease;
}

.logo-icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #38bdf8);
  backdrop-filter: blur(8px);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.logo-text .symbol {
  color: #38bdf8;
  text-shadow: 0 0 6px #38bdf8;
}

.logo-text .brand {
  color: rgba(241, 245, 249, 0.5); /* semi-transparan */
  text-shadow: 0 0 4px #7dd3fc;
  transition: color 0.3s ease;
}

.logo-text .brand:hover {
  color: rgba(241, 245, 249, 0.8);
  text-shadow: 0 0 10px #7dd3fc;
}

@media (max-width: 600px) {
  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}


.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem;
  background: 
/*     linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), */
    url('assets/bgz.png')
/*     url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8cG9ydGZvbGlvJTIwYmFja2dyb3VuZHxlbnwwfHwwfHx8MA%3D%3D') */
    center/cover no-repeat;
  color: #f1f5f9;
  background-size: cover; 
  background-position: center;
  position: relative;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #f1f5f9;
  text-align: center;
  line-height: 1.4;
}

.hero h1 span {
  color: #38bdf8;
}

.hero h1 small {
  display: block;
  font-size: 1rem;
  color: #94a3b8;
  margin-top: 0.1rem;
}
.hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #333;
}


.cta-buttons {
  display: flex;
  gap: 5rem; /* Atur space antar tombol di sini */
  align-items: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #0b3141;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
  border: 2px solid #00f0ff; /* Neon blue border */
  box-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 30px #fff;
}

.cta-button:hover {
  background-color: #0ea5e9;
}

.cta-button img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  
}

section {
  
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
  scroll-margin-top: 10px; /* sesuai tinggi nav */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.reveal {
  opacity: 1;
  transform: translateY(0);
}

.section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #7dd3fc;
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #1e293b;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}
.timeline, .project-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.timeline-item, .project-item {
  background: #1e293b;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.timeline-item h3, .project-item h3 {
  margin-bottom: 0.5rem;
  color: #38bdf8;
}
.profile-photo {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #38bdf8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.profile-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
  margin-bottom: 1rem;
}

.profile-photo.styled {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0f172a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.about-cards:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.about-cards:hover .card-icon svg {
  transform: rotate(5deg) scale(1.1);
  transition: transform 0.3s ease;
}
.about-card {
  background-color: #1e293b;
  border: 1px solid rgba(56, 189, 248, 0.2); /* border soft glow */
  border-radius: 1rem;
  padding: 1.5rem;
  color: #f1f5f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4); /* blue glow */
  border: 1px solid rgba(56, 189, 248, 0.6);
}

.about-card h3 {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #38bdf8;
}

.about-card ul li {
  text-align: justify;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  list-style-type: none !important;
}

.about-card ul li::before {
  content: '✔️ ';
  margin-right: 0.5rem;
  color: #38bdf8;
}
.about-card h4 {
  margin-bottom: 0.2rem;
  color: #94a3b8;
  text-align: center;
}

.about-quote {
  grid-column: 1 / -1;
  text-align: center;
  font-style: italic;
  margin-top: 1rem;
  color: #94a3b8;
}
#contact {
  text-align: center;
  padding: 2rem 1rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-box {
  background: rgba(30, 41, 59, 0.6);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 120px;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.35);
}

.contact-box a {
  text-decoration: none;
  color: #7dd3fc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
}

.icon-circle img {
  width: 28px;
  height: 28px;
}

.icon-circle img:hover {
  transform: scale(1.2) rotate(360deg);
}

.contact-box span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #bae6fd;
}



.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

.skill {
  display: inline-flex;
  flex-direction: column;
}

.skill span {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #38bdf8;
}

.progress-bar {
  background: #334155;
  border-radius: 10px;
  overflow: hidden;
  height: 14px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.progress {
  height: 100%;
  background: linear-gradient(to right, #38bdf8, #0ea5e9);
  border-radius: 10px 0 0 10px;
  transition: width 0.5s ease-in-out;
}
.skill-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
  justify-items: center;
}

/* Flip card wrapper */
.skill-card {
  width: 100%;
  perspective: 1000px;
}

/* Inner card with flipping logic */
.card-inner {
  position: relative;
  width: 100%;
  height: 260px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Trigger flip on hover */
.skill-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Front & back face of the card */
.card-front, .card-back{
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

/* Front face */
.card-front img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.card-front span {
  font-size: 1rem;
  font-weight: 600;
}

/* Back face (flipped side) */
.card-back {
  transform: rotateY(180deg);
  font-size: 0.95rem;
  color: #fff;
  padding: 1rem;
  z-index: 1;
}

/* Responsive text and sizing */
@media screen and (max-width: 480px) {
  .card-inner {
    height: 220px;
  }
  .card-front img {
    width: 48px;
    height: 48px;
  }
  .card-front span {
    font-size: 0.9rem;
  }
  .card-back {
    font-size: 0.85rem;
  }
}
.card-back {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1.2rem;
  padding: 1.5rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease;
}

.card-back-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-back h4 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #00ffe0;
  text-shadow: 0 0 5px #00ffe0;
}

.card-back p {
  font-size: 0.75rem;
  line-height: 1.4;
}

.back-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff22;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 10px #00ffe0;
}



.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background-color: #38bdf8;
  color: #1e293b;
  /* box-shadow: 0 0 10px #38bdf8; */
}

.skill-card img {
  width: 100px;
  height: 100px;
  transition: transform 0.4s ease, filter 0.3s ease;
  padding-bottom: 0.5rem;
}

.skill-card:hover img {
  transform: scale(1.2) rotate(360deg);
  filter: brightness(1.1);
}

.skill-card span {
  font-weight: 600;
  color: #38bdf8;
  font-size: 0.95rem;
}
.skill-card span:hover {
  font-weight: 600;
  color: #18232b;
  font-size: 0.95rem;
}
#contact {
  text-align: center;
  padding: 3rem 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-box {
  background-color: #1e293b;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
  width: 160px;
  text-align: center;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.contact-box a {
  text-decoration: none;
  color: #38bdf8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.icon-circle {
  background-color: #1d4ed8;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5);
}

.icon-circle img {
  width: 28px;
  height: 28px;
}
#contact h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #38bdf8;
  text-align: center;
  margin-bottom: 2rem;
  display: block;  /* Penting: ganti dari flex ke block */
  border-bottom: 2px solid #334155;
  position: relative;
  padding-bottom: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}



footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.875rem;
  color: #94a3b8;
}
.menu-toggle {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: #38bdf8;
  color: #0f172a;
  font-size: 1.0rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 220px;
  height: 100%;
/*   background-color: #1e293b; */
  box-shadow: -2px 0 8px rgba(255, 255, 255, 0.4);
  padding: 2rem 1rem;
  transition: right 0.4s ease-in-out;
  z-index: 999;
}

.sidebar.show {
  right: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin: 1rem 0;
}

.sidebar a {
  color: #00ffe0;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.sidebar a:hover {
  color: #fbffff;
}

.floating-menu {
  position: fixed;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
/*   background-color: #1e293b; */
  padding: 0.5rem;
  border-radius: 12px;
/*   box-shadow: 0 4px 12px rgba(0,0,0,0.3); */
  z-index: 1000;
  gap: 0.75rem;
  /* box-shadow: 0 0 20px #08e396, 0 0 40px #f4f8f7; */
}

.floating-menu a {
  font-size: 1.4rem;
  color: #94a3b8;
  padding: 0.5rem;
  transition: background 0.3s, transform 0.3s, color 0.3s;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 20px #38bdf8, 0 0 40px #f4f8f7;
}

.floating-menu a:hover,
.floating-menu a.active {
  background-color: #00ffe0;
  color: #0f172a;
  transform: scale(1.2);
  /* backdrop-filter: blur(8px); */
  box-shadow: 0 0 20px #38bdf8, 0 0 40px #f4f8f7;
}

@media (max-width: 768px) {
  .floating-menu {
    flex-direction: row;
    bottom: 1rem;
    top: auto;
    right: 50%;
    transform: translateX(50%);
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
  }

  .floating-menu a {
    font-size: 1.3rem;
    padding: 0.4rem;
  }
}
.floating-menu a.active {
  background-color: #00ffe0;
  color: #0f172a;
  transform: scale(1.2);
}
section h2 {
  display: inline-block;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #38bdf8;
  border-bottom: 2px solid #334155;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

section h2::before {
  content: attr(data-icon);
  font-size: 1.8rem;
  display: inline-block;
  margin-right: 0.3rem;
}
#projects {
  padding: 4rem 2rem;
  background-color: #0f172a;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #38bdf8;
  position: relative;
  text-shadow:#00ffe0;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.project-card {
  position: relative;
  background: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Neon border glow animation on hover */
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(130deg, #00ffe0, #38bdf8, #c90f88);
  background-size: 300% 300%;
  animation: borderGlow 6s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

/* Inner card to cover animated border */
.project-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 10px;
  background: #1e293b;
  z-index: -1;
}

/* Activate glow on hover */
.project-card:hover::before {
  opacity: 1;
}

/* Neon shadow glow */
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #38bdf8, 0 0 40px #00ffe0;
  backdrop-filter: blur(8px);
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.project-card.reveal {
  opacity: 1;
  transform: translateY(0);
}


.project-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounceWrapper 2.5s ease-in-out infinite;
  
}
.logo-wrapper:hover {
  animation-play-state: paused;
  backdrop-filter: blur(8px);
}
/* Aktifkan bounce hanya saat terlihat */
.logo-wrapper.bounce-in-view {
  animation: bounceWrapper 2.5s ease-in-out infinite;
}
/* Bounce Infinite Animation */
@keyframes bounceWrapper {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


.company-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background-color: #fff;
  border-radius: 8px;
  padding: 4px;
  border: 1px solid #334155;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 0.2rem;
}

.company-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.company-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.meta-icon {
  width: 18px;
  height: 18px;
  fill: #67e9b7;
}

.project-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.detail-block {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  box-shadow: 0 0 10px #7dd3fc;
  border-radius: 30%;
}

.detail-block h4 {
  margin: 0;
  font-size: 1rem;
  color: #7dd3fc;
  text-align: left;
}

.detail-block p {
  margin: 0.25rem 0 0;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: justify;
}

.project-card a {
  color: #7dd3fc;
  text-decoration: underline;
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.detail-block {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

/* .detail-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
} */

.detail-block h4 {
  margin: 0;
  font-size: 1rem;
  color: #7dd3fc;
}

.detail-block p {
  margin: 0.2rem 0 0 0;
  color: #f1f5f9;
  text-align: justify;
}
.timeline-vertical {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 2rem;
  margin-left: 1rem;
}

.timeline-vertical::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #00ffe0, #0070f3);
  border-radius: 2px;
}

.company-logo {
  display: block;
  margin: 0 auto 0.75rem auto;
  width: 120;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  border: 1px solid #334155;
  background-color: #fff;
  padding: 4px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}
.experience-item {
  display: inline-flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}
.experience-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.experience-item::before {
  content: '';
  position: absolute;
  left: -1.4rem;
  top: 10px;
  width: 12px;
  height: 12px;
  background-color: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}
.exp-logo {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-in-out;
}
.exp-logo img {
  transition: transform 0.6s ease;
  border: 2px solid #00f0ff; /* Neon blue border */
  box-shadow:
    0 0 5px #00f0ff,
    0 0 10px #00f0ff,
    0 0 20px #00f0ff,
    0 0 30px #00f0ff;
}

.exp-logo:hover img {
  transform: rotate(360deg) scale(1.1);
  border: 2px solid #49f70a; /* Neon blue border */
  box-shadow:
    0 0 5px #49f70a,
    0 0 10px #49f70a,
    0 0 20px #49f70a,
    0 0 30px #49f70a;
  backdrop-filter: blur(8px);
}

.experience-item.visible .exp-logo {
  opacity: 1;
  transform: scale(1);
}

.exp-logo img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #1e293b;
  padding: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.exp-details h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #7dd3fc;
}

.exp-role {
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 0.25rem 0;
}

.exp-role span {
  color: #64748b;
  font-weight: 400;
}

@media (max-width: 600px) {
  .experience-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .exp-logo img {
    width: 40px;
    height: 40px;
  }

  .timeline-vertical {
    padding-left: 1.5rem;
  }
}
.exp-details h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #7dd3fc;
  position: relative;
  padding-bottom: 4px;
}

.exp-details h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 300px;
  height: 2px;
  background-color: #38bdf8;
  border-radius: 2px;
}


#experience .timeline-item p {
  text-align: justify;
}

.project-card p,
.about-card p,
.exp-details p{
  text-align: justify;
}

.btn-contact {
  display: inline-block;
  background-color: #38bdf8;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #0ea5e9;
  box-shadow: 0 0 10px #4ef217;
  backdrop-filter: blur(8px);
}
.btn-contact img {
  filter: brightness(0) invert(1); /* memastikan ikon berwarna putih */
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease;
}
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
}

.testimonial-card p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  gap: 0.25rem;
  text-align: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1e293b;
  color: #fff;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 0.75rem;
}

.carousel-btn.next {
  right: 0.75rem;
}

.carousel-btn:hover {
  background: #0f172a;
  backdrop-filter: blur(8px);
}

.carousel-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}


.testimonial-card:hover {
  transform: translateY(-5px);
  border: 1px solid rgba(173, 251, 17, 0.766);
  box-shadow: 0 0 10px #4ef217;
  backdrop-filter: blur(8px);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
  z-index: 5;
  position: relative;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(to right, #00ffe0, #0070f3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots button.active {
  background: #38bdf8;
}


.detail-block h4 {
  margin-bottom: 0.25rem;
  color: #38bdf8; /* warna biru terang */
}

/* .detail-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
} */
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #38bdf8;
}
.about-intro {
  background-color: #cdb684;
  border-left: 6px solid #38bdf8;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 16px rgba(226, 232, 211, 0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-intro:hover {
  background-color: #94a3b8;
  border-left: 6px solid #4ef217;
  color: #dfe2e9;
  box-shadow: 0 0 10px #4ef217;
  backdrop-filter: blur(8px);
}
.about-intro.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.about-header h3 {
  font-size: 1.8rem;
  color: #334155;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #334155;
  margin-bottom: 1.5rem;
  text-align: center;
}

.abouts-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.05rem;
  color: #f8fafc;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.abouts-intro:hover {
  background-color: #334155;
  color: #f4f5f9;
  box-shadow: 0 0 10px #4ef217;
  backdrop-filter: blur(8px);
}
.abouts-intro.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.abouts-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f8fafc;
  text-align: justify;
}


.card-icon {
  text-align: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 40px;
  height: 40px;
  fill: #38bdf8;
}

.about-card.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.about-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* BOUNCE ANIMATION ICON */
.bounce-icon {
  display: inline-block;
  animation: bounce 1s infinite alternate;
  transition: transform 0.3s ease;
}

@keyframes bounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-5px); }
}
.hire-me-button {
  position: absolute;
  top: 75%; /* Sesuaikan posisi vertikal */
  right: 22%; /* Geser ke kiri untuk dekat ke dada avatar */
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.qr-static-button {
  position: absolute;
  top: 40%;
  left: 20%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  
  /* 🔥 Animasi slide-up */
  opacity: 0;
  animation: slideUp 0.8s ease-out 0.3s forwards;
}

/* 🔽 Keyframes animasi */
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(-50%);
    opacity: 1;
  }
}


.qr-static-button img.qr-landing {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.qr-popup-button {
  background-color: #1e293b; /* Gelap */
  color: #ffffff;            /* Teks terang */
  border: 1px solid #38bdf8;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.qr-popup-button:hover {
  background-color: #38bdf8;
  color: #0f172a;
  box-shadow: 0 0 10px #38bdf8;
  backdrop-filter: blur(8px);
}

.experience-item:nth-child(1) {
  transition-delay: 0.1s;
}
.experience-item:nth-child(2) {
  transition-delay: 0.2s;
}
.experience-item:nth-child(3) {
  transition-delay: 0.3s;
}
.experience-item:nth-child(4) {
  transition-delay: 0.4s;
}
.experience-item.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.experience-item.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.exp-logo.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.exp-logo.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-vertical .experience-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-vertical .experience-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-vertical .experience-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-vertical .experience-item:nth-child(4) { transition-delay: 0.4s; }
.company-logo-slider {
  overflow: hidden;
  padding: 2rem 0;
  background-color: #f1f5f9 ;
  border-radius: 1rem;
  margin-top: 2rem;
  box-shadow: 0 0 15px #00ffe0;
}
.company-logo-slider .logo-track img {
  border: 2px solid #00f0ff; /* Neon blue border */
  border-radius: 8px;
  box-shadow:
    0 0 5px #00ffe0,
    0 0 10px #00ffe0,
    0 0 20px #00ffe0,
    0 0 30px #00ffe0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-logo-slider .logo-track img:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 10px #00ffe0,
    0 0 20px #00ffe0,
    0 0 30px #00ffe0,
    0 0 40px #00ffe0;
}

.logo-track {
  display: flex;
  gap: 3rem;
  animation: scrollLogos 60s linear infinite;
  width: max-content;
  align-items: center;
  box-shadow: 0 0 15px #00ffe0;
}

.logo-track img {
  height: 80px;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
  box-shadow: 0 0 15px #38bdf8;
}

.logo-track img:hover {
  transform: scale(1.1);
  opacity: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive fallback */
@media (max-width: 768px) {
  .logo-track {
    gap: 2rem;
  }

  .logo-track img {
    height: 32px;
  }
}
.services {
  padding: 80px 20px;
  background-color: #0f172a;
  text-align: center;
}

.services .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00ffe0;
  margin-bottom: 10px;
  text-shadow:#0070f3;
}

.services .section-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 50px auto;
}

.service-card {
  background-color: #1e293b;
  color: #f1f5f9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  background-color: #0f172a;
  box-shadow: 0 12px 24px rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(8px);
}
.service-card:hover h3 {
  color: #38bdf8;
  backdrop-filter: blur(8px);
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.15);
  transition: transform 0.3s ease;
  backdrop-filter: blur(8px);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  color: #38bdf8;
  transition: transform 0.3s ease;
  
}


.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #7dd3fc;
}

.service-card p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.freelance-quote {
  font-style: italic;
  font-size: 1.25rem;
  color: #94a3b8;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem auto;
  padding: 1rem 1.5rem;
  border-left: 4px solid #38bdf8;
  background-color: rgba(30, 41, 59, 0.4);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.1);
}
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #00ffe0;
  border-bottom: 2px solid #334155;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Untuk efek garis bawah animasi saat hover */
.section-title::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  background-color: #38bdf8;
  margin: 6px auto 0 auto;
  transition: width 0.4s ease;
  backdrop-filter: blur(8px);
}

/* Hover animasi */
.section-title:hover {
  color: #7dd3fc;
  transform: translateY(-2px);
  backdrop-filter: blur(8px);
}

.section-title:hover::after {
  width: 70%;
  backdrop-filter: blur(8px);
}
/* Untuk judul perusahaan (h3) di experience item */
.experience-item h3 {
  text-align: left !important;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.qr-code-box {
  position: fixed;
  top: 5.2rem;
  left: 1rem;
  z-index: 9999;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  background: #0f172a;
  border: 2px solid #38bdf8;
  box-shadow: 0 0 20px #38bdf8, 0 0 30px #0ea5e9, 0 0 40px #06b6d4;
  text-align: center;
  width: 120px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: floatIn 0.8s ease forwards;
}

/* Heading style */
.qr-code-box h3 {
  color: #00ffe0;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Image styling */
.qr-code-box img {
  border-radius: 8px;
  transition: transform 0.3s ease;
  width: 80%;
  box-shadow: 0 0 20px #00ffe0, 0 0 30px #00ffe0, 0 0 40px #00ffe0;
}

/* Hover scale effect */
.qr-code-box img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #38bdf8, 0 0 30px #0ea5e9, 0 0 40px #06b6d4;
}

/* QR hover text */
.qr-code-box p {
  font-size: 0.85rem;
  color: #00ffe0;
  margin-top: 0.5rem;
}

/* Animation keyframes */
@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Optional animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.qr-landing-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-in-out;
}

.qr-landing {
  width: 120px;
  height: 120px;
  background: #0f172a;
  border-radius: 20px;
  border: 2px solid #38bdf8;
  box-shadow: 0 0 20px #38bdf8, 0 0 30px #0ea5e9, 0 0 40px #06b6d4;
  text-align: center;
  max-width: 320px;
  animation: scaleIn 0.4s ease;
  transition: transform 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.qr-landing:hover {
  transform: scale(1.05);
  backdrop-filter: blur(8px);
}

.qr-landing-wrapper p {
  font-size: 0.85rem;
  color: #f1f5f9;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.qr-popup-button {
  background-color: transparent;
  color: #38bdf8;
  border: 1px solid #38bdf8;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.qr-popup-button:hover {
  background-color: #38bdf8;
  color: #0f172a;
  backdrop-filter: blur(8px);
}

.qr-popup-overlay {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

.qr-popup-content {
  position: relative;
  padding: 1.5rem;
  background: #0f172a;
  border-radius: 20px;
  border: 2px solid #38bdf8;
  box-shadow: 0 0 20px #38bdf8, 0 0 30px #0ea5e9, 0 0 40px #06b6d4;
  text-align: center;
  max-width: 320px;
  animation: scaleIn 0.4s ease;
}

.qr-popup-content p {
  margin-top: 0.75rem;
  color: #f1f5f9;
  font-size: 1rem;
  font-weight: 500;
}

.qr-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #f1f5f9;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

.qr-popup-img {
  width: 260px;
  height: 260px;
  border-radius: 12px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}

@keyframes scaleIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.freelance-quote:hover {
  background-color: #38bdf8;
  color: #0f172a;
  border-left: 4px solid #00ffe0;
  box-shadow: 0 0 10px #38bdf8;
  backdrop-filter: blur(8px);
}
.testimonial-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: #94a3b8;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem auto;
  padding: 1rem 1.5rem;
  border-left: 4px solid #38bdf8;
  background-color: rgba(30, 41, 59, 0.4);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.1);
}
.testimonial-quote:hover {
  background-color: #38bdf8;
  color: #0f172a;
  border-left: 4px solid #00ffe0;
  box-shadow: 0 0 10px #38bdf8;
  backdrop-filter: blur(8px);
}
@keyframes neonPulse {
  0% {
    box-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff, 0 0 20px #00f0ff;
  }
  50% {
    box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 40px #00f0ff;
  }
  100% {
    box-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff, 0 0 20px #00f0ff;
  }
}

.company-logo-slider img {
  border: 2px solid #00f0ff;
  border-radius: 8px;
  animation: neonPulse 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

/* Opsional: efek membesar saat hover */
.company-logo-slider img:hover {
  transform: scale(1.05);
  backdrop-filter: blur(8px);
}

.company-logo-slider .logo-track img:nth-child(1) { animation-delay: 0s; }
.company-logo-slider .logo-track img:nth-child(2) { animation-delay: 0.3s; }
.company-logo-slider .logo-track img:nth-child(3) { animation-delay: 0.6s; }
.company-logo-slider .logo-track img:nth-child(4) { animation-delay: 0.9s; }
.company-logo-slider .logo-track img:nth-child(5) { animation-delay: 1.2s; }
.company-logo-slider .logo-track img:nth-child(6) { animation-delay: 1.5s; }
.company-logo-slider .logo-track img:nth-child(7) { animation-delay: 1.8s; }
.company-logo-slider .logo-track img:nth-child(8) { animation-delay: 2.1s; }
.company-logo-slider .logo-track img:nth-child(9) { animation-delay: 2.4s; }
.company-logo-slider .logo-track img:nth-child(10) { animation-delay: 2.7s; }
.company-logo-slider .logo-track img:nth-child(11) { animation-delay: 3.0s; }
.company-logo-slider .logo-track img:nth-child(12) { animation-delay: 3.3s; }
.company-logo-slider .logo-track img:nth-child(13) { animation-delay: 3.6s; }
.company-logo-slider .logo-track img:nth-child(14) { animation-delay: 3.9s; }
.company-logo-slider .logo-track img:nth-child(15) { animation-delay: 4.2s; }
.company-logo-slider .logo-track img:nth-child(16) { animation-delay: 4.5s; }
.company-logo-slider .logo-track img:nth-child(17) { animation-delay: 4.8s; }
.company-logo-slider .logo-track img:nth-child(18) { animation-delay: 5.1s; }
.company-logo-slider .logo-track img:nth-child(19) { animation-delay: 5.4s; }
.company-logo-slider .logo-track img:nth-child(20) { animation-delay: 5.7s; }
.company-logo-slider .logo-track img:nth-child(21) { animation-delay: 6.0s; }
.company-logo-slider .logo-track img:nth-child(22) { animation-delay: 6.3s; }
.company-logo-slider .logo-track img:nth-child(23) { animation-delay: 6.6s; }
.company-logo-slider .logo-track img:nth-child(24) { animation-delay: 6.9s; }
.company-logo-slider .logo-track img:nth-child(25) { animation-delay: 7.2s; }
.company-logo-slider .logo-track img:nth-child(26) { animation-delay: 7.5s; }
.company-logo-slider .logo-track img:nth-child(27) { animation-delay: 7.8s; }
.company-logo-slider .logo-track img:nth-child(28) { animation-delay: 8.1s; }
.company-logo-slider .logo-track img:nth-child(29) { animation-delay: 8.4s; }
.company-logo-slider .logo-track img:nth-child(30) { animation-delay: 8.7s; }
.company-logo-slider .logo-track img:nth-child(31) { animation-delay: 9.0s; }
.company-logo-slider .logo-track img:nth-child(32) { animation-delay: 9.3s; }
.company-logo-slider .logo-track img:nth-child(33) { animation-delay: 9.6s; }


.section-divider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  width: 80%;
  max-width: 1000px; /* optional: batasi lebar maksimal */
}

.section-divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #00ffe0, #0070f3);
  opacity: 0.7;
  border-radius: 10px;
}

/* Ikon SVG */
.section-divider-icon svg {
  width: 36px;
  height: 36px;
  fill: #00ffe0;
  animation: rotateGearInfinite 4s linear infinite;
  transition: filter 0.3s ease, transform 0.3s ease;
  
}

/* Hover effect: neon glow */
.section-divider-icon svg:hover {
  filter: drop-shadow(0 0 6px #00ffe0) drop-shadow(0 0 10px #00ffe0);
  transform: scale(1.1);
  backdrop-filter: blur(8px);
}

/* Infinite rotation animation */
@keyframes rotateGearInfinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/* Animation */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .qr-code-box {
    display: none;
  }
}

.gradient-line {
  height: 2px;
  width: 80%;
  margin: 20px auto;
  background: linear-gradient(to right, #00ffe0, #0070f3);
  border-radius: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: 
    opacity 0.8s ease,
    transform 0.8s ease,
    box-shadow 0.4s ease;
}

/* Reveal saat scroll */
.gradient-line.reveal {
  opacity: 1;
  transform: translateY(0);
  animation: pulseGlow 2.5s infinite ease-in-out;
}

/* Hover neon glow tambahan */
.gradient-line:hover {
  box-shadow: 0 0 8px #00ffe0, 0 0 16px #0070f3, 0 0 24px #00ffe0;
}

/* Keyframes for pulsing glow */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 4px #00ffe0, 0 0 8px #0070f3;
  }
  50% {
    box-shadow: 0 0 12px #00ffe0, 0 0 24px #0070f3, 0 0 36px #00ffe0;
  }
  100% {
    box-shadow: 0 0 4px #00ffe0, 0 0 8px #0070f3;
  }
}
.contact-narrative {
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out;
}
.contact-narrative:hover {
  
  color: #0f172a;
  border-left: 4px solid #00ffe0;
  box-shadow: 0 0 10px #38bdf8;
  backdrop-filter: blur(8px);
}
.contact-narrative.reveal {
  opacity: 1;
  transform: translateY(0);
}

.narrative-title {
  font-size: 1.8rem;
  color: #38bdf8;
  font-weight: 600;
  margin-bottom: 0.5rem;
  animation: glowText 3s ease-in-out infinite alternate;
}

.narrative-subtitle {
  font-size: 1.1rem;
  font-style: italic;
  color: #e2e8f0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.narrative-title:hover {
  color: #ffffff;
  text-shadow: 
    0 0 5px #38bdf8, 
    0 0 10px #0ea5e9, 
    0 0 15px #06b6d4, 
    0 0 20px #22d3ee;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.narrative-subtitle:hover {
  color: #f8fafc;
  text-shadow: 
    0 0 4px #94a3b8, 
    0 0 8px #64748b;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

/* Text glow effect */
@keyframes glowText {
  from {
    text-shadow: 0 0 5px #38bdf8, 0 0 10px #0ea5e9;
  }
  to {
    text-shadow: 0 0 12px #38bdf8, 0 0 25px #0ea5e9;
  }
}
.dots-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}

.dot {
  fill: #00ffcc;
  opacity: 0;
  will-change: opacity, transform;
  animation: fadeInOut 8s infinite ease-in-out;
  filter: drop-shadow(0 0 2px #00ffcc) drop-shadow(0 0 4px #00ffcc);
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.8; transform: scale(1); }
}
#dots-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

/* --- Mobile Responsive Fix for Hero Section --- */
@media (max-width: 768px) {
  .qr-static-button {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin-top: 1.5rem;
    animation: fadeIn 0.8s ease-out forwards; /* Changed animation for mobile */
  }

  .qr-static-button img.qr-landing {
    width: 100px; /* Resize a bit smaller for mobile */
    height: 100px;
  }

  .hire-me-button {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin-top: 1rem;
  }

  .cta-buttons {
    gap: 1rem; /* Reduce gap between buttons */
    flex-wrap: wrap; /* Allow wrapping if screen is very small */
    justify-content: center;
  }

  .hero {
    height: auto; /* Allow hero section to expand beyond 100vh if content stacks */
    min-height: 100vh;
    padding-bottom: 3rem;
  }
}
