  .slider {
    position: relative;
    width: 94%;
    max-width: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin-left: 3%;
    margin-right: 3%;
  }

  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    /* width: 100%; */
  }

  .slide-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  .slide-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

.search-button {
  background-color: transparent;
  border: none;
  margin-right: 10px;
  cursor: pointer;
}

.search-button img {
  width: 20px;
  height: 20px;
}

.content-box {
  background-color: rgba(247, 247, 247, 0.986);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  max-width: 100%;
  text-align: center;
  position: relative;
  height: 150px;
}

.zstack-item {
  position: absolute;
  top: 0;
  width: 95%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(75, 0, 161, 0.486);
  margin-left: 2.5%;
  margin-right: 20px;
}

.zstack-container {
  position: relative;
  width: 100%;
  height: 150px;
}

.card-program {
  display: flex;
  padding: 20px;
}

.dana-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.dana-container::-webkit-scrollbar {
  display: none;
}

.dana-container .base-cards {
  width: max-content;
  min-width: 100%;
  padding-bottom: 4px;
}

.dana-container .base-card {
  flex: 0 0 250px;
}

.donation-amount {
  display: flex;
  align-items: baseline; /* aligns text on same line */
  gap: 6px;
  color: #000;
  margin-top: 7px;
}

.donation-amount .label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #333;
}

.donation-amount .amount {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #000;
}




.program-section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.program-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-left: 20px;
}
.program-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.view-all-link {
  font-size: 16px;
  color: #7b4397;
  text-decoration: none;
  font-weight: 500;
  width: 95px;
}
.program-items {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 10px; /* For scrollbar visibility */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.program-items::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.program-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 90px;
  text-align: center;
}
.icon-circle {
  width: 75px;
  height: 75px;
  /* border-radius: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); */
}
.program-item .icon-circle {
  background-color: #fff;
  /* border: 1px solid #7b4397; */
}
.program-item .icon-circle i {
  font-size: 28px;
  /* color: #7b4397; */
}
.program-item.active .icon-circle {
  background-color: #7b4397;
  border: none;
}
.program-item.active .icon-circle i {
  color: #fff;
}
.item-text {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.2;
}


.gradient-button {
  background-image: linear-gradient(to right, #6a1b9a, #9c27b0);
  border: none;
  border-radius: 12px;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.gradient-button:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}


.home-banner {
  width: 95%;
  margin-left: 2.5%;
  margin-right: 2.5%;
  border-radius: 8px;
  margin-top: 0px;
}

.news-container {
  max-width: 700px;
  margin: 20px auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin: 0;
}
.view-all {
  color: #6a3cb5;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.news-list {
  display: flex;
  flex-direction: column;
}
.news-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}
.news-content {
  flex-grow: 1;
}
.news-date {
  background-color: #e0e0e0;
  color: #555555;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}
.news-title {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.news-description {
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}
.news-thumbnail {
  width: 159px;
  height: 128px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.news-thumbnail img {
  width: 159px;
  height: 128px;
  object-fit: cover;
}
.news-separator {
  border: 1px solid grey;
  border-color: grey;
  border-top: 1px solid #eeeeee;
  margin: 20px 0;
  margin-top:0px;
  margin-bottom:10px;
}


.footer-horizontal-container {
  display: flex;
  flex-direction: row; /* This is the default value, so it can be omitted */
  gap: 10px; /* Adjust the space between items */
  align-items: center;
  justify-content: center;
}






/* Container yang selalu berada di bagian bawah halaman */
.wa-bottom-container {
    position: fixed;
    bottom: 90px;
    right: 0px;
    width: 60px;
    height: 60px;
    width: 100%;
    text-align: right;
    padding: 20px;
    margin-top: 200px; /* supaya tidak terlalu nempel, opsional */
}

/* Style tombol WA */
.wa-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1d5f55;
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-family: sans-serif;
}

.wa-button img {
    width: 20px;
    height: 20px;
}


  .whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }

  .whatsapp-float:hover {
    background-color: #1ebd5b;
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }

  .verify-icon {
    width: 8px;
    height: 8px;
    margin-left: 3px;
    margin-top: 2.5px;
  }
