/* ==============================
   GLOBAL STYLES
============================== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #222;
  line-height: 1.6;
  margin-top: 60px;
}

html { scroll-behavior: smooth; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ==============================
   FIFTH HERO SECTION — RESPONSIVE
============================== */
.fifth-hero-section {
  width: 100%;
  background: #ffffff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.fifth-hero-container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.fifth-hero-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 30%, rgba(255,255,255,0) 70%);
  z-index: -1;
}

.fifth-hero-left {
  flex: 1;
  min-width: 300px;
}

.fifth-hero-left img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 12px;
  margin-top: 10px;
}

.fifth-hero-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
}

.fifth-hero-right img {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
  border-radius: 12px;
}

.fifth-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0B1445;
  line-height: 1.2;
}

.fifth-hero-left p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #11184A;
  max-width: 600px;
  line-height: 1.4rem;
}

/* ==============================
   BUTTON
============================== */
.augment-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: transparent;
  color: #11184A;
  border: 2px solid #11184A;
  border-radius: 40px;
  font-weight: 600;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
}

.augment-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #11184A;
  transition: 0.4s ease;
  border-radius: 40px;
  z-index: -1;
}

.augment-btn span { position: relative; z-index: 1; }
.augment-btn:hover::before { left: 0; }
.augment-btn:hover span { color: white; }

/* ==============================
   LEARNING OVERVIEW SECTION
============================== */
.learning-overview-section { padding: 60px 20px; }
.learning-overview-container { max-width: 1200px; margin: 0 auto; }
.learning-overview-row { display: flex; align-items: flex-start; gap: 60px; flex-wrap: wrap; }
.learning-overview-left { flex: 1; min-width: 300px; }
.learning-overview-right { flex: 1; min-width: 300px; text-align: justify; }
.learning-overview-title { font-size: 2.9rem; font-weight: 700; color: #0B1445; margin-bottom: 20px; text-align: left; }
.learning-overview-subtitle { font-size: 1.8rem; font-weight: 500; color: #0B1445; text-align: left; line-height: 1.1; margin-bottom: 30px; }
.learning-overview-description p { font-size: 1.4rem; margin-bottom: 25px; font-weight: 500; }
.learning-overview-squares { display: flex; justify-content: flex-start; gap: 25px; flex-wrap: wrap; margin-top: 40px; }
.learn-square { width: 170px; background: #FCE570; border-radius: 40px; padding: 20px 8px; text-align: center; box-shadow: 0 6px 15px rgba(0,0,0,0.08); transition: 0.3s ease; }
.learn-square:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0,0,0,0.12); }
.learn-icon { font-size: 1.5rem; margin-bottom: 10px; color: #0B1445; }
.square-title { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.square-text { font-size: 1rem; font-weight: 400; margin-bottom: 10px; }

/* ==============================
   AUGMENT SECTION
============================== */
.augment-section { padding: 120px 20px 100px; }
.augment-container { max-width: 1200px; background: #FCE570; padding: 50px; border-radius: 40px; margin: 0 auto; }
.augment-container h2 { font-size: 2.8rem; font-weight: 600; color: #11184A; margin-bottom: 60px; }
.augment-content { display: flex; align-items: flex-start; gap: 60px; flex-wrap: wrap; }
.augment-image { flex: 1; }
.augment-image img { width: 100%; height: auto; border-radius: 12px; object-fit: cover; }
.augment-text { flex: 1; }
.augment-text p { font-size: 1.25rem; color: #11184A; margin-bottom: 25px; text-align: justify; font-weight: 500; }

/* ==============================
   BENEFIT SECTION
============================== */
.benefit-section { padding: 120px 20px 100px; background: #fff; }
.augment-benefit { max-width: 1000px; margin: 0 auto; text-align: left; }
.benefit-title { font-size: 2.8rem; font-weight: 600; color: #0B1445; margin-bottom: 40px; text-align: center; }

/* Accordion */
.accordion-item { background: #fce570; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.06); margin-bottom: 18px; transition: transform 0.2s ease; overflow: hidden; }
.accordion-item:hover { transform: translateY(-3px); }
.accordion-header { display: flex; justify-content: space-between; align-items: center; background: none; border: none; width: 100%; cursor: pointer; padding: 15px 20px; }
.accordion-header h3 { font-size: 1.75rem; color: #11184A; margin: 0; }
.posted-date { margin-top: 10px; font-size: 1.25rem; color: #777; }
.toggle-icon { font-size: 30px; color: #11184A; transition: transform 0.3s ease; }
.accordion-content { display: none; padding: 15px 20px; background: #fff; border-top: 1px solid #eee; }
.accordion-content p { margin: 10px 0; font-size: 1rem; line-height: 1.6; }
.accordion-item.active .accordion-content { display: block; }
.accordion-item.active .toggle-icon { transform: rotate(180deg); }

/* ==============================
   PROGRAM SECTION
============================== */
.program-section { padding: 120px 20px 100px; background: #ffffff; }
.program-container { max-width: 1200px; margin: 0 auto; text-align: center; padding: 0 20px; }
.program-title { font-size: 2.8rem; font-weight: 600; color: #0B1445; margin-bottom: 20px; }
.program-subtitle { font-size: 1.8rem; font-weight: 500; color: #0B1445; margin-bottom: 40px; max-width: 900px; margin-left: auto; margin-right: auto; }
.program-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; margin-top: 30px; }
.program-feature-card { display: flex; flex-direction: column; gap: 12px; justify-content: center; align-items: center; text-decoration: none; color: inherit; background-color: #faf5d2; border-radius: 16px; padding: 24px 20px; min-height: 160px; transition: transform 0.28s ease, box-shadow 0.28s ease; }
.program-feature-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); background: linear-gradient(90deg, #faf5d2, #ffdc49); }
.feature-icon, .feature-icon-placeholder { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
.feature-icon img { max-width: 100%; max-height: 100%; object-fit: contain; }
.feature-icon-placeholder { border-radius: 12px; background: rgba(17,24,74,0.05); font-size: 28px; }
.program-feature-card h4 { font-size: 1.05rem; font-weight: 600; margin: 0; color: #11184A; }
.program-feature-card p { font-size: 0.95rem; margin: 0; color: #11184A; opacity: 0.95; }

/* ==============================
   RESPONSIVENESS
============================== */
@media (max-width: 992px) {
  .fifth-hero-container { flex-direction: column; text-align: center; }
  .fifth-hero-right { justify-content: center; margin-top: 20px; }
  .fifth-title { font-size: 2.2rem; }
  .fifth-hero-left p { font-size: 1.1rem; margin: 0 auto 20px; }
  .augment-content { flex-direction: column; gap: 30px; }
  .augment-container h2 { font-size: 2.2rem; }
  .learning-overview-row { flex-direction: column; text-align: center; gap: 20px; }
  .learning-overview-squares { justify-content: center; }
  .learn-square { width: 90%; padding: 30px 40px; }
  .program-features-grid { gap: 20px; }
  .benefit-title { font-size: 2.2rem; }
  .accordion-header h3 { font-size: 1.5rem; }
  .posted-date { font-size: 18px; }
}

@media (max-width: 600px) {
  /* Hide hero images */
  .fifth-hero-left img,
  .fifth-hero-right img { display: none; }

  .fifth-title { font-size: 1.9rem; }
  .fifth-hero-left p { font-size: 1rem; margin: 0 auto 16px; }
  .learning-overview-title { font-size: 28px; text-align: center; line-height: 1.4; }
  .learning-overview-subtitle { font-size: 1.2rem; text-align: center; }
  .learning-overview-description p { font-size: 0.95rem; padding: 8px 0; }
  .learning-overview-left {width:400px}
  .learn-square { width: 95%; padding: 20px 26px; }
  .augment-section { padding: 60px 20px; }
  .augment-container { padding: 28px; }
  .augment-container h2 { font-size: 1.85rem; }
  .augment-text p { font-size: 1rem; }
  .benefit-section { padding: 60px 20px; }
  .benefit-title { font-size: 26px; }
  .program-title { font-size: 22px; }
  .program-subtitle { font-size: 15px; max-width: 95%; margin-bottom: 24px; }
  .program-features-grid { grid-template-columns: 1fr; gap: 18px; width: 100%; }
}

@media (max-width: 420px) {
  .augment-btn { width: 100%; text-align: center; }
  .benefit-title { font-size: 32px; }
  .learn-square { padding: 16px 16px; }
  .program-title { font-size: 32px; }
  .program-feature-card { padding: 20px; gap: 18px; }
  .feature-icon, .feature-icon-placeholder { width: 64px; height: 64px; font-size: 22px; }
  .program-feature-card h4 { font-size: 1rem; }
}
