 body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #eef3f8;
      color: #333;
    }

    /* ===== HERO ===== */
    .hero {
      background: linear-gradient(135deg, #0d47a1, #1976d2);
      color: white;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
      animation: spin 30s linear infinite;
      z-index: 0;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .hero .content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: auto;
    }

    /* 🔹 Logo sejajar */
    .hero .logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .hero img.logo {
      width: 100px;
      height: auto;
      filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
      transition: transform 0.3s ease;
    }

    .hero .logos {
  display: flex;
  flex-direction: column; /* Atur agar elemen di dalamnya vertikal */
  align-items: center;    /* Rata tengah horizontal */
  justify-content: center;
}

.hero .logo {
  display: block; /* Pastikan gambar dianggap elemen blok */
  margin: 0 auto;
}

.hero h2 {
  margin-top: 15px;
  color: white;
  text-align: center;
}

    .hero img.logo:hover {
      transform: scale(1.1);
    }


    

    .search-bar input {
      border: none;
      padding: 12px 24px;
      width: 100%;
      max-width: 400px;
      border-radius: 50px;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
      font-size: 1rem;
      outline: none;
    }

    /* ===== SECTION APLIKASI ===== */
    .apps-section {
      padding: 50px 20px;
      background-color: #fff;
      position: relative;
    }

    .apps-section h2 {
      text-align: center;
      margin-bottom: 30px;
      color: #0d47a1;
      font-weight: 700;
      font-size: 2rem;
      text-transform: uppercase;
    }

    /* Filter tombol */
    .category-filter {
      text-align: center;
      margin-bottom: 30px;
    }

    .category-filter .btn {
      margin: 8px;
      border-radius: 25px;
      padding: 10px 26px;
      font-size: 1.1rem;
      font-weight: 600;
      border: 2px solid #f9a825;
      background-color: white;
      color: #f9a825;
      transition: all 0.3s ease;
    }

    .category-filter .btn:hover {
      background: #f9a825;
      color: white;
      box-shadow: 0 4px 12px rgba(249, 168, 37, 0.4);
    }

    /* ===== KARTU APLIKASI ===== */
    .app-card {
      border-radius: 16px;
      padding: 24px 16px;
      background: linear-gradient(145deg, #f8fbff, #ffffff);
      box-shadow: 0 6px 16px rgba(13, 71, 161, 0.08);
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
    }

    .app-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 24px rgba(13, 71, 161, 0.15);
    }

    .app-card img {
      max-width: 110px;
      height: auto;
      margin-bottom: 16px;
    }

    .app-card h5 {
      font-weight: 600;
      font-size: 1rem;
      color: #0d47a1;
      margin-bottom: 8px;
    }

    .app-card p {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 16px;
      min-height: 50px;
    }

    .app-card a.btn {
      background-color: #fff;
      color: #f9a825;
      border: 2px solid #f9a825;
      padding: 8px 20px;
      font-size: 0.9rem;
      border-radius: 25px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .app-card a.btn:hover {
      background: #f9a825;
      color: white;
      border-color: #f9a825;
    }

    /* ===== FOOTER ===== */
    footer {
      background-color: #0d47a1;
      color: #f5f5f5;
      padding: 16px;
      text-align: center;
      font-size: 0.9rem;
      letter-spacing: 0.3px;
    }

    .hidden {
      display: none !important;
    }

    .hero .tagline {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.6rem); /* lebih kecil */
  letter-spacing: 0.3px;
  max-width: 700px;
  line-height: 1.3;
  white-space: nowrap; /* paksa satu baris */
  overflow: hidden;
  text-overflow: ellipsis;
}