
    .logo-container {
      display: flex;
      gap: 30px;
      justify-content: center;
      align-items: center;
      padding: 20px;
      /* background: #f8f9fa; */
    }

    .logo-container img {
      width: 120px;
      height: auto;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    /* Zoom saat hover */
    .logo-container img:hover {
      transform: scale(1.1);
    }

    .card {
      box-shadow: 20px 20px 20px 20px rgba(0, 0, 0, 0.50);
      transition: all 0.3s ease;

    }

    .card img {
      height: 160px;
      object-fit: cover;
      box-shadow: 0 7px 10px rgba(0, 0, 0, 0.05);

    }

    .card-body h6 {
      font-size: 15px;
      line-height: 1.4em;
      min-height: 45px;
      /* biar rata tinggi */
    }

    .card:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      transform: translateY(-3px);
    }

    /* Button Lihat Lebih */
    .btn-more {
      background-color: transparent;
      color: #08235a;
      /* teks biru */
      border: 2px solid #08235a;
      padding: 10px 50px;
      border-radius: 30px;
      /* oval */
      font-size: 14px;
      /* font-weight: bold; */
      cursor: pointer;
      transition: 0.3s;
      margin-top: -50px;
      margin-bottom: -50px;
    }

    .btn-more:hover {
      background-color: #08235a;
      color: white;
      /* teks jadi putih saat hover */
    }

    /* Responsif di mobile */
@media (max-width: 768px) {
  .footer .footer-top {
    text-align: center;
  }

  .footer .footer-links {
    margin-top: 20px;
  }

  .footer .social-links {
    justify-content: center;
  }
}


      .download-section {
      /* background-color: #e6f9ff; */
      padding: 25px 40px;
    }
    .btn-biru {
      background-color: #08235a;
      color: #fff;
      border-radius: 25px;
      padding: 10px 25px;
      font-weight: 500;
    }
    .btn-biru:hover {
      /* background-color: #0077a3; */
  background: color-mix(in srgb, var(--accent-color), transparent 20%);

      color: #fff;
    }

    /* =========== Gambar Slide ============ */

    .logo-marquee {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  gap: 150px;
  animation: marquee 35s linear infinite;
  align-items: center;
}

.marquee-track img {
  height: 60px;
  object-fit: contain;
  opacity: 0.9;
  transition: 0.3s;
}

.marquee-track img:hover {
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media(max-width:768px) {
  .marquee-track img {
    height: 45px;
    gap: 35px;
  }
}


    /* Tombol WhatsApp */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 20px;
      left: 20px;
      background-color: #08235a;
      color: #fff;
      border-radius: 50%;
      text-align: center;
      font-size: 28px;
      box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Popup */
    .whatsapp-popup {
      display: none;
      position: fixed;
      bottom: 90px;
      left: 20px;
      width: 280px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
      z-index: 1001;
      overflow: hidden;
      animation: fadeIn 0.3s ease-in-out;
    }

    .popup-header {
      background: #08235a;
      color: #fff;
      padding: 12px;
      font-weight: bold;
      font-size: 14px;
    }

    .popup-body {
      padding: 15px;
      font-size: 14px;
      color: #333;
    }

    .popup-footer {
      padding: 10px;
      text-align: center;
      background: #f5f5f5;
    }

    .popup-footer a {
      background: #08235a;
      color: #fff;
      text-decoration: none;
      padding: 8px 15px;
      border-radius: 6px;
      font-size: 14px;
      display: inline-block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    /* END POPUP WHATSAPP */

/* =========== POPUP HOAXC ============ */

/* Overlay gelap di belakang popup */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
  box-sizing: border-box;
}

/* Kontainer popup */
.popup {
  background: #fff;
  padding: 30px 25px;
  border-radius: 40px;
  text-align: center;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: fadeIn 0.5s ease-in-out;
  box-sizing: border-box;
}

/* Tombol close */
.popup .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

/* Gambar */
.popup img {
  width: 250px;
  height: auto;
  margin-bottom: 15px;
}

.popup h2 {
  margin: 10px 0;
  font-size: 36px;
  font-weight: bold;
  color: black;
}

.popup h3 {
  margin: 10px 0;
  font-size: 18px;
  color: black;
}

.biru {
  color: #08235a;
}

.popup h4 {
  margin: 20px 0 15px;
  font-size: 15px;
  color: black;
}


/* Sosial Media */
.social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: row; /* 🟦 default desktop: horizontal */
}

.social-icons a {
  color: #08235a;
  font-size: 15px;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  color: #007bb5;
}

/* RESPONSIVE MOBILE */
@media (max-width: 600px) {
  .popup {
    padding: 20px;
    border-radius: 25px;
  }

  .popup img {
    width: 180px;
  }

  .popup h2 {
    font-size: 28px;
  }

  .popup h3 {
    font-size: 16px;
  }

  .popup h4 {
    font-size: 13px;
  }

  /* 🟩 Di mobile: social icons jadi vertikal */
  .social-icons {
    flex-direction: column;
    gap: 5px;
  }
  .social-icons a {
    font-size: 14px;
  }
}

/* =========== POPUP HOAXC ============ */

    /* Animasi */
    @keyframes fadeIn {
      from {opacity: 0; transform: scale(0.8);}
      to {opacity: 1; transform: scale(1);}
    }


