/* ============================================================
   SECTION 1 — HEADER / NAVBAR / HERO / BOTTOM STRIP
   ============================================================ */

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* ---- PAGE TOP WRAPPER + TEAL CIRCLE ---- */

.page-top {
  position: relative;
  overflow: visible;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/*
 * Single teal circle behind everything — percentage-based left so it
 * stays anchored to the right half at any zoom level / viewport width.
 */
.page-top::before {
  content: '';
  position: absolute;
  width: 1145px;
  height: 1145px;
  background: #006b78;
  border-radius: 50%;
  top: -407px;
  left: 59%;
  z-index: 0;
  pointer-events: none;
}

/* ---- HEADER ---- */

.top-header {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 112px;
  overflow: hidden;
  position: relative;
  z-index: 999;
}

/* Left: white with diagonal cut so teal circle shows through on right */
.header-left {
  flex: 0 0 54%;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 8px 36px;
  height: 112px;
  overflow: hidden;
  clip-path: polygon(0 0, 97% 0, 100% 100%, 0 100%);
}

.logo-box {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-box img {
  height: 112px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Right: solid teal — full width coverage, no gap */
.header-right {
  flex: 1;
  background: #006b78;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 30px;
  height: 76px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.accreditation-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  height: 80px;
  width: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.accreditation-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  flex-shrink: 0;
}

/* ---- NAVBAR ---- */

.custom-navbar {
  background: #006b78;
  padding: 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(6, 34, 38, 0.12);
}

.nav-menu {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.nav-menu li {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
}

.nav-menu li:last-child {
  border-right: none;
}

.nav-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 14px 12px;
  white-space: nowrap;
  text-align: center;
  transition: color 0.25s;
}

.nav-menu li a:hover {
  color: #ffd400;
}

/* ---- HAMBURGER BUTTON (hidden on desktop) ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- HERO SECTION ---- */

.hero-section {
  display: flex;
  width: 100%;
  overflow: visible;
  flex: 1;
  background: transparent;
  position: relative;
  z-index: 0;
  height: 100px;
}

/* LEFT COLUMN — solid gray covers the circle on the left half */
.hero-left {
  flex: 0 0 52%;
  /* background: #f0f2f3; */
  padding: 12px 32px 12px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.hero-content {
  width: 100%;
  max-width: 480px;
}

/* H1 — bold heading, dark + teal span */
.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #111111;
  line-height: 1.28;
  margin-bottom: 0;
}

.hero-content h1 span {
  color: #006778;
  font-weight: 700;
}

/* H3 — teal subheading */
.hero-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: #006778;
  margin-top: 6px;
  line-height: 1.45;
  margin-bottom: 0;
}

/* YELLOW FEATURE BOX — single unified card (Figma: 641×107px, radius 10px) */
.info-row {
  display: flex;
  margin-top: 10px;
  background: #ffd400;
  border-radius: 10px;
  overflow: hidden;
  max-width: 420px;
}

.info-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}

.info-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.15);
  margin: 12px 0;
}

.info-icon img {
  width: 30px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.info-text {
  font-size: 12px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}

/* RIGHT COLUMN — transparent, teal comes from .page-top::before circle */
.hero-right {
  flex: 0 0 48%;
  background: transparent;
  position: relative;
  overflow: visible;
  padding: 20px 0 20px 32px;
  display: flex;
  align-items: flex-start;
  z-index: 0;
}

/* FORM CARD */
.form-wrapper {
  background: #ffffff;
  width: 300px;
  flex-shrink: 0;
  padding: 20px 16px 18px;
  border-radius: 13px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 20px;
  left: 220px;
  /* positions form to the right of the centred people image on desktop */
}

.form-wrapper .mb-3 {
  margin-bottom: 0.75rem !important;
}

/* Minimal underline input style */
.custom-input {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
  padding-bottom: 8px;
  padding-top: 4px;
  font-size: 11.5px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  box-shadow: none !important;
  height: auto;
}

.custom-input::placeholder {
  color: #888;
  font-size: 11.5px;
}

.custom-input:focus {
  background: transparent;
  outline: none;
  border-bottom-color: #006b78;
}

/* Error state: placeholder becomes the red error message, field gets red underline */
.custom-input.input-error::placeholder {
  color: #dc3545;
  font-style: italic;
}

.custom-input.input-error {
  border-bottom-color: #dc3545;
}

.custom-check {
  font-size: 8.5px;
  color: #555;
  line-height: 1.4;
  margin-top: 4px;
  margin-bottom: 14px;
}

/* DOWNLOAD BROCHURE button */
.brochure-btn {
  background: #005a65;
  color: #ffffff;
  width: 100%;
  height: 38px;
  padding: 0 10px;
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}

.brochure-btn:hover {
  background: #004048;
  color: #ffffff;
}

/* ============================================================
   PEOPLE IMAGE — adjust these 3 values to reposition manually:
   --img-right   : move left/right (negative = further right)
   --img-height  : image size
   --img-overlap : how much image overlaps INTO the footer strip
   ============================================================ */
.first-section-wrapper {
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: max(100vh, 680px);
  display: flex;
  flex-direction: column;
}

.people-image {
  position: absolute;
  bottom: -115px;
  /* negative offset = transparent bottom whitespace; page-top overflow:hidden clips it, feet land at footer edge */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.people-image img {
  height: 600px;
  width: auto;
  display: block;
  margin-bottom: 0;
}

/* ---- BOTTOM INFO STRIP ---- */

/* BOTTOM STRIP — Figma: 1438×125px, 1px white border */
.bottom-strip {
  background: #005b67;
  padding: 0;
  min-height: 90px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.bottom-strip .row {
  min-height: 90px;
}

.bottom-box {
  padding: 18px 40px;
}

.bottom-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 6px;
  text-transform: capitalize;
}

.bottom-box h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0;
}

.border-end-custom {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

/* ============================================================
   RESPONSIVE — all breakpoints
   ============================================================ */

/* ---- Large laptop (≤1280px) ---- */
@media (max-width: 1280px) {
  .page-top::before {
    left: 720px;
  }

  .hero-content h1 {
    font-size: 25px;
  }

  .form-wrapper {
    width: 240px;
    margin-top: 12px;
    left: 220px;
  }

  .info-row {
    max-width: 380px;
  }

  .logo-box img {
    height: 78px;
    width: auto;
  }

  .accreditation-box {
    width: 300px;
    height: 58px;
    right: 20px;
  }

  .nav-menu li a {
    font-size: 12px;
  }
}

/* ---- Small laptop (≤1100px) ---- */
@media (max-width: 1100px) {
  .page-top::before {
    left: 620px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .info-row {
    max-width: 320px;
  }

  .form-wrapper {
    width: 220px;
    margin-top: 10px;
    left: 0;
  }

  .hero-right {
    justify-content: flex-end;
    padding-right: 30px;
  }

  .accreditation-box {
    width: 250px;
    height: 54px;
    right: 16px;
  }

  .nav-menu li a {
    font-size: 11.5px;
  }

  .people-image {
    display: none;
  }
}

/* ---- Tablet landscape (≤991px) ---- */
@media (max-width: 991px) {

  /* Hide circle, header goes full white */
  .first-section-wrapper {
    height: auto;
    min-height: unset;
  }

  .page-top {
    height: auto;
    min-height: unset;
  }

  .page-top::before {
    display: none;
  }

  /* Header: white full-width with accreditation inline */
  .top-header {
    flex-direction: row;
    height: 86px;
    overflow: hidden;
    background: #fff;
    z-index: 9999;
  }

  .header-left {
    flex: 1;
    clip-path: none;
    height: 86px;
    padding: 8px 16px;
    background: #fff;
  }

  .logo-box img {
    height: 66px;
    width: auto
  }

  .accreditation-box {
    position: static;
    width: 230px;
    height: 62px;
    margin: 39px 16px 12px 0;
    flex-shrink: 0;
    border-radius: 6px;
  }

  /* Navbar: hamburger toggle */
  .custom-navbar {
    background: #006b78;
    z-index: 9999;
    display: flex;
    align-items: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #006b78;
    z-index: 9998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.nav-open {
    display: flex;
  }

  .nav-menu li {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-menu li a {
    font-size: 14px;
    padding: 14px 24px 14px 28px;
    justify-content: flex-start;
    white-space: normal;
    letter-spacing: 0.2px;
  }

  /* Hero: stack vertically */
  .hero-section {
    flex-direction: column;
    min-height: auto;
    background: #f0f2f3;
  }

  .hero-left {
    flex: none;
    width: 100%;
    padding: 28px 24px 24px;
    z-index: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-right {
    flex: none;
    width: 100%;
    background: #006b78;
    overflow: visible;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    min-height: auto;
    position: relative;
  }

  .form-wrapper {
    width: 100%;
    max-width: 420px;
    margin-top: 0;
    left: 0;
  }

  .people-image {
    display: none;
  }

  /* Bottom strip */
  .bottom-strip {
    padding: 12px 0;
  }

  .bottom-box {
    padding: 14px 24px;
  }

  .bottom-box h5 {
    font-size: 14px;
  }

  .bottom-box p {
    font-size: 11px;
  }

  .border-end-custom {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

/* ---- Tablet portrait / large mobile (≤767px) ---- */
@media (max-width: 767px) {

  /* Section: height auto so content breathes */
  .first-section-wrapper {
    height: auto;
    min-height: unset;
  }

  /* Header: single row — logo left, accreditation right */
  .top-header {
    flex-wrap: nowrap;
    height: 64px;
    background: #fff;
    z-index: 999;
    align-items: center;
  }

  .header-left {
    flex: 1 1 auto;
    height: 64px;
    justify-content: flex-start;
    padding: 6px 12px;
    clip-path: none;
    min-width: 0;
  }

  /* .logo-box img { height: 44px; width: auto; } */
  .accreditation-box {
    position: static;
    width: 160px;
    height: 44px;
    margin: 0 12px 0 0;
    flex-shrink: 0;
    border-radius: 6px;
    transform: none;
  }

  /* Navbar: hamburger */
  .hamburger {
    display: flex;
  }

  .nav-menu li a {
    font-size: 13px;
    padding: 13px 20px;
    justify-content: flex-start;
  }

  /* Hero */
  .hero-left {
    padding: 24px 20px 20px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-content h3 {
    font-size: 15px;
  }

  .info-row {
    max-width: 100%;
  }

  .info-item {
    padding: 12px;
    gap: 10px;
  }

  .info-text {
    font-size: 13px;
  }

  .info-icon img {
    width: 26px;
  }

  .hero-right {
    min-height: auto;
    padding: 20px 16px 24px;
  }

  .form-wrapper {
    left: 0;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

  .people-image {
    display: none;
  }

  /* Bottom strip: stack columns */
  .bottom-strip {
    padding: 10px 16px;
  }

  .bottom-box {
    padding: 10px 16px;
  }

  .bottom-box h5 {
    font-size: 13px;
  }

  .bottom-box p {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .border-end-custom {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
}

/* ---- Mobile (≤480px) ---- */
@media (max-width: 480px) {
  .top-header {
    height: 56px;
  }

  .header-left {
    height: 56px;
    padding: 6px 10px;
  }

  .logo-box img {
    height: 36px;
    width: auto;
  }

  .accreditation-box {
    height: 36px;
    width: 130px;
    margin: 0 10px 0 0;
  }

  /* Navbar: hamburger compact */
  .nav-menu li a {
    font-size: 13px;
    padding: 13px 20px;
  }

  /* Hero */
  .hero-left {
    padding: 20px 16px;
  }

  .hero-content h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero-content h3 {
    font-size: 14px;
  }

  .info-item {
    padding: 10px;
    gap: 8px;
  }

  .info-icon img {
    width: 22px;
  }

  .info-text {
    font-size: 12px;
  }

  /* Form */
  .hero-right {
    padding: 16px 14px 20px;
  }

  .form-wrapper {
    padding: 14px 12px;
    left: 0;
  }

  .custom-input {
    font-size: 11px;
  }

  .brochure-btn {
    font-size: 10px;
    height: 36px;
  }

  .custom-check {
    font-size: 8px;
  }

  /* Bottom strip: single column */
  .bottom-strip .row {
    flex-direction: column;
  }

  .bottom-strip .col-md-4 {
    width: 100%;
  }

  .bottom-box {
    padding: 8px 14px;
  }

  .bottom-box h5 {
    font-size: 12px;
  }

  .bottom-box p {
    font-size: 10px;
  }

  .border-end-custom {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
}

/* ---- Small phones (≤375px) ---- */
@media (max-width: 375px) {

  /* .logo-box img { height: 34px; width: auto; } */
  .hero-content h1 {
    font-size: 20px;
    line-height: 1.3;
  }

  .hero-content h3 {
    font-size: 13px;
  }

  .nav-menu li a {
    font-size: 14px;
    padding: 14px 24px 14px 28px;
  }

  .bottom-box h5 {
    font-size: 11px;
  }

  .bottom-box p {
    font-size: 10px;
  }

  .custom-container {
    padding: 20px 14px;
  }

  .form-wrapper {
    padding: 12px 10px;
  }
}









/* =================== second container ============================================= */

.strategy-section {
  padding: 55px 0 0;
  background: #ffffff;
}

.strategy-section .container {
  background: #ffffff;
  border: none;
  padding: 0 12px;
}

/* HEADING */

.heading-wrapper h2 {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  /* keep on one line on desktop */
  display: inline-block;
  border-bottom: 4px solid #f0b528;
  padding-bottom: 10px;
  margin-bottom: 22px;
}

.heading-wrapper .yellow-line {
  display: none;
}

.heading-wrapper p {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  max-width: 900px;
}

/* TIMELINE */

/* ---- TIMELINE ---- */
/*
  Layout (top-down inside .timeline-wrapper):
  - padding-top: 14px  → row starts 14px from wrapper top
  - .timeline-line top: 22px → line center at 23px from wrapper = 9px from row top
  - .timeline-dot: 14×14 circle, margin: 0 auto → center at 7px from item top = 9px from wrapper ✓
  - ::after connector: 20px tall vertical line below dot
  - .circle: flows naturally below connector
*/

.timeline-wrapper {
  position: relative;
  margin-top: 20px;
  padding-top: 50px;
  /* padding-bottom: 40px; */
}

/* Horizontal line with arrows */
.timeline-line {
  position: absolute;
  top: 15px;
  left: 3%;
  width: 94%;
  height: 2px;
  background: #b0b8c8;
  z-index: 0;
}

.timeline-line::before,
.timeline-line::after {
  content: '';
  position: absolute;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #b0b8c8;
  border-right: 2px solid #b0b8c8;
}

.timeline-line::before {
  left: -2px;
  transform: rotate(-135deg);
}

.timeline-line::after {
  right: -2px;
  transform: rotate(45deg);
}

/* TIMELINE ITEM */
.timeline-item {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 21px;
}

/* Dot sits ON the horizontal line — margin-top: -(padding-top - (line.top - dot.radius))
   padding-top:50, line top:28, dot radius:10  →  -(50 - (28-10)) = -32px  ✓ */
.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #5ba8c4;
  border: 6px solid #d4e8f0;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
  box-shadow: 0 0 0 1.5px #b0c8d8;
  /* margin-top: -32px; */
  margin-top: -46px;
  margin-bottom: 25px
}

/* Connector bridges gap between dot and circle — behind circle (z-index:0) */
.timeline-dot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background: #b0b8c8;
  z-index: 0;
}

/* CIRCLES — z-index:2 ensures connector stays behind */
.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #66b3d2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.circle::after {
  content: '';
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #006b78;
}

/* Circle colors */
.active-yellow .circle {
  background: #f0b528;
}

.teal-a .circle {
  background: #5ba8c4;
}

.teal-b .circle {
  background: #90c4d8;
}

.teal-c .circle {
  background: #3d9ab4;
}

.teal-d .circle {
  background: #1a7a90;
}

/* Dot progression: light → dark left to right (matches PDF) */
.dot-1 .timeline-dot {
  background: #a8cfe0;
  border-color: #daeef6;
  box-shadow: 0 0 0 1.5px #c0dce8;
}

.dot-2 .timeline-dot {
  background: #7ec0d8;
  border-color: #c6e5f0;
  box-shadow: 0 0 0 1.5px #a0ccdc;
}

.teal-a .timeline-dot {
  background: #5ba8c4;
  border-color: #b0d8e8;
  box-shadow: 0 0 0 1.5px #8abece;
}

.teal-b .timeline-dot {
  background: #3d8faa;
  border-color: #90c4d4;
  box-shadow: 0 0 0 1.5px #6aaabb;
}

.teal-c .timeline-dot {
  background: #1f6e88;
  border-color: #6aaabb;
  box-shadow: 0 0 0 1.5px #4a90a4;
}

.teal-d .timeline-dot {
  background: #0d4f65;
  border-color: #3d7a90;
  box-shadow: 0 0 0 1.5px #1a6070;
}

.circle img {
  width: 40px;
  position: relative;
  z-index: 2;
  filter: brightness(0) invert(1);
}

.timeline-item h5 {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  margin-top: 16px;
  line-height: 1.5;
}

/* QUOTE */

.quote-box {
  background: #006b78;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 22px 30px;
  margin-top: 35px;
  font-style: italic;
}

/* RESPONSIVE */

@media (max-width: 1199px) {

  .heading-wrapper h2 {
    font-size: 30px;
  }

  .heading-wrapper p {
    font-size: 15px;
  }

  .timeline-item h5 {
    font-size: 13px;
  }

  .circle {
    width: 100px;
    height: 100px;
  }

  .circle::after {
    width: 72px;
    height: 72px;
  }

}

@media (max-width: 991px) {

  .timeline-line {
    display: none;
  }

  .timeline-item::before {
    display: none;
  }

  .timeline-wrapper {
    margin-top: 20px;
  }

}

@media (max-width: 767px) {

  .heading-wrapper h2 {
    font-size: 22px;
  }

  .heading-wrapper .yellow-line {
    width: 180px;
  }

  .heading-wrapper p {
    font-size: 14px;
    line-height: 1.7;
  }

  .circle {
    width: 90px;
    height: 90px;
  }

  .circle::after {
    width: 66px;
    height: 66px;
  }

  .timeline-item h5 {
    font-size: 12px;
  }

  .quote-box {
    font-size: 15px;
    padding: 16px 20px;
  }

}


/* ===========================third container====================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: fffbfb;
}

.difference-section {
  /* padding:40px 0; */
  padding: 20px 0;
  background: #ffffff;
}

.custom-container {
  border: none;
  background: #ffffff;
  padding: 35px 12px 20px;
  position: relative;
}

/* HEADING */

.heading-area h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #111;
  display: inline-block;
  border-bottom: 4px solid #f0b528;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.yellow-line {
  display: none;
}

.heading-area h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.heading-area p {
  font-size: 16px;
  color: #222;
  margin-bottom: 70px;
}

/* FLOW WRAPPER */

.flow-wrapper {
  position: relative;
  padding: 0px 0;
}

/* FLOW DESIGN */

.flow-design {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding-top: 110px;
  /* room for top labels */
  padding-bottom: 120px;
  /* room for bottom labels (3-line text needs more) */
}

/* FLOW ITEM — wraps label + box; label always centered on its own box */

.flow-item {
  position: relative;
  flex-shrink: 0;
  margin-right: -16px;
}

/* Correct layering: earlier arrows sit in front of later ones */
.flow-item:nth-child(1) {
  z-index: 8;
}

.flow-item:nth-child(2) {
  z-index: 7;
}

.flow-item:nth-child(3) {
  z-index: 6;
}

.flow-item:nth-child(4) {
  z-index: 5;
}

.flow-item:nth-child(5) {
  z-index: 4;
}

.flow-item:nth-child(6) {
  z-index: 3;
}

.flow-item:nth-child(7) {
  z-index: 2;
}

.flow-item:nth-child(8) {
  z-index: 1;
}

/* Label shared styles */
.flow-item .flow-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 128px;
}

.flow-label span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: #111;
  display: block;
}

/* TOP LABEL */
.has-top .flow-label {
  bottom: 100%;
  padding-bottom: 58px;
}

/* Dot — right below text, at start of connector */
.has-top .flow-label::before {
  content: '';
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111;
  z-index: 10;
}

/* Connector — runs from dot all the way down to box top */
.has-top .flow-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: #333;
}

/* BOTTOM LABEL */
.has-bottom .flow-label {
  top: 100%;
  padding-top: 58px;
}

/* Dot — right above text, at start of connector */
.has-bottom .flow-label::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111;
  z-index: 10;
}

/* Connector — runs from box bottom all the way up to dot */
.has-bottom .flow-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: #333;
}

/* BOXES */

.flow-box {
  width: 130px;
  height: 76px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0,
      86% 0,
      100% 50%,
      86% 100%,
      0 100%,
      14% 50%);
  /* Crisp white border that follows the clip-path outline */
  filter:
    drop-shadow(0 3px 0 white) drop-shadow(0 -3px 0 white) drop-shadow(3px 0 0 white) drop-shadow(-3px 0 0 white) drop-shadow(2px 2px 0 white) drop-shadow(-2px -2px 0 white) drop-shadow(2px -2px 0 white) drop-shadow(-2px 2px 0 white);
}

.flow-box img {
  width: 34px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 2;
}

/* COLORS — dark-to-light teal gradient, then yellow */

.darkest-teal {
  background: #003d48;
}

.teal {
  background: #0a7a80;
}

.dark-teal {
  background: #006070;
}

.blue {
  background: #3a90a8;
}

.light-blue {
  background: #6aafca;
}

.blue2 {
  background: #5098b0;
}

.yellow {
  background: #e8aa10;
}

.yellow-light {
  background: #f2bc38;
}

/* First chevron: same shape as all others — left notch reveals white bg naturally */
.first-arrow {
  clip-path: polygon(0 0,
      86% 0,
      100% 50%,
      86% 100%,
      0 100%,
      14% 50%);
  width: 130px;
}

/* Old absolute label rules removed — labels now live inside .flow-item */

/* BOTTOM TEXT */

.bottom-text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
}

/* RESPONSIVE */

@media(max-width:1199px) {

  .heading-area h2 {
    font-size: 34px;
  }

  .heading-area p {
    font-size: 15px;
  }

  .flow-label span {
    font-size: 12px;
  }

}

/* ---- Flow: horizontal scroll on tablet/mobile (preserves chevron design) ---- */
@media(max-width:1100px) {
  .flow-box {
    width: 112px;
    height: 66px;
  }

  .flow-box img {
    width: 30px;
  }

  .first-arrow {
    width: 112px;
  }
}

@media(max-width:991px) {

  /* Scroll container — chevrons stay in one row */
  .flow-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px;
  }

  .flow-design {
    flex-wrap: nowrap;
    min-width: max-content;
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .flow-box {
    width: 100px;
    height: 60px;
  }

  .flow-box img {
    width: 26px;
  }

  .flow-item .flow-label {
    width: 110px;
  }

  .flow-label span {
    font-size: 11px;
  }

  .first-arrow {
    width: 100px;
  }
}

@media(max-width:767px) {

  .custom-container {
    padding: 25px 12px;
  }

  .heading-area h2 {
    font-size: 24px;
  }

  .yellow-line {
    width: 180px;
  }

  .heading-area h4 {
    font-size: 20px;
  }

  .heading-area p {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .flow-box {
    width: 100px;
    height: 60px;
  }

  .flow-box img {
    width: 26px;
  }

  .flow-label span {
    font-size: 12px;
  }

  .bottom-text {
    font-size: 5px;
  }

}

@media(max-width:576px) {
  .flow-box {
    width: 88px;
    height: 54px;
  }

  .flow-box img {
    width: 22px;
  }

  .flow-item .flow-label {
    width: 95px;
  }

  .flow-label span {
    font-size: 10px;
  }

  .first-arrow {
    width: 88px;
  }

  .flow-design {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}



/* ======================fourth section container============================== */

.curriculum-section {
  padding: 20px 0 20px;
  background: #ffffff;
}

.curriculum-wrapper {
  max-width: 100%;
  margin: 0;
  background: #fff;
}

.curriculum-header {
  padding: 0 0 24px;
}

.curriculum-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 4px solid #f0b528;
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.curriculum-yellow-line {
  display: none;
}

.curriculum-header p {
  font-size: 15px;
  color: #333;
  margin-bottom: 0;
}

.accordion-item {
  border: 1px solid #ccc !important;
  border-radius: 0 !important;
  background: #efefef;
  margin-bottom: 8px;
}

.accordion-button {
  background: #efefef;
  font-weight: 700;
  color: #111;
  padding: 14px 18px;
  box-shadow: none !important;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.accordion-button:not(.collapsed) {
  background: #efefef;
  color: #111;
  box-shadow: none !important;
}

.accordion-button::after {
  filter: brightness(0);
  background-size: 14px;
}

.accordion-body {
  background: #efefef;
  padding: 4px 18px 16px 18px;
}

.accordion-body ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.accordion-body li {
  margin-bottom: 6px;
  color: #444;
  font-size: 14px;
  padding-left: 16px;
  position: relative;
}

.accordion-body li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #444;
}

/* ===================== AI tools gallery ======================== */

.ai-gallery-section {
  padding: 20px 0 50px;
  background: #ffffff;
}

.ai-gallery-header {
  margin-bottom: 28px;
}

.ai-gallery-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 4px solid #f0b528;
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.ai-gallery-header p {
  font-size: 16px;
  color: #333;
  line-height: 1.65;
  max-width: 900px;
  margin: 0;
}

.ai-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.ai-gallery-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ai-gallery-image {
  width: 100%;
  aspect-ratio: 1;
  background: #f7f9fa;
  border: 1px solid #e3e8ea;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ai-gallery-image img {
  width: 100%;
  max-width: 88px;
  height: auto;
  object-fit: contain;
}

.ai-gallery-card:hover .ai-gallery-image {
  transform: translateY(-4px);
  border-color: #006b78;
  box-shadow: 0 8px 24px rgba(0, 107, 120, 0.12);
}

.ai-gallery-card figcaption {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

@media (max-width: 1199px) {
  .ai-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .ai-gallery-section {
    padding: 16px 0 40px;
  }

  .ai-gallery-header h2 {
    font-size: 28px;
  }

  .ai-gallery-header p {
    font-size: 15px;
  }

  .ai-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ai-gallery-image {
    padding: 14px;
  }

  .ai-gallery-card figcaption {
    font-size: 14px;
    margin-top: 10px;
  }
}

@media (max-width: 400px) {
  .ai-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ai-gallery-header h2 {
    font-size: 24px;
  }
}

.footer-note {
  padding: 20px 0 0;
  font-size: 13px;
  color: #555;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .curriculum-header h2 {
    font-size: 24px;
  }

  .accordion-button {
    font-size: 14px;
    padding: 12px 14px;
  }

  .accordion-body li {
    font-size: 13px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Section */
.coordinator-section {
  background: #006b78;
  padding: 55px 0 55px;
  position: relative;
}

/* Badge */
.year-badge {
  display: none;
}

/* Heading */
.section-title {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 18px;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #f0b528;
  margin-top: 10px;
}

/* Card */
.coordinator-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 30px;
  height: 100%;
}

.coordinator-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}

.coordinator-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.6;
}

.coordinator-card a {
  color: #000;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .section-title::after {
    width: 180px;
  }

  .coordinator-card {
    padding: 20px;
  }

  .coordinator-card h4 {
    font-size: 16px;
  }

  .coordinator-card p {
    font-size: 13px;
  }
}




/* =====================fifth section container================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: fffbfb;
}

/* Main Section */
.badge-section {
  background: #ffffff;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 0;
}

.badge-section>.container {
  padding-bottom: 0;
}

/* Heading */
.title-wrapper h2 {
  font-size: 46px;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 4px solid #f0b528;
  padding-bottom: 10px;
  margin-bottom: 22px;
}

.title-wrapper .badge-yellow-line {
  display: none;
}

/* Description */
.badge-description {
  font-size: 20px;
  line-height: 1.6;
  color: #111;
  margin-bottom: 0 !important;
  font-weight: 500;
}

/* Certificate */
.certificate-wrapper {
  margin-bottom: 0;
  text-align: center;
}

.certificate-img {
  width: 100%;
  max-width: 580px;
  display: inline-block;
  margin: 0 auto;
  margin-bottom: -40px;
}

/* Note */
.certificate-note {
  font-size: 16px;
  font-style: italic;
  color: #111;
  line-height: 1.6;
  margin: 0;
}

/* Campus background with certificate on top */
.campus-wrapper {
  background-image: url('images/iim-indore-cover.jpg');
  background-size: cover;
  background-position: top center;
  padding: 0 0 420px;
  margin-top: -90px;
}

/* Dates table: horizontal scroll on small screens */
.dates-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .title-wrapper h2 {
    font-size: 24px;
  }

  .title-wrapper .badge-yellow-line {
    width: 180px;
  }

  .badge-description {
    font-size: 15px;
  }

  .certificate-note {
    padding-bottom: 100px;
    font-size: 14px;
  }
}


/* ===========================sixth section========================================= */

.next-steps-section {
  padding: 30px 0 50px;
  background: #ffffff;
}

.main-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 4px solid #f0b528;
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.title-underline {
  display: none;
}

.sub-title {
  font-size: 16px;
  color: #006b78;
  font-weight: 700;
  /* margin-top: 16px; */
  margin-bottom: 0px;
}

.step-card {
  background: #006b78;
  border-radius: 10px;
  min-height: 130px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px 18px;
}

.step-card p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .main-title {
    font-size: 28px;
  }

  .title-underline {
    width: 220px;
  }

  .step-card {
    min-height: 110px;
  }

  .step-card p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .main-title {
    font-size: 22px;
  }

  .step-card {
    min-height: 100px;
    padding: 16px;
  }

  .step-card p {
    font-size: 16px;
  }
}


/* ======================seventh section - PAST BATCH PROFILE=============================== */

.batch-section {
  padding: 0px 0 40px;
  background: #ffffff;
}

.batch-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 4px solid #f0b528;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.batch-yellow-line {
  display: none;
}

.batch-size {
  font-size: 18px;
  color: #111;
  margin-bottom: 12px;
}

.batch-desc {
  font-size: 16px;
  color: #222;
  line-height: 1.65;
  margin-bottom: 20px;
}

.logos-wrapper {
  margin-bottom: 25px;
}

.batch-footer {
  font-size: 16px;
  color: #111;
  line-height: 1.65;
}

/* Heading */
/* .main-title {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  margin-bottom: 6px;
  text-transform: uppercase;
} */

.yellow-line {
  width: 200px;
  height: 4px;
  background: #f0b528;
  margin-bottom: 18px;
}

/* Batch Size */
.batch-size {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

/* Description */
.description {
  font-size: 15px;
  line-height: 1.3;
  color: #111;
  max-width: 95%;
  margin-bottom: 20px;
}

/* Logo Grid */
.logo-row {
  row-gap: 18px;
  margin-bottom: 24px;
}

.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-box img {
  width: 320px;
  /* object-fit: contain; */
}

/* Footer */
.footer-text {
  font-size: 15px;
  line-height: 1.4;
  color: #111;
  max-width: 96%;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-box img {
    height: 73px !important;
    width: 253px !important;
  }

  .main-title {
    font-size: 18px;
  }

  .batch-size {
    font-size: 16px;
  }

  .description,
  .footer-text {
    font-size: 14px;
  }

  .logo-box img {
    height: 48px;
    width: 150px;
  }
}

@media (max-width: 576px) {
  .logo-box img {
    height: 51px;
    width: 240px;
    margin-left: 101px;
  }

  .logo-box {
    width: 50%;
  }

  .logo-box img {
    height: 40px;
  }

  .description,
  .footer-text {
    font-size: 13px;
  }
}

@media (max-width: 375px) {
  .logo-box img {
    height: 55px;
    width: 200px;
    margin-left: 97px;
  }
}

/* =====================Important Dates section======================================= */

.dates-section {
  padding: 0px 0 50px;
  background: #ffffff;
}

.dates-box {
  background: #ffffff;
}

.heading-wrapper h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 4px solid #f0b528;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.dates-yellow-line {
  display: none;
}

.dates-table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
}

.dates-table thead tr {
  background: #006b78;
}

.dates-table thead th {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  padding: 14px 28px;
  text-decoration: underline;
}

.dates-table tbody td {
  font-size: 15px;
  color: #111;
  padding: 16px 28px;
  background: #ffffff;
}

.dates-table .highlight-row td {
  background: #daeef2;
}

/* =====================FAQ section======================================= */

.faq-section {
  /* padding: 0px 0 50px; */
  background: #ffffff;
}

.faq-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 4px solid #f0b528;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.title-line {
  display: none;
}

.faq-title p {
  font-size: 16px;
  color: #333;
  margin-bottom: 24px;
}

.faq-title h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

/* Who should enrol — audience list */
#wse .enrol-audience-list {
  list-style: none;
  margin: 0;
  padding: 0px 0px 50px 0px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

#wse .enrol-audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f8fcfd 0%, #deedf1 100%);
  border: 1px solid #c5dfe6;
  border-left: 4px solid #006b78;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 107, 120, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#wse .enrol-audience-list li::before {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  background: #f0b528;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240, 181, 40, 0.25);
}

#wse .enrol-audience-list li:hover {
  transform: translateY(-2px);
  border-color: #006b78;
  box-shadow: 0 8px 20px rgba(0, 107, 120, 0.12);
}

#wse .enrol-audience-list li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 8px);
  justify-self: center;
  width: 100%;
}

@media (max-width: 991px) {
  #wse .enrol-audience-list li:last-child:nth-child(odd) {
    max-width: none;
    justify-self: stretch;
  }
  #wse .enrol-audience-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #wse .enrol-audience-list li {
    padding: 16px 18px;
    font-size: 14px;
  }
}

/* FAQ CARD */

.faq-card {
  background: #deedf1;
  padding: 18px 22px;
  margin-bottom: 16px;
  border-radius: 4px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin: 0;
}

.faq-question {
  cursor: pointer;
}

.faq-question span {
  font-size: 14px;
  color: #006b78;
  margin-top: 2px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  display: inline-block;
}

.faq-card.collapsed .faq-question span {
  transform: rotate(180deg);
}

.faq-card>p,
.faq-card>ul,
.faq-card>.fee-note,
.faq-card>.table-wrapper {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 0;
}

.faq-card>ul {
  padding-left: 20px;
}

.faq-card>ul li {
  margin-bottom: 6px;
}

.faq-card.collapsed>p,
.faq-card.collapsed>ul,
.faq-card.collapsed>.fee-note,
.faq-card.collapsed>.table-wrapper {
  display: none;
}

/* FEES */

.fee-note {
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #111;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrapper thead tr {
  background: #006b78;
}

.table-wrapper thead th {
  color: #ffffff;
  font-size: 13px;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  text-decoration: underline;
}

.table-wrapper tbody td {
  padding: 12px 16px;
  font-size: 13px;
  vertical-align: top;
  color: #222;
  background: #ffffff;
}

.table-wrapper tbody tr.highlight td {
  background: #d7eaee;
}

.table-wrapper .total-row td {
  font-weight: 700;
  background: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .faq-title h2 {
    font-size: 24px;
  }

  .title-line {
    width: 220px;
  }

  .faq-question h3 {
    font-size: 15px;
  }

  .faq-card>p {
    font-size: 13px;
  }

  .faq-card {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .faq-title h2 {
    font-size: 20px;
  }

  .title-line {
    width: 180px;
  }

  .faq-title p {
    font-size: 14px;
  }

  .faq-question h3 {
    font-size: 13px;
  }

  .faq-card p {
    font-size: 10px;
    line-height: 1.5;
  }
}


/* ============================================================
   GLOBAL RESPONSIVE OVERRIDES
   ============================================================ */

/* ---- Campus section: reduce tall padding on small screens ---- */
@media (max-width: 991px) {
  .campus-wrapper {
    padding-bottom: 280px;
    margin-top: -60px;
  }
}

@media (max-width: 767px) {
  .campus-wrapper {
    padding-bottom: 180px;
    margin-top: -40px;
  }
}

@media (max-width: 480px) {
  .campus-wrapper {
    padding-bottom: 120px;
    margin-top: -20px;
  }
}

/* ---- All section h2 headings: scale down fluidly ---- */
@media (max-width: 991px) {

  .curriculum-header h2,
  .title-wrapper h2,
  .main-title,
  .batch-title,
  .faq-title h2,
  .section-title {
    font-size: 28px;
  }

  .heading-area h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {

  .curriculum-header h2,
  .title-wrapper h2,
  .batch-title,
  .faq-title h2,
  .section-title {
    font-size: 22px;
  }

  .main-title {
    font-size: 22px;
  }

  .heading-area h2 {
    font-size: 24px;
  }

  .badge-description {
    font-size: 14px;
  }

  .batch-desc,
  .batch-size,
  .batch-footer {
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  .curriculum-header h2,
  .title-wrapper h2,
  .batch-title,
  .faq-title h2,
  .section-title,
  .main-title {
    font-size: 18px;
  }

  .heading-area h2 {
    font-size: 18px;
  }
}

/* ---- Strategy: timeline at medium screens ---- */
@media (max-width: 991px) {
  .timeline-dot {
    display: none;
  }

  .timeline-dot::after {
    display: none;
  }

  .circle {
    width: 100px;
    height: 100px;
  }

  .circle::after {
    width: 72px;
    height: 72px;
  }

  .timeline-item {
    padding: 8px 0;
  }
}

/* ---- Strategy heading: scale down so it stays on one line as long as possible ---- */
@media (max-width: 1200px) {
  .heading-wrapper h2 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .heading-wrapper h2 {
    font-size: 24px;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .heading-wrapper h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .heading-wrapper h2 {
    font-size: 17px;
  }
}

/* ---- Strategy: container padding ---- */

/* ---- Coordinator section ---- */
@media (max-width: 576px) {
  .coordinator-section {
    padding: 36px 0;
  }

  .coordinator-card {
    padding: 16px;
  }

  .coordinator-card h4 {
    font-size: 15px;
  }

  .coordinator-card p {
    font-size: 13px;
  }
}

/* ---- Next steps: 1 column on very small screens ---- */
@media (max-width: 480px) {
  .step-card {
    min-height: auto;
    padding: 14px;
  }

  .step-card p {
    font-size: 14px;
  }
}

/* ---- Important dates: table always scrollable ---- */
.dates-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dates-table {
  min-width: 340px;
}

/* ---- FAQ table: always scrollable (already in table-wrapper) ---- */
@media (max-width: 480px) {
  .table-wrapper table {
    min-width: 420px;
  }
}

/* ---- Very small phones (≤375px) ---- */
@media (max-width: 375px) {

  /* .logo-box img { height: 34px; width: auto; } */
  .hero-content h1 {
    font-size: 16px;
  }

  .hero-content h3 {
    font-size: 11px;
  }

  .nav-menu li a {
    font-size: 8px;
    padding: 6px 1px;
  }

  .bottom-box h5 {
    font-size: 12px;
  }

  .bottom-box p {
    font-size: 10px;
  }

  .custom-container {
    padding: 20px 14px;
  }
}

/* Model Classes */
.verify-mobile-no-modal {
  --primary-color: #0a3d6e;
  --secondary-color: #434343;
  --black-color: #000;
  --white-color: #fff;

  --fs-xs: 1.3125rem;
  --fs-x: 1.5rem;

  --bs-modal-width: 992px !important;
  padding: 0 1rem;
}

.verify-mobile-no-modal .modal-content {
  --bs-modal-border-radius: 1rem;
  padding: 0.75rem;
  position: relative;
  background-image: url('images/email-send.png');
  background-repeat: no-repeat;
  background-size: 15.625rem auto;
  background-position: 85% 100%;
}

.verify-mobile-no-modal .btn-close {
  position: absolute;
  top: 1.75rem;
  right: 2.25rem;
  background-size: 1rem;
  padding: 1.125rem;
  border-radius: 50%;
  border: 0.1875rem solid var(--secondary-color);
}

.verify-mobile-no-modal .btn-close:focus {
  box-shadow: none;
}

.verify-mobile-no-modal-left {
  background: #006b78;
  border-radius: 0.625rem;
  padding: 2.5rem;
  color: var(--white-color);
  height: 100%;
}

.verify-mobile-no-modal-left h5 {
  font-weight: 700;
  margin: 2rem 0;
}

.otp-inputs {
  display: flex;
  align-items: center;
}

.otp-input {
  height: 3.5rem;
  width: 3.5rem;
  margin: 0 0.5rem;
  text-align: center;
  font-size: var(--fs-xs);
  border-radius: 0.625rem;
  display: block;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.12) inset;
  border: 0;
  background: #f6f6f6;
}

.otp-input:focus {
  box-shadow: 2px 2px 4px rgba(228, 150, 62, 0.12) inset;
}

.otp-input:nth-child(1) {
  cursor: pointer;
  pointer-events: all;
}

.form-error {
  display: block;
  color: #dc3545;
  font-size: 11px;
  margin-top: 2px;
  font-weight: 500;
  line-height: 1.3;
}

.form-error:empty {
  display: none;
}

.form-error-general {
  margin-bottom: 6px;
}

.form-check .checkbox-error,
.checkbox-error {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.3;
}

/* reCAPTCHA wrapper — column so error appears below widget, never beside it */
.recaptcha-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: visible;
}

.recaptcha-wrapper #html_element {
  width: auto;
}

/* Error below reCAPTCHA — compact, never overflows */
#error-recaptcha {
  color: #dc3545;
  font-style: italic;
  font-size: 14px !important;
  font-weight: 500;
  margin-top: 3px;
  line-height: 1.3;
}

.captcha-scale {
  transform: scale(1);
  transform-origin: left top;
}

@media (min-width: 991px) {
  .captcha-scale {
    transform: scale(0.75);
    transform-origin: left top;
    margin-bottom: -18px;
  }
}

@media (max-width: 767px) {
  .captcha-scale {
    transform: scale(0.88);
    transform-origin: left top;
    margin-bottom: -9px;
  }
}

@media (max-width: 480px) {
  .captcha-scale {
    transform: scale(0.78);
    transform-origin: left top;
    margin-bottom: -16px;
  }
}

@media (max-width: 380px) {
  .captcha-scale {
    transform: scale(0.68);
    transform-origin: left top;
    margin-bottom: -24px;
  }
}

.dtwidget-chat-container {
  background-color: #25d366 !important;
}

.dtwidget-chat-container span {
  font-size: 0;
}

.dtwidget-chat-container span::after {
  content: "Chat With Us";
  font-size: 14px;
  color: #fff;
}

/* Video Section */
.video-section {
  /* padding: 20px 0; */
  background: #ffffff;
}

.video-title {
  font-weight: 700;
  font-size: 38px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 4px solid #FFDA0A;
  text-align: center;
  width: 100%;
}

.video-item {
  margin-bottom: 30px;
}

.video-thumbnail-link {
  text-decoration: none;
  display: block;
}

.video-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 15px;
  aspect-ratio: 16 / 9;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(29, 78, 163, 0.6); */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  opacity: 0.8;
}

.play-button-overlay i {
  font-size: 64px;
  color: #FFDA0A;
  transition: transform 0.3s ease, font-size 0.3s ease;
}

.video-thumbnail-link:hover .video-thumbnail-wrapper {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.video-thumbnail-link:hover .play-button-overlay {
  background: rgba(29, 78, 163, 0.8);
}

.video-thumbnail-link:hover .play-button-overlay i {
  font-size: 72px;
  transform: scale(1.1);
}

.video-description {
  font-weight: 500;
  font-size: 16px;
  color: #333;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .video-title {
    font-size: 22px;
  }

  .video-thumbnail-wrapper {
    aspect-ratio: 16 / 9;
  }

  .play-button-overlay i {
    font-size: 48px;
  }

  .video-thumbnail-link:hover .play-button-overlay i {
    font-size: 54px;
  }
}

/* ===================== Site footer ======================== */

.site-footer {
  background: #ffffff;
  padding: 48px 20px 40px;
  text-align: center;
}

.site-footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

.site-footer-offered {
  font-size: 14px;
  color: #333;
  margin: 0 0 20px;
}

.site-footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.site-footer-logo img {
  max-width: 100%;
  width: 420px;
  height: auto;
}

.site-footer-divider {
  border: 0;
  border-top: 1px solid blue;
  margin: 0 0 24px;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin-bottom: 16px;
}

.site-footer-links a {
  font-size: 14px;
  color: #1a73e8;
  text-decoration: underline;
}

.site-footer-links a:hover {
  color: #0d5bba;
}

.site-footer-sep {
  color: #333;
  font-size: 14px;
}

.site-footer-copy {
  font-size: 14px;
  color: #333;
  margin: 0;
}

@media (max-width: 576px) {
  .site-footer {
    padding: 36px 16px 32px;
  }

  .site-footer-logo img {
    width: 280px;
  }

  .site-footer-offered,
  .site-footer-links a,
  .site-footer-sep,
  .site-footer-copy {
    font-size: 13px;
  }
}

.site-footer-contact {
  margin: 15px 0;
  font-size: 15px;
  line-height: 1.6;
}

.site-footer-contact a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.site-footer-contact a:hover {
  text-decoration: underline;
}