:root {
  --bg-primary: #ffffff;
  --bg-secondary: #fafbfc;
  --bg-accent: #f8f9fa;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --accent: #2d3748;
  --accent-hover: #1a202c;
  --shadow-sm: 0 1px 3px rgba(105, 78, 78, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

/* === Reset & Global === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  /* Menyembunyikan scroll horizontal */
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  /* lebih besar */
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Header & Navbar === */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}




.no-bottom-margin {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Parent dropdown */
/* Dropdown wrapper */
.dropdown {
  position: relative;
}

/* Dropdown menu default (desktop) */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 260px;
  background: white;
  /* warna dropdown */
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  z-index: 1000;
  padding: 8px;
}

/* List items */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border-radius: var(--radius-sm);
}

.dropdown-menu li a:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
  transform: translateX(4px);
}

/* Titles and description */
.dropdown-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.dropdown-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Arrow animation */
.dropdown .arrow {
  margin-left: 4px;
  font-size: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.dropdown.open .arrow {
  transform: rotate(180deg);
}

/* Responsive: mobile */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    /* bisa ditambah shadow ringan kalau mau */
    border: none;
    border-radius: 0;
    padding: 0;
    background: var(--bg-card);
    /* tetap putih / sama dengan desktop */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }

  /* Tampilkan dropdown saat klik / open */
  .dropdown.open .dropdown-menu {
    max-height: 500px;
    opacity: 1;
  }

  .dropdown-menu li a {
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
  }

  .dropdown-menu li:last-child a {
    border-bottom: none;
  }

}






/* Panah dropdown */
.dropdown .arrow {
  margin-left: 6px;
  font-size: 12px;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Rotasi panah saat dropdown dibuka */
.dropdown.open .arrow {
  transform: rotate(180deg);
}

/* Animasi slide dropdown mobile */
@media (max-width: 768px) {
  .dropdown-menu {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }

  .dropdown.open .dropdown-menu {
    max-height: 500px;
    /* tinggi maksimal bisa disesuaikan */
    opacity: 1;
  }
}


.dropdown-emoji {
  display: inline-block;
  margin-right: 8px;
  font-size: 16px;
  color: #a0a0a0;
  /* abu-abu lembut */
  vertical-align: middle;
}





/* === Footer === */













/* Hero Section */
.hero-section {
  padding: 120px 0;
  background: var(--bg-primary);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-text .btn {
  padding: 12px 24px;
}

/* Hero Image */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 115%;
  /* 50% dari container */
  height: auto;
}


/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    padding: 80px 0 60px;
  }

  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 48px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .hero-image img {
    width: 90%;
    max-width: 450px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 0 40px;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 14px;
  }
}


















/* ===== GLOBAL STYLE ===== */
/*body {
  font-family: Arial, sans-serif;
  color: #1e1e1e;
  margin: 0;
  padding: 0;
}*/

/* ===== 1. University Logos ===== */
.university-logos {
  padding: 55px 20px;
  /* dikurangi dari 60px */
  margin-top: -70px;
  /* NAIK ke atas */
  text-align: center;
  background: linear-gradient(to bottom,
      #ffffff 0%,
      #f9fafb 65%,
      #f3f4f6 100%);

}

@media (max-width: 768px) {
  .university-logos {
    margin-top: 0;
    /* PENTING */
    padding-top: 30px;
    padding-bottom: 30px;
  }
}


.university-logos .logos-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.university-logos .logos-container img {
  max-height: 55px;
  /* AWAL lebih besar */
  object-fit: contain;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  cursor: pointer;
}

/* Efek hover */
.university-logos .logos-container img:hover {
  transform: scale(1.3);
  /* PERBESAR saat hover */
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}




/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .career-cta {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .career-cta .cta-text {
    text-align: center;
  }

  .career-cta .cta-image img {
    max-width: 90%;
    /* responsive di mobile */
  }
}







/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .career-cta {
    flex-direction: column;
    align-items: center;
  }

  .career-cta .cta-text {
    text-align: center;
  }
}



/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .career-benefits-section .career-benefits {
    flex-direction: column;
    align-items: center;
  }

  .career-benefits-section .benefit {
    text-align: center;
  }
}




.university-logos .logos-header {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 30px;
  color: #1e1e1e;
}


/*biar responsive di semua hp */



/*iklan why different*/
.why-different-section {
  max-width: 1200px;
  margin: 80px auto;
  /* Jarak vertikal lebih lega */
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2 Kolom di Desktop */
  gap: 60px;
  /* Jarak tengah lebih besar */
  align-items: flex-start;
  /* Align top */
}



.main-title {
  font-size: 2.5rem;
  /* Judul besar di desktop */
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.main-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ===== Features List ===== */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Jarak antar item */
}

.feature-item {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  transition: all 0.2s;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.feature-header:hover .feature-title {
  color: #0077ff;
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item.active .feature-header .feature-title {
  color: var(--accent);
  /* Highlight judul aktif */
}

.feature-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.3s ease;
  opacity: 0;
}

.feature-item.active .feature-content {
  max-height: 500px;
  /* Cukup tinggi untuk teks panjang */
  opacity: 1;
  padding-bottom: 16px;
}

.feature-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== Image Right Section ===== */
.image-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-width: 300px;
}

.main-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  z-index: 1;
}

.image-right .main-image {
  margin-top: 50px;
  /* naikkan 20px ke atas */
}


/* ===== Mobile: turunkan gambar sedikit ===== */
@media (max-width: 768px) {
  .image-right {
    order: -1;
    /* gambar di atas */
    margin-bottom: 24px;
  }

  .image-right .main-image {
    margin-top: 0;
    transform: none;
  }
}

@media (max-width: 768px) {
  .floating-badge {
    position: static;
    /* 🔥 KUNCI UTAMA */
    margin: 8px auto;
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .image-right {
    max-width: 280px;
  }
}


/* ===== Floating Badges ===== */
/* =========================
   FLOATING BADGES (DESKTOP)
========================= */

/* Container gambar HARUS relative */
.image-right {
  position: relative;
}

/* Badge dasar */
.floating-badge {
  position: absolute;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #333;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  z-index: 2;

  will-change: transform;
  pointer-events: auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Posisi badge (DESKTOP) */
.badge-web {
  top: 18%;
  right: -14px;
}

.badge-android {
  top: 46%;
  left: -18px;
}

.badge-cloud {
  bottom: 22%;
  right: -14px;
}

/* Icon */
.badge-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.web-icon {
  background: #ffe5e5;
}

.android-icon {
  background: #e8f5e8;
}

.cloud-icon {
  background: #e3f2fd;
}

/* =========================
   FLOATING ANIMATIONS
========================= */

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

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

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

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

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

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

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

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

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

/* Terapkan animasi */
.badge-web {
  animation: floatSlow 5s ease-in-out infinite;
}

.badge-android {
  animation: floatMedium 6s ease-in-out infinite;
}

.badge-cloud {
  animation: floatFast 7s ease-in-out infinite;
}

/* Delay agar terasa natural */
.badge-web {
  animation-delay: 0s;
}

.badge-android {
  animation-delay: 1.2s;
}

.badge-cloud {
  animation-delay: 2.2s;
}

/* Hover effect */
.floating-badge:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

/* =========================
   RESPONSIVE MOBILE (AMAN)
========================= */

@media (max-width: 768px) {

  /* Grid jadi 1 kolom */
  .why-different-section {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 40px auto;
    padding: 0 24px;
  }

  .main-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .main-description {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 32px;
  }

  /* Gambar di atas */
  .image-right {
    order: -1;
    max-width: 320px;
    margin: 0 auto 12px;
  }

  .main-image {
    width: 100%;
    height: auto;
    transform: none;
    margin: 0;
  }

  /* BADGE DI MOBILE → IKUT FLOW (ANTI TABRAK) */
  .floating-badge {
    position: static;
    margin: 6px auto;
    width: fit-content;
    animation: floatSlow 8s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

/* Extra small */
@media (max-width: 380px) {
  .main-title {
    font-size: 1.5rem;
  }

  .floating-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}

/* =========================
   Career Resources Section
========================= */

.career-section {
  margin: 60px 0;
}

.career-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab:hover {
  background: var(--bg-accent);
  color: var(--text-primary);
}

.tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.resources {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.resource-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--bg-primary);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.resource-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.resource-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.resource-card .meta {
  font-size: 12px;
  color: var(--text-muted);
}

.show-more {
  margin-top: 20px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.show-more:hover {
  background: var(--accent);
  color: #fff;
}


/* =========================
   Success Stories
========================= */
.success-stories {
  margin: 60px 0;
}

.success-stories h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.stories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.story-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--bg-primary);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.story-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.story-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.story-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.story-card span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.story-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* =========================
   Group section
========================= */


/* === Group Section === */
.group-section {
  margin: 60px auto;
  padding: 0 20px;
  max-width: 1200px;
}

/* === Header Section === */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.section-tittle {
  font-size: 28px;
  font-weight: 600;
  color: #333;
}

.controls {
  top: -65px;
  /* Menarik tombol ke atas agar sejajar dengan Judul Header */
  right: 0;
  /* Rata kanan */
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 20px;
}

.controls a {
  font-size: 32px;
  color: #444;
  transition: color 0.3s ease;
  text-decoration: none;
}

.controls a:hover {
  color: #007bff;
}

/* === Member Card === */
.member {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.15) 0px 6px 16px;
  margin-top: 20px;
  position: relative
}

/* kiri (deskripsi) */
.deskripsi {
  flex: 1;
  padding: 40px;
  color: #444;
  transition: opacity 0.6s ease-in-out;
  opacity: 1;
}

.deskripsi p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* info nama */
.nama {
  margin-top: 20px;
}

.nama p {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
  transition: opacity 0.6s ease-in-out;
  opacity: 1;
}

.nama hr {
  margin: 15px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.read-story {
  display: inline-block;
  font-size: 12px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-story:hover {
  color: #0056b3;
}

/* kanan (foto) */
.face {
  flex: 0 0 445px;
  height: 360px;
  background: #f7f7f7;
}

.face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease-in-out;
  opacity: 1;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .face {
    flex: 0 0 320px;
    height: 280px;
  }

  .deskripsi {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .section-tittle {
    font-size: 24px;
  }

  .controls a {
    font-size: 28px;
  }

  .member {
    flex-direction: column;
  }

  .controls {
    position: static;
    /* Kembali ke aliran normal dokumen */
    order: 2;
    /* URUTAN KE-2 (Di Tengah) */
    justify-content: center;
    /* Tombol rata tengah */
    width: 100%;
    margin: 10px 0 20px 0;
    /* Jarak atas bawah */
  }

  .face {
    order: 1;
    /* URUTAN KE-1 */

    /* Style lama kamu tetap dipertahankan */
    order: 1;
    /* Update dari -1 ke 1 agar urut */
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0 0 0;
  }

  .deskripsi {
    order: 3;
    /* URUTAN KE-3 */
    padding-top: 10px;
    /* Sedikit jarak dari tombol */
  }

  .section-akun {
    margin: 40px 0;
    /* Kurangi margin luar */
    padding: 0 15px;
    /* Beri jarak dari pinggir layar */
  }

  .rada {
    padding: 40px 20px;
    /* Kurangi padding dalam */
    border-radius: 16px;
    gap: 16px;
  }

  .make-akun {
    font-size: 1.5rem;
    /* Perkecil judul agar muat */
  }

  .rada p {
    font-size: 0.95rem;
    /* Perkecil deskripsi */

  }

  /* Tombol Full Width di HP agar mudah ditekan */
  .create {
    width: 100%;
    /* Lebar penuh */
    padding: 16px;
    /* Area sentuh lebih besar */
    font-size: 1rem;
  }

  .group-section {
    padding: 0 10px;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
  }

  .section-tittle {
    font-size: 22px;
  }

  .controls a {
    font-size: 26px;
  }

  /* Card */
  .member {
    flex-direction: column;
    box-shadow: rgba(149, 157, 165, 0.15) 0px 4px 10px;
    border-radius: 12px;
  }

  /* Foto pindah di atas agar bagus */
  .face {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
    background: #f8f9fa;
    padding: 20px 0;
  }

  .face img {
    width: 65%;
    max-width: 260px;
    height: auto;
    border-radius: 12px;
  }

  /* Deskripsi */
  .deskripsi {
    padding: 20px;
  }

  .deskripsi p {
    font-size: 14px;
    text-align: justify;
  }

  /* Nama */
  .nama {
    margin-top: 15px;
  }

  .nama p {
    font-size: 13px;
  }

  .read-story {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .section-tittle {
    font-size: 20px;
  }

  .deskripsi p {
    font-size: 14px;
  }

  .read-story {
    font-size: 13px;
  }

  .face img {
    width: 80%;
    max-width: 220px;
  }

  .deskripsi p {
    font-size: 13px;
  }

  .nama p {
    font-size: 12px;
  }
}




/* ===== Create Account Section ===== */

.section-akun {
  width: 100%;
  padding: 28px 0 32px;
  background: #ffffff;
}

.section-akun .container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

.simple-member-cta {
  width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.rada-content.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.make-akun {
  margin: 0 0 14px;
  max-width: 700px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #24324a;
}

.member-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding-left: 6px;
}

.avatar-item {
  position: relative;
  margin-left: -8px;
  transition: transform 0.2s ease;
}

.avatar-item:first-child {
  margin-left: 0;
}

.avatar-item:hover {
  transform: translateY(-2px) scale(1.03);
  z-index: 2;
}

.avatar-item img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: #f3f4f6;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.10);
}

.create {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.create-dark {
  background: #2F4FD2;
  color: #ffffff;
  box-shadow: 0 5px 14px rgba(47, 79, 210, 0.18);
}

.create-dark:hover {
  background: #2846bd;
  transform: translateY(-1px);
}

/* =========================
   ANIMASI MASUK / KELUAR
========================= */

.reveal-cta {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-cta.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-cta.out-view {
  opacity: 0;
  transform: translateY(18px);
}

/* Judul */
.reveal-cta .make-akun {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-cta.in-view .make-akun {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

/* Avatar group */
.reveal-cta .avatar-item {
  opacity: 0;
  transform: translateY(10px) scale(0.96);
}

.reveal-cta.in-view .avatar-item {
  animation: avatarFadeUp 0.45s ease forwards;
}

/* Stagger avatar */
.reveal-cta.in-view .avatar-item:nth-child(1) {
  animation-delay: 0.12s;
}

.reveal-cta.in-view .avatar-item:nth-child(2) {
  animation-delay: 0.18s;
}

.reveal-cta.in-view .avatar-item:nth-child(3) {
  animation-delay: 0.24s;
}

.reveal-cta.in-view .avatar-item:nth-child(4) {
  animation-delay: 0.30s;
}

.reveal-cta.in-view .avatar-item:nth-child(5) {
  animation-delay: 0.36s;
}

.reveal-cta.in-view .avatar-item:nth-child(6) {
  animation-delay: 0.42s;
}

.reveal-cta.in-view .avatar-item:nth-child(7) {
  animation-delay: 0.48s;
}

.reveal-cta.in-view .avatar-item:nth-child(8) {
  animation-delay: 0.54s;
}

/* Tombol */
.reveal-cta .create {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.reveal-cta.in-view .create {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.38s;
}

/* Pulse halus tombol */
.cta-glow {
  position: relative;
  overflow: hidden;
}

.reveal-cta.in-view .cta-glow {
  animation: ctaPulse 2.8s ease-in-out infinite;
}

/* Keyframes */
@keyframes avatarFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 5px 14px rgba(47, 79, 210, 0.18);
  }

  50% {
    box-shadow: 0 8px 20px rgba(47, 79, 210, 0.28);
  }
}

@media (max-width: 768px) {
  .section-akun {
    padding: 24px 0 28px;
  }

  .make-akun {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .member-avatars {
    margin-bottom: 14px;
  }

  .avatar-item {
    margin-left: -7px;
  }

  .avatar-item img {
    width: 38px;
    height: 38px;
  }

  .create {
    min-width: 128px;
    height: 38px;
    font-size: 0.9rem;
    padding: 0 16px;
  }
}


.cta-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.18) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
}

.reveal-cta.in-view .cta-glow::after {
  animation: shineSweep 2.4s ease 0.8s 1;
}

@keyframes shineSweep {
  from {
    left: -120%;
  }

  to {
    left: 140%;
  }
}


.profile-dropdown {
  position: relative;
}

/* === Profile Button === */
.profile-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.15s ease;
}

.profile-btn:hover {
  opacity: 0.9;
}

/* === Profile Avatar Instagram Style === */
/* === Profile Avatar Instagram Style === */
.profile-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  /* bulat sempurna */
  background: #fff;
  /* putih */
  border: 2px solid #e0e0e0;
  /* border tipis */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-avatar:hover {
  border-color: #bdbdbd;
  /* border sedikit gelap saat hover */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  /* shadow tipis */
}

.profile-avatar svg,
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* agar gambar menyesuaikan lingkaran */
  border-radius: 50%;
  fill: #000;
  /* icon tetap hitam */
}



/* === Dropdown Menu === */
.profile-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;

  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.profile-dropdown-menu.active {
  display: flex;
  max-height: 600px;
  opacity: 1;
}

/* === Dropdown Header === */
.dropdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;

  border-radius: 0 0;
}

.header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #262626;
  flex-shrink: 0;
}

.header-avatar svg {
  width: 20px;
  height: 20px;
}

.header-info {
  flex: 1;
  min-width: 0;
}

.header-name {
  font-weight: 600;
  font-size: 14px;
  color: #262626;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === Dropdown Items === */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #262626;
  text-decoration: none;
  font-size: 14px;
  border-radius: 0px;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: #f2f2f2;
  /* hanya sedikit perubahan warna */
}

.dropdown-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.dropdown-item span {
  flex: 1;
}


.header-email {
  font-size: 13px;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .profile-dropdown-menu {
    position: fixed;
    top: 70px;
    right: 20px;
    left: auto;
    width: calc(100% - 40px);
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }

  .dropdown-header {
    padding: 12px 14px;
  }

  .dropdown-item {
    padding: 10px 14px;
  }
}













/* Registration Steps CSS - Prefix: reg- */

#registration-steps {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  position: relative;
}

#registration-steps * {
  box-sizing: border-box;
}

.reg-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.reg-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  font-weight: 400;
  color: #333;
}

/* Sticky Navigation */
.reg-sticky-nav {
  position: fixed;
  left: calc(50% - 455px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;

  background: #000;
  border-radius: 50px;
  padding: 20px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}

.reg-wrapper {
  position: relative;
}

/* Hidden by default */
.reg-sticky-nav {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

/* WHEN ACTIVE → show */
.reg-sticky-nav.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.reg-nav-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.reg-nav-item {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.reg-nav-dot {
  width: 14px;
  height: 34px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.reg-nav-item.active .reg-nav-dot {
  height: 60px;
}

.reg-nav-item:hover .reg-nav-dot {
  transform: scale(1.1);
}

.reg-nav-label {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.reg-nav-item:hover .reg-nav-label {
  opacity: 1;
}

.reg-nav-label::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #000;
}

.reg-nav-item.active .reg-nav-label {
  opacity: 1;
  pointer-events: auto;
}


/* Color themes for each step */
.reg-nav-dot.reg-step-1 {
  background: linear-gradient(135deg, #e91e63, #ff6b9d);
}

.reg-nav-dot.reg-step-2 {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}

.reg-nav-dot.reg-step-3 {
  background: linear-gradient(135deg, #a8c0ff, #c4b5fd);
}

.reg-nav-dot.reg-step-4 {
  background: linear-gradient(135deg, #5eead4, #14b8a6);
}

.reg-nav-dot.reg-step-5 {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.reg-nav-item:not(.active) .reg-nav-dot {
  opacity: 0.4;
}

/* Step Sections */
.reg-step-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  padding-top: 20px;
  padding-bottom: 60px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.reg-step-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.reg-content-area {
  flex: 1;
  max-width: 100%;
}

.reg-content-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* default behavior, children bebas */
}

.reg-mockup-container {
  align-self: flex-end;
}

.reg-mockup-container {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 50%, #ffeaa7 100%);
  border-radius: 22px;

  max-width: 750px;
  padding: 28px;
  margin-bottom: 40px;

  /* hapus centering */
  margin-left: 0;
  margin-right: 100px;

  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.12);
}


.reg-mockup-container.reg-registration {
  background: linear-gradient(135deg, #c471ed 0%, #f64f59 50%, #feca57 100%);
}

.reg-mockup-container.reg-pretest {
  background: linear-gradient(135deg, #a8c0ff 0%, #c4b5fd 50%, #e0c3fc 100%);
}

.reg-mockup-container.reg-admin {
  background: linear-gradient(135deg, #5eead4 0%, #14b8a6 50%, #0d9488 100%);
}

.reg-mockup-container.reg-daftar-ulang {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}

.reg-browser-window {
  background: #ffffff;
  border-radius: 18px;
  /* lebih bulat agar seperti contoh */
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  /* mockup-style shadow */
  border: 1px solid rgba(0, 0, 0, 0.08);
  /* thin border seperti screenshot */
  max-width: 700px;
  margin: 0 auto;
  border-radius: 18px;
}

/* Header like macOS Safari */
.reg-browser-header {
  background: #eef1f4;
  /* lebih terang, mirip screenshot */
  padding: 16px 20px;
  /* lebih tinggi */
  display: flex;
  align-items: center;
  gap: 10px;
}

.reg-browser-dot {
  width: 14px;
  /* lebih besar */
  height: 14px;
  border-radius: 50%;
}

.reg-dot-red {
  background: #ff5f56;
}

.reg-dot-yellow {
  background: #ffbd2e;
}

.reg-dot-green {
  background: #27c93f;
}


.reg-form-image-only {
  padding: 0 !important;
  /* hapus padding yang membuat tidak rapi */
}

/* Image inside mockup */
.reg-form-image {
  max-height: 360px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* tetap rapi jika rasio tidak sama */
  border-radius: 0;
}

/* Limit height so mockup stays elegant */
.reg-form-image {
  max-height: 520px;
}

.reg-form-content {
  padding: 40px;
}

.reg-form-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: #333;
}

.reg-form-group {
  margin-bottom: 25px;
}

.reg-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.reg-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  font-family: inherit;
}

.reg-input:focus {
  outline: none;
  border-color: #e91e63;
}

.reg-input-hint {
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}

.reg-password-input-wrapper {
  position: relative;
}

.reg-password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
}

.reg-optional {
  color: #999;
  font-weight: 400;
}

.reg-description {
  max-width: 750px;
  width: 100%;

  /* Hilangkan locking dari flexbox */
  align-self: unset !important;

  /* Kamu bebas atur posisi pakai margin */
  margin-top: 20px;
  margin-left: 310px;
  /* geser kiri-kanan sesuka hati */
  margin-right: 0;

  text-align: left;
  padding-left: 0;
  /* reset padding */
}


.reg-description h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.reg-description p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  margin-top: 0;
}



/* Registration form specific styles */
.reg-registration-form {
  background: white;
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
}

.reg-form-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 25px;
}

.reg-form-header-icon {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.reg-tempa-logo {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e91e63;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .reg-sticky-nav {
    left: 20px;
    padding: 15px 10px;
  }

  .reg-nav-dot {
    width: 12px;
    height: 30px;
  }

  .reg-nav-item.active .reg-nav-dot {
    height: 45px;
  }

  .reg-title {
    font-size: 2rem;
  }

  .reg-content-area {
    padding: 0 20px;
  }

  .reg-mockup-container {
    padding: 20px;
  }

  .reg-form-content {
    padding: 20px;
  }
}





/* Carousel container */
.reg-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 0;
  /* override padding dari reg-form-content */
}

/* Track that holds the images */
.reg-carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}

/* Carousel images */
.reg-carousel img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 0;
}

/* Navigation buttons */
.reg-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 12px;
  font-size: 22px;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.2s;
  z-index: 10;
}

.reg-carousel-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.reg-carousel-btn.prev {
  left: 10px;
}

.reg-carousel-btn.next {
  right: 10px;
}













.reg-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 8px;
  color: #333;
}

.reg-kententuan-list {
  margin: 0;
  padding-left: 20px;
}

.reg-kententuan-list li {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 15px;
  color: #555;
}




/* =========================================================
   OVERLAY TUTORIAL (menimpa home) - rapi & konsisten
   ========================================================= */

.tutorial-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  /* Overlay ini jadi scroll container */
  display: none;
  overflow-y: auto;
  overflow-x: hidden;

  /* background transparan, blur ditangani oleh ::before */
  background: transparent;

  /* efek fade */
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tutorial-overlay.is-open {
  display: block;
  opacity: 1;
}

/* Layer blur (dipisah supaya sticky/scroll tidak rusak) */
.tutorial-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(px);
}

/* Kontainer isi tutorial */
.tutorial-overlay-inner {
  max-width: 1200px;
  margin: 24px auto;
  padding: 24px 20px 60px;

  /* “kartu” di atas blur (biar konten enak dibaca) */


  /* penting untuk sticky child */
  overflow: visible;
}

/* Tombol tutup */
.tutorial-close {
  position: sticky;
  top: 12px;
  margin-left: auto;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;

  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  font-weight: 600;

  z-index: 50;
}

/* ✅ Home jangan display:none kalau mau blur terlihat */
#home-content.is-hidden {
  filter: blur(6px);
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
}

/* Matikan scroll body saat overlay tampil */
body.no-scroll {
  overflow: hidden;
}

/* Fallback: kalau browser tidak support blur */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .tutorial-overlay::before {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* =========================================================
   OPTIONAL: paksa sticky nav tutorial tetap jalan
   (kalau kamu pakai sticky nav di tutorial)
   ========================================================= */





/* =========================================
   SECTION WRAPPER
========================================= */
.skills-section {
  max-width: 1320px;
  margin: 100px auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
}

/* =========================================
   LEFT TEXT COLUMN
========================================= */
.skills-text {
  flex: 0 0 360px;
  max-width: 360px;
}

.skills-text h2,
.skills-text h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1c1d1f;
  margin-bottom: 18px;
  line-height: 1.25;
}

.skills-text p {
  font-size: 18px;
  color: #6a6f73;
  line-height: 1.8;
  margin: 0;
}

.skills-text h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1c1d1f;
  margin-bottom: 18px;
  line-height: 1.25;
}

.skills-changing-text {
  display: inline-block;
  color: #3043DA;
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.skills-changing-text.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

/* =========================================
   CARDS CONTAINER
========================================= */
.skills-cards-container {
  flex: 1;
  overflow: visible;
}

.skills-cards-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* =========================================
   CARD STYLE
========================================= */
.skills-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.skills-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================
   CARD IMAGE
========================================= */
.skills-card-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skills-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* =========================================
   CARD CONTENT
========================================= */
.skills-card-content {
  padding: 18px 22px 22px;
}

.students-count {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6a6f73;
  font-size: 14px;
  margin-bottom: 14px;
}

.students-count i {
  font-size: 16px;
  color: #7e7e7e;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.skills-card-title {
  font-size: 20px;
  font-weight: 500;
  color: #1c1d1f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.arrow {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.skills-card:hover .arrow {
  transform: translateX(5px);
}

/* =========================================
   RESPONSIVE MODE
========================================= */
@media (max-width: 1220px) {
  .skills-section {
    max-width: 96%;
    gap: 48px;
  }

  .skills-text {
    flex: 0 0 320px;
    max-width: 320px;
  }

  .skills-text h2,
  .skills-text h1 {
    font-size: 2.3rem;
  }

  .skills-card-image {
    height: 210px;
  }
}

@media (max-width: 1024px) {
  .skills-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .skills-text {
    flex: none;
    max-width: 680px;
    margin: 0 auto;
  }

  .skills-cards-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .skills-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .skills-section {
    margin: 60px auto;
    padding: 0 24px;
    gap: 32px;
  }

  .skills-text h2,
  .skills-text h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .skills-text p {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    margin-top: 12px;
  }

  .skills-cards-container {
    padding: 4px 0;
  }

  .skills-cards-wrapper {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .skills-card {
    flex: 1;
    border-radius: 16px;
  }

  .skills-card-image {
    height: 180px;
  }

  .skills-card-content {
    padding: 16px 20px;
  }

  .skills-card-title {
    font-size: 18px;
  }
}




.students-count {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6a6f73;
  font-size: 14px;
  margin-bottom: 14px;
}

.student-avatars {
  display: flex;
  align-items: center;
  margin-right: 4px;
}

.student-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  background: #f3f4f6;
  margin-left: -6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.student-avatars .student-avatar:first-child {
  margin-left: 0;
}

.students-count span {
  white-space: nowrap;
  line-height: 1;
}


.students-count {
  display: flex;
  align-items: center;
  gap: 0;
  color: #6a6f73;
  font-size: 140px;
  margin-bottom: 14px;
}

.student-avatars {
  display: flex;
  align-items: center;
  margin-right: 6px;
}

.student-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  background: #f3f4f6;
  margin-left: -6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.student-avatars .student-avatar:first-child {
  margin-left: 0;
}

.students-remaining {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #6a6f73;
  white-space: nowrap;
  margin-left: 0;
}




/* =========================================================
   ACADEMY CAROUSEL — SUPER SMOOTH + STABLE VERSION
========================================================= */

/* WRAPPER */
.academy-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 24px 0;
}

/* CARD CONTAINER */
.academy-card {
  background: #0c0d26;
  border-radius: 22px;
  padding: 28px 32px;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  overflow: hidden;
}

/* GRID LAYOUT */
.academy-section {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 18px;
}

/* TEXT CONTENT */
.academy-text-content {
  color: white;
}

.academy-text-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.academy-text-content p {
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 26px;
  opacity: 0.9;
}

/* BUTTON */
.academy-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 9px 22px;
  border-radius: 24px;
  font-size: 0.97rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.academy-cta-btn:hover {
  background: white;
  color: #0a0e27;
}

/* =========================================================
   CAROUSEL (GRID-BASED, NO MORE ABSOLUTE)
========================================================= */

/* 3-COLUMN GRID (Stable layout) */
.academy-carousel-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;

  height: 360px;
  overflow: hidden;

  padding-right: 20px;
}

/* Each column = stack of cards */
.academy-carousel-col {
  display: flex;
  flex-direction: column;
  gap: 18px;

  /* smooth animation */
  animation: smoothScroll 28s linear infinite;
  will-change: transform;
}

/* Column rotation variations */
.academy-carousel-col:nth-child(1) {
  --rot: -2deg;
  animation-duration: 26s;
}

.academy-carousel-col:nth-child(2) {
  --rot: 1.5deg;
  animation-duration: 28s;
}

.academy-carousel-col:nth-child(3) {
  --rot: -1deg;
  animation-duration: 29s;
}

/* Smooth autoscroll */
@keyframes smoothScroll {
  0% {
    transform: translateY(-35%) rotate(var(--rot));
  }

  100% {
    transform: translateY(0%) rotate(var(--rot));
  }
}

/* =========================================================
   COURSE CARD
========================================================= */

.academy-course-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 200px;

  margin: 0 auto;

  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.academy-course-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

/* IMAGE */
.academy-card-image {
  width: 100%;
  height: 135px;
  overflow: hidden;
}

.academy-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.academy-card-content {
  padding: 12px 14px;
  background: white;
}

.academy-card-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a0e27;
}

/* RANDOM NATURAL ROTATION LOOK */
.academy-carousel-col:nth-child(1) .academy-course-card:nth-child(odd) {
  transform: rotate(-2deg);
}

.academy-carousel-col:nth-child(2) .academy-course-card:nth-child(even) {
  transform: rotate(1.5deg);
}

.academy-carousel-col:nth-child(3) .academy-course-card:nth-child(odd) {
  transform: rotate(-1deg);
}

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

@media (max-width: 1024px) {
  .academy-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .academy-carousel-container {
    height: 320px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .academy-carousel-container {
    grid-template-columns: 1fr;
    height: 300px;
  }

  .academy-course-card {
    max-width: 190px;
  }

  .academy-text-content h1 {
    font-size: 1.9rem;
  }
}









/* ===============================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZATION
=============================================== */

/* Tablet & Below (992px) */
@media (max-width: 992px) {
  body {
    font-size: 15px;
  }

  .container {
    width: 95%;
    padding: 0 16px;
  }

  /* Hero Section */
  .hero-section {
    padding: 80px 0 60px;
  }

  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-image img {
    width: 100%;
    max-width: 450px;
  }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  /* Header & Navbar */
  header {
    padding: 12px 0;
  }

  /* Dropdown Menu Mobile */
  .dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: var(--bg-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }

  .dropdown.open .dropdown-menu {
    max-height: 500px;
    opacity: 1;
  }

  .dropdown-menu li a {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
  }

  .dropdown-menu li:last-child a {
    border-bottom: none;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 60px 0 40px;
  }

  .hero-text h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .hero-text p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-text .btn {
    width: 100%;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 350px;
  }

  /* University Logos */
  .university-logos {
    padding: 40px 15px;
  }

  .university-logos .logos-header {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .university-logos .logos-container {
    gap: 25px;
  }

  .university-logos .logos-container img {
    max-height: 40px;
  }

  /* Why Different Section Mobile */
  .why-different-section {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px 0;
    padding: 0 20px;
  }

  .main-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .main-description {
    text-align: center;
    font-size: 1rem;
  }

  .image-right {
    order: -1;
    margin-top: 0;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .main-image {
    margin-top: 0;
    transform: none;
    width: 100%;
  }

  /* Floating Badges Mobile */
  .floating-badge {
    font-size: 0.7rem;
    padding: 5px 10px;
    transform: none;
  }

  .badge-web {
    top: 8%;
    right: -5px;
  }

  .badge-android {
    top: 42%;
    left: -15px;
  }

  .badge-cloud {
    bottom: 18%;
    right: -5px;
  }

  .badge-icon {
    width: 10px;
    height: 10px;
  }

  /* Career Section */
  .career-section {
    margin: 40px 0;
    padding: 0 15px;
  }

  .career-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .tabs {
    gap: 8px;
  }

  .tab {
    padding: 6px 12px;
    font-size: 13px;
  }

  .resources {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .resource-card {
    padding: 16px;
  }

  /* Success Stories Mobile */
  .success-stories {
    margin: 40px 0;
    padding: 0 15px;
  }

  .success-stories h2 {
    font-size: 22px;
  }

  .stories {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-card {
    padding: 14px;
  }

  /* Group Section Mobile */
  .group-section {
    padding: 0 15px;
    margin: 40px 0;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .section-tittle {
    font-size: 22px;
  }

  .controls {
    position: static;
    order: 2;
    justify-content: center;
    width: 100%;
    margin: 10px 0 20px 0;
  }

  .controls a {
    font-size: 28px;
  }

  .member {
    flex-direction: column;
    border-radius: 12px;
    margin-top: 15px;
  }

  .face {
    order: 1;
    width: 100%;
    height: auto;
    padding: 20px 0 0 0;
    display: flex;
    justify-content: center;
    background: #f8f9fa;
  }

  .face img {
    width: 70%;
    max-width: 240px;
    height: auto;
    border-radius: 12px;
  }

  .deskripsi {
    order: 3;
    padding: 20px 16px;
  }

  .deskripsi p {
    font-size: 14px;
    text-align: justify;
  }

  .nama p {
    font-size: 13px;
  }

  /* Section Akun Mobile */
  .section-akun {
    margin: 40px 0;
    padding: 0 15px;
  }

  .rada {
    padding: 40px 20px;
    border-radius: 16px;
    gap: 16px;
  }

  .make-akun {
    font-size: 1.5rem;
  }

  .rada p {
    font-size: 0.95rem;
  }

  .create {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }

  /* Profile Dropdown Mobile */
  .profile-avatar {
    width: 38px;
    height: 38px;
  }

  .profile-dropdown-menu {
    position: fixed;
    top: 70px;
    right: 15px;
    left: auto;
    width: calc(100% - 30px);
    max-width: 280px;
    border-radius: 12px;
  }

  .dropdown-header {
    padding: 12px 14px;
  }

  .dropdown-item {
    padding: 10px 14px;
    font-size: 13px;
  }

  /* Registration Steps Mobile */
  .reg-wrapper {
    padding: 30px 15px;
  }

  .reg-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .reg-sticky-nav {
    left: 15px;
    padding: 12px 8px;
  }

  .reg-nav-dot {
    width: 10px;
    height: 28px;
  }

  .reg-nav-item.active .reg-nav-dot {
    height: 40px;
  }

  .reg-step-section {
    padding: 60px 0 40px;
  }

  .reg-mockup-container {
    padding: 20px;
    margin-right: 0;
    margin-left: 0;
  }

  .reg-browser-window {
    max-width: 100%;
  }

  .reg-browser-header {
    padding: 12px 16px;
  }

  .reg-form-content {
    padding: 24px 16px;
  }

  .reg-form-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .reg-description {
    margin-left: 0;
    margin-right: 0;
    padding: 0 15px;
    text-align: center;
  }

  .reg-description h2 {
    font-size: 1.6rem;
  }

  .reg-description p {
    font-size: 0.95rem;
  }

  /* Skills Section Mobile */
  .skills-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    margin: 60px auto;
    padding: 15px;
  }

  .skills-text {
    flex: none;
    max-width: 100%;
  }

  .skills-text h1 {
    font-size: 2rem;
  }

  .skills-text p {
    font-size: 16px;
  }

  .skills-card {
    flex: 0 0 100%;
  }

  .skills-card-image {
    height: 180px;
  }

  .skills-card-content {
    padding: 18px;
  }

  .skills-card-title {
    font-size: 18px;
  }

  /* Academy Section Mobile */
  .academy-card {
    padding: 24px 20px;
  }

  .academy-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .academy-text-content h1 {
    font-size: 1.8rem;
  }

  .academy-text-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .academy-cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .academy-carousel-container {
    grid-template-columns: 1fr;
    height: 280px;
    gap: 14px;
    padding-right: 0;
  }

  .academy-course-card {
    max-width: 180px;
  }

  .academy-card-image {
    height: 120px;
  }

  .academy-card-content {
    padding: 10px 12px;
  }

  .academy-card-content h3 {
    font-size: 0.85rem;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 13px;
  }

  .main-title {
    font-size: 1.5rem;
  }

  .main-description {
    font-size: 0.9rem;
  }

  .floating-badge {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  .badge-web {
    right: 0;
  }

  .badge-android {
    left: 0;
  }

  .badge-cloud {
    right: 0;
  }

  .section-tittle {
    font-size: 20px;
  }

  .controls a {
    font-size: 24px;
  }

  .face img {
    width: 85%;
    max-width: 200px;
  }

  .deskripsi p {
    font-size: 13px;
  }

  .make-akun {
    font-size: 1.3rem;
  }

  .rada p {
    font-size: 0.9rem;
  }

  .skills-text h1 {
    font-size: 1.7rem;
  }

  .skills-text p {
    font-size: 15px;
  }

  .academy-text-content h1 {
    font-size: 1.5rem;
  }

  .academy-text-content p {
    font-size: 0.88rem;
  }
}

/* Extra Small (380px) */
@media (max-width: 380px) {
  .hero-text h1 {
    font-size: 20px;
  }

  .main-title {
    font-size: 1.4rem;
  }

  .floating-badge {
    font-size: 0.6rem;
    padding: 3px 6px;
  }

  .badge-icon {
    width: 8px;
    height: 8px;
  }

  .make-akun {
    font-size: 1.2rem;
  }

  .create {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/* ===============================================
   LANDSCAPE MOBILE FIX
=============================================== */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    padding: 40px 0;
  }

  .why-different-section {
    margin: 30px 0;
  }

  .reg-step-section {
    padding: 40px 0 30px;
  }
}




.btn-calm {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 220px;
  height: 44px;
  padding: 0 8px 0 16px;
  background: #f3f3f3;
  border-radius: 999px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.btn-text {
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 400;
  color: #111;
  white-space: nowrap;
  transition: color 0.35s ease;
}

/* lingkaran kecil awal */
.btn-calm::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #3043DA;
  z-index: 1;
  transition: all 0.4s ease;
}

/* saat hover full biru */
.btn-calm:hover::before {
  width: 100%;
  height: 100%;
  right: 0;
  border-radius: 999px;
}

.btn-calm:hover .btn-text {
  color: #fff;
}

.btn-calm:hover {
  box-shadow: 0 8px 18px rgba(48, 67, 218, 0.22);
}

/* area panah */
.btn-arrow {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* garis utama panah */
.arrow-line {
  position: relative;
  display: block;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

/* kepala panah */
.arrow-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 1px;
}

/* gerakan halus saat hover */
.btn-arrow {
  transition: transform 0.35s ease;
}

.btn-calm:hover .btn-arrow {
  transform: translateX(1px);
}

/* teks saja yang berubah */
.btn-text {
  display: inline-block;
  min-width: 14ch;
  /* ⬅️ SESUAIKAN dgn teks terpanjang */
  white-space: nowrap;
}

/* cursor optional */
.btn-text::after {
  content: "|";
  margin-left: 2px;
  opacity: 0.5;
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  50%,
  100% {
    opacity: 0.5;
  }

  25%,
  75% {
    opacity: 0;
  }
}


.btn-text::after {
  display: none;
}













/* ============================= */
/* Developer Network Section */
/* ============================= */

.developer-network-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 0;
  background-color: white;
}

.developer-network-section * {
  box-sizing: border-box;
}

.developer-network-section .section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 64px;
  align-items: center;
}

.developer-network-section .content {
  padding-right: 12px;
}

.developer-network-section h1 {
  font-size: 36px;
  font-weight: 400;
  color: #2c3e50;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.developer-network-section h2 {
  font-size: 26px;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.developer-network-section .subtitle {
  font-size: 15px;
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 24px;
}

.developer-network-section .description {
  font-size: 15px;
  color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 0;
}

.developer-network-section .divider {
  width: 100%;
  height: 1px;
  background-color: #ecf0f1;
  margin-bottom: 24px;
}

.developer-network-section .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #3498db;
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: 24px;
}

.developer-network-section .cta-link:hover {
  gap: 12px;
}

.developer-network-section .cta-link svg {
  width: 16px;
  height: 16px;
}

/* ============================= */
/* Gambar kanan */
/* ============================= */

.developer-network-section .image-container {
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.developer-network-section .tutorial-image {
  width: 100%;
  height: 80%;
  object-fit: contain;
  display: block;
}

/* ============================= */
/* Animasi pergantian teks */
/* ============================= */

.tutorial-copy {
  transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease;
  will-change: opacity, transform;
}

.tutorial-copy.is-changing {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(1px);
}

/* ============================= */
/* Delay scroll animation */
/* ============================= */

@media (max-width: 768px) {
  .developer-network-section {
    padding: 48px 0;
  }

  .developer-network-section .section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
    text-align: center;
  }

  .developer-network-section h1 {
    font-size: 28px;
  }

  .developer-network-section .image-container {
    order: -1;
    height: 280px;
    margin: 0 auto;
  }

  .developer-network-section .content {
    padding-right: 0;
  }

  .developer-network-section .divider {
    margin: 20px auto;
    width: 60px;
  }
}

.developer-network-section .tutorial-copy.fade-up {
  transition-delay: 0.28s;
}

.developer-network-section .cta-link.fade-up {
  transition-delay: 0.36s;
}

.developer-network-section .image-container.fade-right {
  transition-delay: 0.18s;
}

/* ============================= */
/* Responsive */
/* ============================= */

@media (max-width: 968px) {
  .developer-network-section {
    padding: 56px 0;
  }

  .developer-network-section .section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }

  .developer-network-section .content {
    padding-right: 0;
  }

  .developer-network-section h1 {
    font-size: 30px;
  }

  .developer-network-section h2 {
    font-size: 22px;
  }

  .developer-network-section .image-container {
    max-width: 100%;
    height: 420px;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .developer-network-section {
    padding: 44px 0;
  }

  .developer-network-section .section {
    padding: 0 18px;
  }

  .developer-network-section h1 {
    font-size: 24px;
  }

  .developer-network-section h2 {
    font-size: 20px;
  }

  .developer-network-section .image-container {
    height: 320px;
  }
}




/* update baru maintenece 21:30 13/03/2026*/

@media (max-width: 768px) {

  .badge-web,
  .badge-android,
  .badge-cloud,
  .academy-carousel-col {
    animation: none !important;
  }
}











/* =========================================================
   HERO + UNIVERSITY ANIMATION
   ========================================================= */

/* =========================================================
   GLOBAL SCROLL ANIMATION
   ========================================================= */

.fade-up,
.fade-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up {
  transform: translateY(18px);
}

.fade-right {
  transform: translateX(24px);
}

.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================================
   HERO SECTION DELAY
   ========================================================= */

.hero-text h1.fade-up {
  transition-delay: 0.05s;
}

.hero-text p.fade-up {
  transition-delay: 0.15s;
}

.hero-text .btn-calm.fade-up {
  transition-delay: 0.25s;
}

.hero-image.fade-right {
  transition-delay: 0.18s;
}

/* =========================================================
   UNIVERSITY SECTION DELAY
   ========================================================= */

.university-logos .logos-header.fade-up {
  transition-delay: 0.05s;
}

.university-logos .logos-container a.fade-up:nth-child(1) {
  transition-delay: 0.10s;
}

.university-logos .logos-container a.fade-up:nth-child(2) {
  transition-delay: 0.18s;
}

.university-logos .logos-container a.fade-up:nth-child(3) {
  transition-delay: 0.26s;
}

.university-logos .logos-container a.fade-up:nth-child(4) {
  transition-delay: 0.34s;
}

.university-logos .logos-container a.fade-up:nth-child(5) {
  transition-delay: 0.42s;
}

/* =========================================================
   WHY DIFFERENT SECTION DELAY
   ========================================================= */

.why-different-section .main-title.fade-up {
  transition-delay: 0.05s;
}

.why-different-section .main-description.fade-up {
  transition-delay: 0.14s;
}

.why-different-section .feature-item.fade-up:nth-child(1) {
  transition-delay: 0.24s;
}

.why-different-section .feature-item.fade-up:nth-child(2) {
  transition-delay: 0.34s;
}

.why-different-section .feature-item.fade-up:nth-child(3) {
  transition-delay: 0.44s;
}

.why-different-section .feature-item.fade-up:nth-child(4) {
  transition-delay: 0.54s;
}

.why-different-section .image-right.fade-right {
  transition-delay: 0.18s;
}

.why-different-section .floating-badge.fade-up:nth-child(2) {
  transition-delay: 0.42s;
}

.why-different-section .floating-badge.fade-up:nth-child(3) {
  transition-delay: 0.54s;
}

.why-different-section .floating-badge.fade-up:nth-child(4) {
  transition-delay: 0.66s;
}

/* =========================================================
   HOVER HALUS
   ========================================================= */

.logo-img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logos-container a:hover .logo-img {
  transform: translateY(-2px);
}

.feature-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-icon {
  transition: transform 0.3s ease;
}

.feature-item.active .feature-icon {
  transform: rotate(180deg);
}

.floating-badge {
  transition: opacity 0.75s ease, transform 0.75s ease, box-shadow 0.3s ease;
}

.floating-badge.show {
  animation: softFloat 4.8s ease-in-out infinite;
}

.floating-badge.badge-android.show {
  animation-duration: 5.3s;
}

.floating-badge.badge-cloud.show {
  animation-duration: 5.8s;
}

@keyframes softFloat {

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

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

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

  .fade-up,
  .fade-right {
    transition-duration: 0.65s;
  }

  .fade-right {
    transform: translateY(18px);
  }

  .floating-badge.show,
  .badge-web,
  .badge-android,
  .badge-cloud,
  .academy-carousel-col {
    animation: none !important;
  }
}


/* =========================================================
   WHY DIFFERENT SECTION
   ========================================================= */

.why-different-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.career-visual-wrap {
  width: 400px;
  height: 500px;
  position: relative;
}

/* =========================================================
   SCROLL ANIMATION BASE
   ========================================================= */

.fade-up,
.fade-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up {
  transform: translateY(18px);
}

.fade-right {
  transform: translateX(26px);
}

.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================================
   STAGGER DELAY - WHY DIFFERENT
   ========================================================= */

.why-different-section .main-title.fade-up {
  transition-delay: 0.05s;
}

.why-different-section .main-description.fade-up {
  transition-delay: 0.14s;
}

.why-different-section .feature-item:nth-child(1) {
  transition-delay: 0.24s;
}

.why-different-section .feature-item:nth-child(2) {
  transition-delay: 0.34s;
}

.why-different-section .feature-item:nth-child(3) {
  transition-delay: 0.44s;
}

.why-different-section .feature-item:nth-child(4) {
  transition-delay: 0.54s;
}

.why-different-section .image-right.fade-right {
  transition-delay: 0.18s;
}

.why-different-section .floating-badge:nth-child(2) {
  transition-delay: 0.42s;
}

.why-different-section .floating-badge:nth-child(3) {
  transition-delay: 0.54s;
}

.why-different-section .floating-badge:nth-child(4) {
  transition-delay: 0.66s;
}

/* =========================================================
   FEATURE ITEM INTERACTION
   ========================================================= */

.feature-item {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-header {
  cursor: pointer;
}

.feature-icon {
  transition: transform 0.3s ease;
}

.feature-item.active .feature-icon {
  transform: rotate(180deg);
}

/* =========================================================
   IMAGE & BADGE MOTION
   ========================================================= */

.main-image {
  display: block;
  max-width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.image-right.show .main-image {
  transform: translateY(0);
}

.floating-badge {
  transition: opacity 0.75s ease, transform 0.75s ease, box-shadow 0.3s ease;
}

.floating-badge.show {
  animation: softFloat 4.8s ease-in-out infinite;
}

.floating-badge.badge-android.show {
  animation-duration: 5.3s;
}

.floating-badge.badge-cloud.show {
  animation-duration: 5.8s;
}

.floating-badge:hover {
  transform: translateY(-2px);
}

@keyframes softFloat {

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

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

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

@media (max-width: 992px) {
  .why-different-section {
    flex-direction: column;
    gap: 36px;
  }

  .career-visual-wrap {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 420px;
  }

  .fade-right {
    transform: translateY(18px);
  }
}

@media (max-width: 768px) {

  .fade-up,
  .fade-right {
    transition-duration: 0.65s;
  }

  .floating-badge.show {
    animation: none;
  }
}







/* =========================================================
   section yang paling cocok untuk anda  
   ========================================================= */

/* =========================================
   SKILLS SECTION SCROLL ANIMATION
========================================= */

.skills-text.fade-up {
  transition-delay: 0.05s;
}

.skills-cards-container.fade-right {
  transition-delay: 0.12s;
}

.skills-cards-wrapper .skills-card.fade-up:nth-child(1) {
  transition-delay: 0.18s;
}

.skills-cards-wrapper .skills-card.fade-up:nth-child(2) {
  transition-delay: 0.28s;
}

.skills-cards-wrapper .skills-card.fade-up:nth-child(3) {
  transition-delay: 0.38s;
}






/* =========================================================
   HOVER HALUS
   ========================================================= */

.section-porto-team {
  width: 100%;
  padding: 36px 0 28px;
  background: #ffffff;
}

.section-porto-team .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.porto-team-header {
  margin-bottom: 22px;
}

.porto-team-header h2 {
  margin: 0 0 8px;
  font-size: 1.9rem;
  line-height: 1.25;
  font-weight: 600;
  color: #1f2937;
}

.porto-team-header p {
  max-width: 760px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
}

.porto-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.porto-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 320px;
  background: #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.porto-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.porto-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 16px 14px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.45) 35%,
      rgba(0, 0, 0, 0.08) 65%,
      rgba(0, 0, 0, 0.00) 100%);
}

.porto-overlay h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.porto-overlay p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.94);
}

.porto-card:hover img {
  transform: scale(1.05);
}

.porto-card:hover {
  transform: translateY(-2px);
  transition: 0.25s ease;
}

@media (max-width: 1100px) {
  .porto-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section-porto-team {
    padding: 28px 0 20px;
  }

  .porto-team-header h2 {
    font-size: 1.45rem;
  }

  .porto-team-header p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .porto-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .porto-card,
  .porto-card img {
    min-height: 260px;
  }

  .porto-overlay {
    padding: 12px;
  }

  .porto-overlay h3 {
    font-size: 0.95rem;
  }

  .porto-overlay p {
    font-size: 0.76rem;
    line-height: 1.45;
  }
}

@media (max-width: 520px) {
  .porto-team-grid {
    grid-template-columns: 1fr;
  }
}




/* =========================
   ANIMASI SECTION PORTO
========================= */

.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

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

/* stagger delay biar muncul satu-satu */
.porto-team-grid .reveal-card:nth-child(1) {
  transition-delay: 0.05s;
}

.porto-team-grid .reveal-card:nth-child(2) {
  transition-delay: 0.12s;
}

.porto-team-grid .reveal-card:nth-child(3) {
  transition-delay: 0.19s;
}

.porto-team-grid .reveal-card:nth-child(4) {
  transition-delay: 0.26s;
}

.porto-team-grid .reveal-card:nth-child(5) {
  transition-delay: 0.33s;
}

/* image lebih hidup saat muncul */
.reveal-card img {
  transform: scale(1.04);
  transition: transform 0.8s ease;
}

.reveal-card.in-view img {
  transform: scale(1);
}

/* teks masuk halus */
.reveal-card .porto-overlay h3,
.reveal-card .porto-overlay p {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-card.in-view .porto-overlay h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.reveal-card.in-view .porto-overlay p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* hover yang lebih halus dan elegan */
.porto-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.porto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.porto-card:hover img {
  transform: scale(1.06);
}

.porto-card:hover .porto-overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.5) 35%,
      rgba(0, 0, 0, 0.10) 65%,
      rgba(0, 0, 0, 0.00) 100%);
  transition: background 0.3s ease;
}

/* mobile tetap halus */
@media (prefers-reduced-motion: reduce) {

  .reveal-card,
  .reveal-card img,
  .reveal-card .porto-overlay h3,
  .reveal-card .porto-overlay p,
  .porto-card {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}