/* HERO section sudah cantik */

.zigzag-section {
  padding: 90px 0 60px;
  margin: 0;
  background-color: n;
}

.zigzag-title {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 10px;
  text-align: left;
}

.zigzag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* remove top/bottom padding */
}


.zigzag-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.zigzag-item {
  border-radius: 8px;
  padding: 24px; /* instead of 30px */
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}
.zigzag-item:hover {
  transform: translateY(-5px);
}

.text-box {
  background-color: #ffffff;
  padding: 24px;
  border-left: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  background: linear-gradient(to right, #ffffff, #f9fbff);
  min-height: 350px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.text-box h3 {
  font-size: 22px;
  color: #002d6a;
  margin-bottom: 16px;
}

.text-box p {
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
}

@media (max-width: 768px) {
  .zigzag-grid {
    grid-template-columns: 1fr;
  }

  .text-box {
    padding: 20px;
  }

  .zigzag-item img {
    height: auto;
  }
}
.zigzag-item {
  animation: fadeInUp 0.6s ease-in-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* BLOCK 1 - gambar */
.zigzag-item:nth-child(1) {
  background-color: transparent; /* atau buang terus */
}

/* BLOCK 2 - Vision (text) */
.zigzag-item:nth-child(2) {
  background-color: #e8f0fe; /* biru lembut */
}

/* BLOCK 3 - Mission (text) */
.zigzag-item:nth-child(3) {
  background-color: #fef9e7; /* kuning pastel */
}

/* BLOCK 4 - gambar */
.zigzag-item:nth-child(4) {
  background-color: transparent;
}
.custom-bullet {
  padding-left: 20px;
  margin: 0;
}

.custom-bullet li {
  position: relative;
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
  padding-left: 20px;
  list-style: none;
}

.custom-bullet li::before {
  content: "●"; /* boleh tukar ke ✔ atau ➤ ikut tema */
  position: absolute;
  left: 0;
  color: #003580; /* biru gelap profesional */
  font-size: 14px;
  line-height: 1;
}
.custom-bullet {
  list-style: none;
  padding-left: 0;
}

.custom-bullet li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.custom-bullet li::before {
  content: "\f111"; /* Font Awesome bulatan solid */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #003580; /* biru gelap */
  font-size: 10px;
  top: 6px;
}
.highlight {
  font-style: italic;
  color: #003580;
  background: #e8f0fe;
  padding: 6px 12px;
  border-left: 3px solid #003580;
}
/* HERO */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.page-hero .overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero h1 {
  color: white !important;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  z-index: 2;
}

