/* Anak Agung Ngurah Krisna Artha Wibawa 240040075 BB244 */
html {
  font-size: var(--page-font-size) !important;
}

[style*="font-size"] {
  font-size: inherit;
}

:root {
  --primary: #0a4dbf;
  --dark: #0f172a;
  --light: #ffffff;
  --gray: #f1f5f9;
  --page-font-size: 100%;
  --stikom-blue: #003366;
  --stikom-hover: #004d99;
  --tech-cyan: #00d2ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: inherit;
}

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

body {
  color: #333;
  scroll-behavior: smooth;
  font-size: var(--page-font-size);
  transition: font-size 0.2s ease;
  padding-top: 90px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%; /* Padding navbar */

  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;

  height: 90px;
}

ul {
  list-style: none;
}

/* LOGO (Kiri) */
.logo img {
  height: 45px;
  width: auto;
  display: block;
}

/* MENU (Kanan) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

/* Panah Kecil Dropdown */
.arrow {
  font-size: 0.7rem;
  transition: 0.3s;
}
.nav-links li:hover .arrow {
  transform: rotate(180deg);
}

/* --- 3. DROPDOWN MENU --- */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  /* Animasi Dropdown */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  padding: 10px 0;
}

.nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #555;
  border-bottom: 1px solid #f5f5f5; /* Garis pemisah tipis antar menu */
}
.dropdown a:hover {
  background: #f0f7ff;
  color: var(--stikom-blue);
  padding-left: 25px; /* Efek geser kanan */
}
.dropdown li:last-child a {
  border-bottom: none;
}

/* --- 4. TOMBOL KONTAK (Spesial) --- */
.btn-contact {
  background: var(--stikom-blue);
  color: white !important;
  padding: 10px 25px;
  border-radius: 50px;
  transition: 0.3s;
}
.btn-contact:hover {
  background: var(--stikom-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.2);
}

/* --- 5. HAMBURGER (Mobile) --- */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.bar {
  width: 25px;
  height: 3px;
  background-color: var(--stikom-blue);
  border-radius: 5px;
  transition: 0.3s;
}

/* --- 6. RESPONSIVE MOBILE --- */
@media (max-width: 968px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 75%;
    max-width: 300px;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px;
    gap: 20px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  /* Mobile Dropdown (Static) */
  .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    display: none;
    margin-top: 10px;
    padding-left: 10px;
    background: #f9f9f9;
    border-radius: 5px;
  }

  .nav-links li.active .dropdown {
    display: block;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

.nav-links a.active {
  color: #003366 !important;
  font-weight: 700;
}

/* ========== HERO ========== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: 90px;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
}

.hero-content p {
  margin-top: 1rem;
  font-size: 1.1rem;
}

/*====================== BUTTON =================== */
.btn-primary {
  display: inline-block;
  margin-top: 2rem;
  padding: 15px 38px;
  background: linear-gradient(135deg, #0a4dbf, #063a91);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(10, 77, 191, 0.35);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 40px rgba(10, 77, 191, 0.55);
}

/* ========== GLOBAL SECTION ========== */
section:not(.hero):not(.campus-image) {
  padding: 4rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ===== ABOUT ===== */
.about-new {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("../src/about-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  color: var(--primary);
  font-size: 2.4rem;
  margin-bottom: 0.3rem;
}

.about-text .subtitle {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-points {
  list-style: none;
}

.about-points li {
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.about-image img {
  width: 100%;
}

/* ===== PROGRAM ===== */

.card-custom {
  border: none;
  border-radius: 15px;
  transition: 0.3s;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.card-custom:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 86, 179, 0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-points {
    text-align: left;
    display: inline-block;
  }
}

/* KAMPUS */
.campus-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

/* ========== FOOTER IMAGE ========== */
.campus-image {
  padding: 0;
}

.campus-image img {
  width: 100%;
  display: block;
}

/* ========== ANIMATION ========== */
.reveal {
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: all 1.2s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* ===== AWARD SECTION (GAMBAR FULL) ===== */
.award-section {
  padding: 60px 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-full-img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.award-full-img:hover {
  transform: scale(1.02);
}

/* ========== AKSESIBILITAS ======*/

.accessibility-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

/* tombol utama */
.accessibility-main {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #024ea5;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.accessibility-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
  align-items: center;
}

.accessibility-menu.show {
  display: flex;
}

.accessibility-menu button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* ========== FOOTER ===============*/
.footer-stikom {
  background-color: #0b1120;
  color: #a0aec0;
  font-family: "Segoe UI", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Logo Kampus */
.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

/* Judul Kolom (H5) */
.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 1rem;
}

/* Link Menu */
.footer-link {
  color: #a0aec0;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: 0.3s;
}

.footer-link:hover {
  color: #38bdf8;
  padding-left: 5px;
}

/* Ikon Kontak */
.contact-icon {
  width: 25px;
  color: #38bdf8;
  text-align: center;
}

/* Tombol Sosmed */
.social-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  margin: 0 5px;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: #007bff;
  border-color: #007bff;
  transform: translateY(-3px);
}

/* ======= BERITA PENDEK ======== */
.news-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}
.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.news-card:hover .news-img-wrapper img {
  transform: scale(1.1);
}
.date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: white;
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.8rem;
  z-index: 2;
}

.list-group-item {
  border: none;
  border-left: 4px solid transparent;
  margin-bottom: 10px;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}
.list-group-item:hover {
  border-left: 4px solid var(--accent);
  background: #fffdf5;
  transform: translateX(5px);
}

/* BACK TO TOP */

#backToTop {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  color: #333;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  display: none;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
/* Tombol Floating Bulat */
#chat-circle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #003366;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s;
}

#chat-circle:hover {
  transform: scale(1.1);
}

/* Kotak Chat */
.chat-box {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 110px;
  width: 350px;
  max-width: 85vw;
  height: 500px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

.chat-box-header {
  background: #003366;
  padding: 15px;
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-box-toggle {
  cursor: pointer;
  font-size: 24px;
  line-height: 0;
}

.chat-box-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #fdfdfd;
}

/* Pesan Chat */
.chat-logs {
  display: flex;
  flex-direction: column;
}

.chat-msg {
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 80%;
}

.chat-msg.bot {
  align-self: flex-start;
  background: #e9ecef;
  color: #333;
  border-bottom-left-radius: 2px;
}

.chat-msg.user {
  align-self: flex-end;
  background: #003366;
  color: white;
  border-bottom-right-radius: 2px;
}

/* Input Area */
.chat-input {
  border-top: 1px solid #eee;
  padding: 15px;
  display: flex;
  background: white;
}

.chat-input input {
  flex: 1;
  border: none;
  outline: none;
  padding: 5px;
  font-size: 14px;
}

.chat-submit {
  background: none;
  border: none;
  color: #003366;
  font-weight: bold;
  cursor: pointer;
  margin-left: 10px;
}

/* CSS UNTUK PRODI */
/* =========================================
   STYLE PRODI GABUNGAN (FINAL FIXED)
   ========================================= */

body {
  padding-top: 90px;
  background-color: #f8fbff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

:root {
  --prodi-blue: #003366;
  --prodi-dark: #020617;
  --prodi-accent: #00d2ff;
  --prodi-gold: #fbbf24;
}

/* --- 2. HERO SECTION (SETTING DESKTOP) --- */
.prodi-hero {
  position: relative;
  display: block !important;
  padding-top: 130px;
  padding-bottom: 270px !important;
  background: linear-gradient(135deg, #001529 0%, #003366 100%);
  color: white;
  border-bottom-right-radius: 80px;
  overflow: visible !important;
}

.tech-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-badge {
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--prodi-accent);
  color: var(--prodi-accent);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #a5f3fc);
  /* tulisan hero di profil */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* --- 3. KARTU AKREDITASI --- */
.acc-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  margin-top: 0;
}
.acc-icon {
  font-size: 3rem;
  color: var(--prodi-gold);
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

/* --- 4. INFO PANEL (SETTING DESKTOP) --- */
.info-panel {
  background: white;
  padding: 40px 0;
  margin-top: -100px !important;
  position: relative;
  z-index: 50;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--prodi-blue);
  font-family: "Outfit", sans-serif;
}
.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- 5. FITUR LAIN (Cards, Team, Lab) --- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-family: "Outfit", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--prodi-blue);
}
.section-title span {
  color: var(--prodi-accent);
}

.feature-card {
  background: white;
  padding: 35px;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
  border-color: var(--prodi-accent);
}
.icon-box {
  width: 60px;
  height: 60px;
  background: #e0f2fe;
  color: var(--prodi-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
}
.feature-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Outfit", sans-serif;
}
.feature-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.team-card-modern {
  display: flex;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 50px 15px 15px 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: 1px solid #f1f5f9;
}
.team-card-modern:hover {
  transform: translateX(10px);
  border-color: var(--prodi-blue);
}
.team-img-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--prodi-accent);
  margin-right: 20px;
}
.team-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--prodi-accent);
  letter-spacing: 1px;
}
.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--prodi-blue);
  margin: 0;
}

.lab-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
}
.lab-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.lab-card:hover img {
  transform: scale(1.1);
}
.lab-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
}

.footer-stikom a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
.footer-stikom a:hover {
  color: white;
}

/* =========================================
   SETTING KHUSUS LAYAR HP / TABLET (MOBILE)
   ========================================= */
@media (max-width: 991px) {
  .prodi-hero {
    padding-bottom: 100px !important;
    padding-top: 120px;
  }

  .info-panel {
    margin-top: 0 !important;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #eee;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .acc-glass {
    margin-top: 40px;
  }

  .reversing-col {
    flex-direction: column-reverse;
  }
}

:root {
  --stikom-blue: #004ea2;
  --stikom-gold: #ffc107;
}

.announcement-panel {
  background: white;
  border-radius: 16px;
  border: 1px solid #eee;
  height: 100%;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.announcement-header {
  padding: 1.2rem 1.5rem;
  background: var(--stikom-blue);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.announcement-list-container {
  flex-grow: 1;
  overflow-y: auto;
  background: #fff;
}

/* Item Pengumuman */
.anno-item-modern {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  align-items: flex-start;
}

.anno-item-modern:hover {
  background-color: #fcfcfc;
  padding-left: 1.8rem;
}

/* Ikon Box Kecil */
.anno-icon-box {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 78, 162, 0.1);
  color: var(--stikom-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: 0.3s;
}

.anno-item-modern:hover .anno-icon-box {
  background-color: var(--stikom-blue);
  color: var(--stikom-gold);
}

/* Teks Judul & Deskripsi */
.anno-title {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.anno-desc {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

/* VISI MISI CSS */
.text-stikom {
  color: #0056b3;
}
.bg-stikom {
  background-color: #0056b3;
}
.border-stikom {
  border-color: #0056b3;
}

/* Hero Section */
.hero-banner {
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(0, 0, 0, 0.7)), url("../src/hero-profil.jpg");
  background-size: cover;
  background-position: center;
  height: 450px;
  color: white;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  position: relative;
}

/* Card Styling */
.card-custom {
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 86, 179, 0.15);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #e3f2fd;
  color: #0056b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Vision Section */
.vision-box {
  background: white;
  border-left: 5px solid #0056b3;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

/* List Styling */
.custom-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}
.custom-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #28a745;
}

/* Footer Decoration */
.divider {
  height: 5px;
  width: 80px;
  background: #ffcc00;
  margin: 20px auto;
  border-radius: 5px;
}

/* --- TAMBAHAN RESPONSIVE STATISTIK --- */

.stat-item {
  border-right: 1px solid #e2e8f0;
}

.stat-item:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .stat-num {
    font-size: 1.5rem !important;
    word-wrap: break-word;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* --- LOGIKA GARIS KOTAK-KOTAK (2x2) --- */

  .stat-item:nth-child(odd) {
    border-right: 1px solid #e2e8f0;
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }

  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid #e2e8f0;
  }
}
