body {
    background: #000000;
    color: var(--text-first);
    background-size: cover !important;
    background-attachment: fixed !important;
    background-position-x: center !important;
    background-position-y: center !important;
    padding-top: 80px;
  }

  .icon-card-bg {
    background: linear-gradient(135deg, #006400, #228b22);
    border-radius: 10px;
    padding: 15px;
    position: relative;
  }

  .img-prov {
    width: 60px;
    height: auto;
    margin: auto;
  }
/* Menambahkan background pada teks */
.bg-custom {
    background: linear-gradient(135deg, #006400, #228b22); /* Warna latar belakang yang diinginkan */
  padding: 5px 10px; /* Menambahkan sedikit ruang sekitar teks */
  border-radius: 5px; /* Menambahkan border radius untuk sudut yang lebih lembut */
}
.bg-date {
    background: linear-gradient(135deg, #006400, #228b22); /* Warna latar belakang yang diinginkan */
    padding: 5px 10px; /* Menambahkan sedikit ruang di sekitar tanggal */
    border-radius: 5px; /* Menambahkan border radius untuk sudut yang lebih lembut */
  }
  

  /* Animasi untuk ikon */
  .animated-icon {
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  /* Responsif untuk layar kecil */
  @media (max-width: 576px) {
    .icon-card-bg {
      padding: 10px;
    }

    .img-prov {
      width: 40px;
    }

    .icon-card-bg p {
      font-size: 8px;
      margin-top: 4px;
    }
  }
  .text-decoration-none {
    color: #ffffff; /* Warna putih untuk link */
    text-decoration: none; /* Menghilangkan garis bawah */
  }

  .text-decoration-none:hover {
    color: #005ad0; /* Warna putih sedikit lebih terang saat di-hover, opsional */
  }

  #searchInput {
    border: 2px solid #2e8b57; /* Warna hijau gelap untuk border */
    padding: 10px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(
      270deg,
      #006400, /* Hijau gelap */
      #228b22, /* Hijau hutan */
      #006400, /* Hijau gelap */
      #3cb371, /* Hijau zamrud */
      #2e8b57  /* Hijau laut */
    );
    background-size: 1000% 1000%;
    animation: gradientBackground 3s ease infinite;
    color: #ffffff; /* Warna teks putih agar kontras */
  }

  #searchInput:focus {
    width: 100%;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0px 4px 15px rgba(255, 0, 0, 0.2);
    transform: scale(1.05);
    animation: none;
    color: #ffffff;
  }

  @keyframes starGlow {
    0%,
    20%,
    100% {
      opacity: 0.5;
      transform: scale(1);
    }
    50% {
      opacity: 1;
      transform: scale(1.2);
    }
  }

  .animated-star {
    animation: starGlow 1.5s infinite;
  }

  .animated-star:nth-child(1) {
    animation-delay: 0s;
  }
  .animated-star:nth-child(2) {
    animation-delay: 0.3s;
  }
  .animated-star:nth-child(3) {
    animation-delay: 0.6s;
  }
  .animated-star:nth-child(4) {
    animation-delay: 0.9s;
  }
  .animated-star:nth-child(5) {
    animation-delay: 1.2s;
  }

  .fixed-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #006400, #228b22);
    padding: 15px 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    text-align: center;
  }

  .fixed-logo img {
    max-width: 150px;
    height: auto;
  }

/* Menjaga gambar responsif di dalam slider */
.swiper-slide {
  display: flex;
  justify-content: center; /* Memusatkan gambar secara horizontal */
  align-items: center; /* Memusatkan gambar secara vertikal */
}

/* Menyesuaikan ukuran gambar di layar lebih kecil */
.swiper-slide img {
  width: 100%;  /* Gambar akan mengikuti lebar kontainer */
  height: auto; /* Menjaga rasio aspek gambar */
  object-fit: cover; /* Menjaga agar gambar terisi penuh tanpa pecah */
}

/* Styling untuk tampilan pada perangkat dengan lebar max 768px (mobile) */
@media (max-width: 768px) {
  .swiper-slide img {
    width: 100%; /* Agar gambar memenuhi lebar slide */
    height: auto; /* Menjaga rasio gambar */
  }
}


  footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    position: relative; /* Ubah ke relative */
    margin-top: 20px; /* Jarak di atas menu fixed */
  }

  .bottom-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000; /* Pastikan ada di depan footer */
  }