.programs-section {
  background: #ffcc00;
  padding: 90px 20px 120px;
}

.programs-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.programs-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #000;
}

.programs-header p {
  font-size: 18px;
  color: #222;
}

.programs-wrapper {
  max-width: 1200px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
}

.programs-track {
  display: flex;
  gap: 30px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 10px;
}

.program-card {
  display: flex;
  align-items: stretch;
  min-width: calc(50% - 15px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.program-card img {
  width: 45%;
  height: auto;
  object-fit: cover;
}

.program-content {
  width: 55%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.program-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Button */

.program-link {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  width: 135px;
  border-radius: 50px;
  background: #ff8c00;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.program-link:hover {
  background: #ff6f00;
}

.program-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  transition: .3s;
}

.program-btn:hover {
  background: #ff8c00;
  color: #fff;
}

.program-btn.prev { left: -24px; }
.program-btn.next { right: -24px; }

@media (max-width: 900px) {

  .programs-header {
    text-align: center;
    padding: 0 16px 24px;
  }

  .programs-header h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .programs-header p {
    font-size: 15px;
    max-width: 520px;
    margin: 10px auto 0;
    line-height: 1.5;
  }

  .programs-track {
    display: flex;
    gap: 16px;
    padding: 0 16px;
    overflow-x: hidden;
  }

  .program-card {
    flex-direction: column;
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .program-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .program-content {
    width: 100%;
    padding: 20px 18px;
    text-align: center;
  }
}

@media (max-width: 480px) {

  .program-card img {
    height: 180px;
  }

  .program-content {
    padding: 16px 14px;
  }
}



