  /* =========================
     GLOBAL
  ========================= */
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f0f2f5;
    color: #333;
  }

  /* =========================
     HEADER (DESKTOP & MOBILE BASE)
  ========================= */
  header {
    background: #003366;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
  }

  header .logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* =========================
     NAV DESKTOP (TETAP)
  ========================= */
  nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
  }

  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }

  nav a:hover {
    color: #ffdd00;
  }

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

  /* =========================
     BUTTON OUTLINE YELLOW
  ========================= */
  .btn-outline-yellow {
    padding: 8px 18px;
    border: 2px solid #ffdd00;
    border-radius: 6px;
    color: #ffdd00;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }

  .btn-outline-yellow:hover {
    background: #ffdd00;
    color: #000;
  }

  /* =========================
     HAMBURGER BUTTON
  ========================= */
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* =========================
     MOBILE STYLE
  ========================= */
  @media (max-width: 768px) {

  header {
    flex-wrap: nowrap;
  }

  .menu-toggle {
    display: flex;
  }

  /* NAV CONTAINER */
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: #003366;
    flex-direction: column;
    align-items: stretch;

    /* ⛔ BENAR-BENAR MATI SAAT TERTUTUP */
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
    opacity: 0;

    transition: max-height 0.35s ease, opacity 0.2s ease;
  }

  nav.show {
    max-height: 480px;
    padding: 6px 14px 14px;
    border-top: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 26px rgba(0,0,0,0.22);
    opacity: 1;
  }

  nav a {
    width: 100%;
    padding: 12px 10px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  nav a:last-child {
    border-bottom: none;
  }

  /* ACTIVE */
  nav a.active {
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    padding-left: 12px;
  }

  /* CTA BUTTON MOBILE - REFINED */
  nav a.btn-outline-yellow {
    width: auto;                 /* ⬅️ BUKAN FULL */
    max-width: 260px;            /* ⬅️ BATAS LEBAR */
    padding: 12px 18px;
    font-size: 0.95rem;
    border-radius: 8px;
    display: block;
  }

  /* HAMBURGER ANIMATION */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

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



    .hero-home {
      min-height: 450px;
      background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                  url('../assets/hero.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 0px;
      color: #fff;
      border-radius: 20px;
    }

    .hero-home h1 {
      font-size: 2.3rem;
      font-weight: 700;
      margin: 5px 0;
    }

    .hero-home p {
      margin-top: 15px;
      margin: 15px;
      font-size: 1.1rem;
      max-width: 700px;
      line-height: 1.6;
    }

    .hero-home .cta {
      margin-top: 15px;
      margin-bottom: 25px;
      padding: 12px 26px;
      background: #ffdd00;
      color: #000;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      transition: 0.3s;
    }
    .hero-home .cta:hover {
      background: #ffe95c;
    }

    section {
      max-width: 1200px;
      margin: 20px auto;
      padding: 0 10px;
    }

    .about-section {
      text-align: justify;
      display: flex;
      gap: 30px;
      align-items: center;
      flex-wrap: wrap;
    }

    .about-section img {
      width: 100%;
      max-width: 420px;
      border-radius: 12px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    }

    .about-section .text {
      flex: 1;
      min-width: 260px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .feature-box {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.08);
      transition: 0.3s;
      text-align: center;
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .feature-box i {
      font-size: 40px;
      margin-bottom: 12px;
      color: #003366;
    }

    /* SECTION TITLE */
    .section-title {
      text-align: center;
      color: #003366;
      font-size: 1.8rem;
      font-weight: 700;
    }

    /* GRID */
    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    /* CARD */
    .info-card {
      background: #ffffff;
      padding: 25px;
      border-radius: 14px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      position: relative;
      transition: 0.3s;
    }

    .info-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    }

    /* BADGE */
    .info-card .badge {
      display: inline-block;
      background: #003366;
      color: #fff;
      font-size: 0.75rem;
      padding: 6px 12px;
      border-radius: 20px;
      margin-bottom: 10px;
    }

    /* HIGHLIGHT CARD */
    .info-card.highlight {
      background: linear-gradient(135deg, #003366, #00509e);
      color: #fff;
    }

    .info-card.highlight .badge {
      background: #ffdd00;
      color: #000;
    }

    /* TEXT */
    .info-card h3 {
      margin: 10px 0;
      font-size: 1.2rem;
    }

    .tanggal {
      font-size: 1.4rem;
      font-weight: 700;
      margin: 10px 0;
    }

    .desc {
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .btn-card {
      display: inline-block;
      padding: 12px 22px;
      background: #ffdd00;
      color: #000;
      font-weight: 700;
      border-radius: 8px;
      text-decoration: none;
      margin-top: 15px;
      transition: 0.3s;
    }

    .btn-card:hover {
      background: #ffe95c;
    }

    /* Pulse Animation */
    @keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,221,0,0.6); }
    50% { transform: scale(1.06); box-shadow: 0 0 15px 6px rgba(255,221,0,0.4); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,221,0,0.6); }
    }
    .btn-card.pulse {
    animation: pulse 1.8s infinite;
    }

    footer {
      text-align: center;
      padding: 25px;
      background: #003366;
      color: #fff;
      margin-top: 60px;
    }

    /* MOBILE RESPONSIVE */
    @media (max-width: 768px) {
      header { padding: 14px 16px; }
      .hero-home h1 { font-size: 1.8rem; }
      nav { justify-content: center; margin-top: 10px; }
    }


    /* Banner */
    .top-banner {
      height: 300px;
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                  url('../assets/banner-about-us.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      padding: 20px;
    }

    .top-banner h1 {
      font-size: 2.6rem;
      font-weight: 700;
    }

    /* Content Section */
    .content-section {
      max-width: 1200px;
      margin: 50px auto;
      padding: 0 20px;
      line-height: 1.7;
    }

    .section-box {
      background: #fff;
      padding: 30px;
      border-radius: 14px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      margin-bottom: 35px;
    }

    .section-box h2 {
      color: #003366;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .vision-mission {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
    }

    .card {
      background: #fff;
      padding: 25px;
      flex: 1;
      min-width: 280px;
      border-radius: 12px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    }

    .card h3 {
      color: #003366;
      margin-bottom: 10px;
      font-weight: 700;
    }

    ul li {
      margin-bottom: 12px;
    }

    @media(max-width: 768px) {
      .top-banner h1 { font-size: 2rem; }
    }

    /* ================================
       HERO NEWS
       ================================ */
    .hero-news {
      height: 300px;
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                  url('../assets/hero-news.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      padding: 20px;
    }

    .hero-news h2 {
      font-size: 40px;
      margin: 0;
      font-weight: 700;
    }

    /* ================================
       CONTENT
       ================================ */
    .news-container {
      padding: 40px 5%;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .news-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 14px rgba(0,0,0,0.12);
      transition: 0.2s;
    }

    .news-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    }

    .news-card img {
      width: 100%;
      height: 190px;
      object-fit: cover;
    }

    .news-card .content {
      padding: 20px;
    }

    .news-card h3 {
      margin: 0 0 10px;
      color: #003366;
      font-size: 20px;
    }

    .news-card p {
      margin: 0 0 18px;
      font-size: 15px;
    }

    .btn {
      background: #003366;
      color: white;
      padding: 10px 16px;
      text-decoration: none;
      border-radius: 6px;
      font-size: 14px;
    }

    /* PAGINATION */
    .pagination {
      margin-top: 40px;
      text-align: center;
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-btn {
      padding: 8px 14px;
      border-radius: 6px;
      border: 1px solid #003366;
      color: #003366;
      background: white;
      cursor: pointer;
      font-size: 14px;
      transition: 0.2s;
    }

    .page-btn:hover {
      background: #003366;
      color: white;
    }

    .page-btn.active {
      background: #003366;
      color: white;
    }

    .page-btn.disabled {
      opacity: 0.4;
      pointer-events: none;
    }

    @media (max-width: 992px) {
      .news-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .news-grid {
        grid-template-columns: 1fr;
      }
    }

    /* SECTION */
    .ut-apps {
      padding: 40px 16px;
      background: #f8f9fa;
    }

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

    .ut-apps-title {
      text-align: center;
      font-size: 1.6rem;
      font-weight: 600;
      margin-bottom: 32px;
      color: #222;
    }

    /* GRID */
    .ut-apps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 16px;
    }

    /* CARD */
    .ut-app-card {
      background: #fff;
      border-radius: 14px;
      padding: 20px 14px;
      text-align: center;
      text-decoration: none;
      color: #222;
      box-shadow: 0 4px 14px rgba(0,0,0,0.08);
      transition: all 0.25s ease;
    }

    .ut-app-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    }

    /* ICON */
    .ut-app-icon {
      font-size: 36px;
      margin-bottom: 12px;
    }

    /* NAME */
    .ut-app-name {
      font-size: 0.95rem;
      font-weight: 500;
      line-height: 1.3;
    }

    /* RESPONSIVE */
    @media (max-width: 480px) {
      .ut-apps-title {
        font-size: 1.4rem;
      }

      .ut-app-icon {
        font-size: 32px;
      }
    }