    .course-highlights {
  padding: 50px 0;
  background: #ffffff;
  font-family: Arial, sans-serif;
  color: #111;
}

.course-highlights .container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}

.course-highlights .title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.course-highlights .intro {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 600;
}

.course-highlights .sub-title {
  font-size: 24px;
  font-weight: 800;
  margin-top: 30px;
  margin-bottom: 14px;
}

.course-highlights .bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.course-highlights .bullets li {
  position: relative;
  padding-left: 26px;
  margin: 14px 0;
  font-size: 16px;
  line-height: 1.75;
}

.course-highlights .bullets li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  font-size: 22px;
  line-height: 1.2;
  color: #111;
}

.course-highlights .cta-wrap {
  margin-top: 34px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.course-highlights .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 34px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: 0.25s ease;
  min-width: 180px;
}

.course-highlights .btn .arrow {
  font-size: 16px;
  transform: translateY(-1px);
}

.course-highlights .btn-outline {
  border: 2px solid #e91e63;
  color: #e91e63;
  background: transparent;
}

.course-highlights .btn-outline:hover {
  background: #e91e63;
  color: #fff;
}

.course-highlights .btn-solid {
  border: 2px solid #e91e63;
  background: #e91e63;
  color: #fff;
}

.course-highlights .btn-solid:hover {
  filter: brightness(0.95);
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .course-highlights {
    padding: 36px 0;
  }

  .course-highlights .title {
    font-size: 24px;
    line-height: 1.2;
  }

  .course-highlights .intro {
    font-size: 16px;
  }

  .course-highlights .sub-title {
    font-size: 20px;
  }

  .course-highlights .bullets li {
    font-size: 15px;
    margin: 12px 0;
  }

  .course-highlights .btn {
    width: 100%;
    min-width: unset;
  }

  .course-highlights .cta-wrap {
    gap: 12px;
  }
}
/* ///////////////////////// section 2 /////////////////////////// */
.market-section {
  padding: 60px 0;
  background: #fff;
  font-family: Arial, sans-serif;
  color: #111;
}

.market-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.market-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.market-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 10px;
}

.market-text {
  font-size: 15.5px;
  line-height: 1.85;
  margin: 0 0 26px;
  color: #222;
}

.market-text b {
  font-weight: 800;
}

.market-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Circle Image */
.market-image {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.market-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Enquire button (right side) */
.enquire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  min-width: 180px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  background: #e91e63;
  transition: 0.25s ease;
}

.enquire-btn:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.enquire-btn span {
  font-size: 15px;
  transform: translateY(-1px);
}

/* Gradient CTA bar bottom */
.market-cta {
  margin-top: 36px;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #b63ad6, #ff1e62);
  box-shadow: 0 16px 35px rgba(233, 30, 99, 0.18);
}

.market-cta p {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.cta-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  background: #1f2a37;
  color: #fff;
  transition: 0.25s ease;
}

.cta-dark:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* ✅ Mobile responsive */
@media (max-width: 900px) {
  .market-grid {
    grid-template-columns: 1fr;
  }

  .market-right {
    align-items: center;
  }

  .market-image {
    width: 240px;
    height: 240px;
  }

  .market-title {
    font-size: 22px;
  }

  .market-cta p {
    font-size: 16px;
  }

  .enquire-btn {
    width: 100%;
    max-width: 320px;
  }
}
/* -------------------------- */


.cert-section {
  padding: 55px 0;
  background: #fff;
  font-family: Arial, sans-serif;
  color: #111;
}

.cert-section .container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}

.cert-title {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.3px;
  margin: 0 0 18px;
}

.cert-content {
  max-width: 980px; /* keeps text like screenshot */
  margin: 0 auto;
  text-align: center;
}

.cert-content p {
  margin: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.95;
  color: #222;
}

/* Mobile */
@media (max-width: 768px) {
  .cert-section {
    padding: 40px 0;
  }

  .cert-title {
    font-size: 20px;
    line-height: 1.25;
  }

  .cert-content p {
    font-size: 14.8px;
    line-height: 1.85;
  }
}
/* --------------------------- */

.about-company {
  padding: 60px 0;
  background: #fff;
  font-family: Arial, sans-serif;
  color: #111;
}

.about-company .container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}

.about-title {
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 30px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-image img {
  width: 100%;
  max-width: 560px;
  height: 570px;           /* reduced height */
  object-fit: cover;       /* keeps image nice without distortion */
  border-radius: 6px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-content {
  padding-top: 10px;
}

.overview-title {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 18px;
}

.overview-list {
  margin: 0;
  padding-left: 18px;
}

.overview-list li {
  margin: 14px 0;
  font-size: 14.8px;
  line-height: 1.85;
  color: #222;
}

.label {
  font-weight: 800;
  margin-right: 6px;
  color: #111;
}

.label.red {
  color: #e60023; /* red like screenshot */
}

/* ✅ Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-image img {
    max-width: 100%;
  }

  .overview-title {
    text-align: left;
  }

  .about-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}


/* -------------------------- */
.career-support {
  padding: 60px 0;
  background: #fff;
  font-family: Arial, sans-serif;
  color: #111;
}

.career-support .container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}

.career-title {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 28px;
}

.career-block {
  margin-bottom: 26px;
}

.career-subtitle {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 12px;
}

.career-list {
  margin: 0;
  padding-left: 34px; /* more indent like screenshot */
}

.career-list li {
  margin: 10px 0;
  font-size: 14.8px;
  line-height: 1.9;
  color: #222;
}

.career-list li b {
  font-weight: 900;
}

.career-note {
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 800;
  color: #e91e63; /* pink-red like screenshot */
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.note-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.12);
  font-size: 14px;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .career-support {
    padding: 40px 0;
  }

  .career-title {
    font-size: 20px;
  }

  .career-subtitle {
    font-size: 16px;
  }

  .career-list {
    padding-left: 22px;
  }

  .career-list li {
    font-size: 14.3px;
  }
}
