
/* HEADER */
.program-header {
  text-align: center;
  margin-bottom: 60px;
}

.program-header h3 {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 32px;
}

.program-header span {
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-red);
  margin: 10px auto;
  border-radius: 10px;
}

/* LEFT CARD */
.program-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* GRID */
.program-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* ITEM */
.program-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f4f7ff;
  padding: 14px 16px;
  border-radius: 14px;
  transition: 0.3s;
}

/* ICON (UPDATED) */
.program-item i {
  font-size: 16px;
  background: linear-gradient(135deg, var(--primary-blue), #3f51b5);
  color: #fff;
    width: 81px;
    height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.program-item span {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

/* HOVER */
.program-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.program-item:hover i {
  background: var(--accent-red);
}

/* IMAGE SECTION (UPDATED BIGGER) */
.program-img {
  position: relative;
  height: 100%;
}

/* IMAGE */
.program-img img {
  width: 100%;
  height: 100%;
  min-height: 360px; /* 🔥 bigger image */
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* BADGE */
.program-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent-red);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
}

/* RESPONSIVE */
@media(max-width:992px){
  .program-img img {
    min-height: 280px;
  }
}

@media(max-width:768px){

  .program-list {
    grid-template-columns: 1fr;
  }

  .program-card {
    padding: 20px;
  }

  .program-header h3 {
    font-size: 24px;
  }

}