/* === PROGRAM UNGGULAN SECTION === */
.program-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #f8fafb;
  padding: 60px 20px;
  gap: 40px;
}

/* Kanan: teks & tombol */
.program-text {
  flex: 1 1 300px;
  max-width: 380px;
}

.program-text h2 {
  color: #4caf50;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.program-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-view-all {
  display: inline-block;
  background-color: #4caf50;
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.btn-view-all:hover {
  background-color: #007a37;
}

/* Kiri: kotak program */
.program-grid {
  flex: 1 1 700px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: stretch;
  align-items: stretch;
}

/* Biar 2 kartu di bawah tampil di tengah */
.program-card:nth-child(4) {
  grid-column: 2;
}
.program-card:nth-child(5) {
  grid-column: 3;
}

/* Responsif tablet */
@media (max-width: 1200px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .program-card:nth-child(4),
  .program-card:nth-child(5) {
    grid-column: auto;
  }
}

/* Responsif HP */
@media (max-width: 700px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
}


.program-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 24px;
  transition: all 0.3s ease;
  text-align: left;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.program-icon {
  width: 45px;
  height: 45px;
  background-color: #f8fafb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.program-icon img {
            width: 30px;
            height: 100px;
            object-fit: contain;
        }

.program-icon i {
  color: #fff;
  font-size: 20px;
}

.program-card h3 {
  color: #4caf50;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.program-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.program-card a {
  text-decoration: none;
  color: #4caf50;
  font-weight: 600;
  font-size: 0.9rem;
}

.program-card a:hover {
  text-decoration: underline;
}

/* Responsif HP */
@media (max-width: 900px) {
  .program-section {
    flex-direction: column-reverse;
    text-align: center;
  }
  .program-grid {
    grid-template-columns: 1fr;
  }
  .program-text {
    max-width: 100%;
  }
}