footer {
  text-align: center;
  padding: 40px;
  color: #64748b;
}

/* Bikin scroll antar section jadi lebih mulus */
html {
  scroll-behavior: smooth;
}

/* Custom Selection: Pas user blok teks, warnanya jadi sky-blue */
::selection {
  background-color: #0ea5e9;
  color: white;
}

/* Tambahkan efek glow halus di galeri karya */
#project-container div:hover {
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
  border-color: rgba(14, 165, 233, 0.4);
}

/* Styling Scrollbar Samping */
.custom-scroll::-webkit-scrollbar {
  height: 8px; /* Tinggi scrollbar horizontal */
}

.custom-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: #0ea5e9; /* Warna sky-500 */
  border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: #38bdf8; /* Warna sky-400 */
}

/* Biar di HP gesernya 'nempel' pas di tengah card */
.snap-x {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.snap-center {
  scroll-snap-align: center;
}