/* =====================================================================
   CloudThat – Listicle Pages (Combined: Page-01 + Page-02)
   Custom CSS layer on top of Bootstrap 5.3
   Fonts are loaded globally — no @font-face here.
===================================================================== */

/* ==========================================================
   DESIGN TOKENS (:root variables — merged from both pages)
   ========================================================== */
:root {
  /* Colours — shared */
  --ct-blue: #20629b;
  --ct-blue-bright: #1995ff;
  --ct-gold: #d0b92b;
  --ct-badge-bg: #eaf3fc;
  --ct-muted: #667085;
  --ct-ink: #2c2c2c;

  /* Colours — Page-01 specific */
  --ct-blue-2: #20629c;
  --ct-blue-deep: #0f3b62;
  --ct-alt: #fafafd;
  --ct-heading: #333;

  /* Colours — Page-02 specific */
  --ct-teal: #0da7b0;
  --ct-navy: #111c2c;
  --ct-navy-2: #0a1f44;
  --ct-muted-2: #6b7a99;
  --ct-slate: #4b6484;
  --ct-bg: #fafafd;
  --ct-line: #e5eaf0;

  /* Font stacks — Page-01 naming */
  --ff-reg: "ProximaNova-Regular", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ff-semi: "ProximaNova-Semibold", "Segoe UI Semibold", system-ui, sans-serif;
  --ff-bold: "ProximaNova-Bold", "Segoe UI", system-ui, sans-serif;
  --ff-xbold: "ProximaNova-Extrabold", "Segoe UI", system-ui, sans-serif;

  /* Font stacks — Page-02 naming (aliases) */
  --ct-font: ProximaNova-Regular, "Segoe UI", system-ui, sans-serif;
  --ct-font-bold: ProximaNova-Bold, "Segoe UI Semibold", system-ui, sans-serif;
  --ct-font-semi: ProximaNova-Semibold, "Segoe UI Semibold", system-ui, sans-serif;
  --ct-font-med: ProximaNova-Medium, "Segoe UI", system-ui, sans-serif;

  /* Gradients — Page-02 */
  --ct-grad: linear-gradient(90deg, var(--ct-blue) 0%, var(--ct-teal) 100%);
  --ct-grad-blue: linear-gradient(90deg, var(--ct-blue) 0%, var(--ct-blue-bright) 100%);
}

/* ==========================================================
   BASE / SHARED STYLES
   ========================================================== */
body {
  font-family: var(--ff-reg);
  color: var(--ct-ink);
  line-height: 1.6;
  overflow-x: hidden;
}
a,
body a {
  text-decoration: none;
}
.ff-bold {
  font-family: var(--ff-bold);
}
.ff-semi {
  font-family: var(--ff-semi);
}

/* Wider container (1300px) */
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1300px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}

/* ---------- Shared heading / badge / callout helpers ---------- */
.ct-badge {
  display: inline-block;
  background: var(--ct-badge-bg);
  color: var(--ct-blue);
  font-family: var(--ff-semi);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 20px;
}
.ct-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--ct-badge-bg);
  color: var(--ct-blue);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--ct-font-semi);
}
.ct-h2 {
  font-family: var(--ff-bold);
  font-size: 32px;
  line-height: 1.2;
  color: var(--ct-heading);
}
.ct-h2 span,
.ct-h2 .accent {
  color: var(--ct-blue);
}
.ct-lead {
  font-size: 16px;
  color: var(--ct-muted);
  line-height: 1.8;
}
.ct-callout {
  background: var(--ct-grad);
  color: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.8;
  font-family: var(--ct-font-med);
}
@media (max-width: 767px) {
  .ct-h2 {
    font-size: 26px;
  }
}

/* ---------- Alternating section backgrounds ---------- */
.bg-alt {
  background: var(--ct-alt);
}

/* ---------- Section vertical rhythm ---------- */
.sec-pad {
  padding-top: 50px;
  padding-bottom: 50px;
}
.sec-pad-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-pad {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .sec-pad {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .sec-pad-80 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-pad {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/* ==========================================================
   HERO (shared + page-specific)
   ========================================================== */
.hero-section {
  background: linear-gradient(
    to bottom,
    var(--ct-blue-2) 0%,
    var(--ct-blue-deep) 100%
  );
  padding: 150px 0 56px 0;
}
/* Page-02 hero override with background image */
.hero-section.hero-with-bg {
  background: #0f3a66 url("https://i.postimg.cc/GmwBqLWJ/Section-HERO.webp")
    no-repeat center/cover;
}
.partner-badge,
.hero-badge {
  padding: 8px 18px;
  border-radius: 30px;
  background: #25659e;
  border: 1px solid #2174bb;
  color: #e0e7ed;
  font-size: 13px;
}
.hero-title {
  font-family: var(--ff-bold);
  font-size: 50px;
  line-height: 1.15;
  color: #fff;
  max-width: 1250px;
}
.hero-title span,
.hero-title .accent {
  color: var(--ct-gold);
}
.hero-meta span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
.hero-meta img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -2px;
}
.hero-description {
  font-size: 16px;
  color: #bfcedb;
  max-width: 850px;
}
.hero-tags span {
  background: #2d5c84;
  border: 1px solid #52799a;
  color: #e0e7ed;
  font-size: 13px;
  padding: 8px 16px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 54px;
  padding-left: 0;
  padding-right: 0;
  background: var(--ct-gold);
  color: #051127;
  border-radius: 8px;
  font-family: var(--ff-bold);
  transition: transform 0.3s ease;
}
.hero-btn:hover,
.hero-btn:focus,
.hero-btn:active {
  color: #051127;
  background: var(--ct-gold);
  border-color: var(--ct-gold);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .hero-section {
    padding: 70px 0;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-btn {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .hero-section {
    padding: 50% 0 10% 0;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-btn {
    width: 100%;
  }
}

/* ==========================================================
   CERTIFIED-BY BAR (Page-02)
   ========================================================== */
.certified-bar {
  background: var(--ct-bg);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.certified-label {
  font-size: 12px;
  letter-spacing: 1px;
  color: #6b7a99;
  font-family: var(--ct-font-semi);
}
.partner-pill {
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #dce3ea;
  border-radius: 6px;
  font-size: 13px;
  font-family: var(--ct-font-semi);
  white-space: nowrap;
  line-height: 1;
}
.partner-pill img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.partner-pill.aws {
  color: #ff9900;
}
.partner-pill.microsoft {
  color: #0078d4;
}
.partner-pill.google {
  color: #4285f4;
}
.partner-pill.nvidia {
  color: #76b900;
}
@media (max-width: 767px) {
  .partner-pill {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* ==========================================================
   TWO-COLUMN WRAPPER + SIDEBAR (Page-02)
   ========================================================== */
.double-columns-section {
  padding: 100px 0;
}
.double-columns-section .container {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .double-columns-section {
    padding: 50px 0;
  }
  .double-columns-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ---- sidebar : In-this-guide ---- */
.guide-card {
  background: #fff;
  border: 1px solid #e9edf3;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.guide-title {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ct-navy);
  font-family: var(--ct-font-bold);
}
.guide-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 12px;
  height: 12px;
  background: url("https://i.postimg.cc/26vLWmf7/Symbol-(7).png") no-repeat center/contain;
}
.guide-toggle {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.guide-toggle .chev {
  transition: transform 0.3s ease;
  color: var(--ct-blue);
}
.guide-toggle[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}
.guide-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.guide-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
}
.guide-list li:last-child {
  margin-bottom: 0;
}
.guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--ct-blue);
  border-radius: 50%;
  box-sizing: border-box;
}
.guide-list a {
  color: var(--ct-navy-2);
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s;
}
.guide-list a:hover {
  color: var(--ct-blue);
}

/* ---- sidebar : course card ---- */
.course-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.course-card__head {
  background: var(--ct-grad-blue);
  padding: 24px;
  text-align: center;
}
.course-card__head h3 {
  color: #fff;
  font-size: 22px;
  margin: 0 0 8px;
  font-family: var(--ct-font-bold);
}
.course-card__head p {
  color: #b1c8dc;
  font-size: 16px;
  margin: 0;
}
.course-card__body {
  padding: 24px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #1c2b4a;
  font-size: 16px;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url("https://i.postimg.cc/9XRQXffK/Symbol.png") no-repeat center/contain;
}
.course-btn-primary,
.course-btn-secondary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--ct-font-semi);
}
.course-btn-primary {
  margin: 25px 0 12px;
  background: var(--ct-grad-blue);
  color: #fff;
}
.course-btn-secondary {
  border: 2px solid var(--ct-navy-2);
  color: var(--ct-navy-2);
  background: #fff;
}
.trust-list {
  list-style: none;
  margin: 20px -24px -24px;
  padding: 20px 24px 24px;
  border-top: 1px solid #e5e7eb;
  background: var(--ct-bg);
}
.trust-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: no-repeat center/contain;
}
.trust-users::before {
  background-image: url("https://i.postimg.cc/9QT9DpFN/Symbol-(1).png");
}
.trust-globe::before {
  background-image: url("https://i.postimg.cc/J0GDM32N/Container-(1).png");
}
.trust-calendar::before {
  background-image: url("https://i.postimg.cc/8k0fw374/Container-(2).png");
}

/* ---- sidebar : partner card ---- */
.partner-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.partner-card h4 {
  font-size: 18px;
  color: var(--ct-navy);
  margin-bottom: 20px;
  font-family: var(--ct-font-bold);
}
.partner-row {
  position: relative;
  padding: 12px 12px 12px 50px;
  border-radius: 8px;
  background: var(--ct-bg);
  margin-bottom: 8px;
}
.partner-row strong {
  display: block;
  color: var(--ct-navy);
  font-size: 16px;
  font-family: var(--ct-font-semi);
}
.partner-row span {
  display: block;
  color: #777;
  font-size: 14px;
  margin-top: 4px;
}
.partner-row::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: no-repeat center/contain;
}
.p-aws::before {
  background-image: url("https://i.postimg.cc/brghC4Tk/Container-(3).png");
}
.p-azure::before {
  background-image: url("https://i.postimg.cc/jdqKwdqR/Container-(4).png");
}
.p-nvidia::before {
  background-image: url("https://i.postimg.cc/P5Pjy38D/Container-(5).png");
}

/* ---- sidebar : help card ---- */
.help-card {
  margin-top: 20px;
  background: var(--ct-bg);
  border-radius: 16px;
  padding: 24px;
}
.help-card img {
  width: 13px;
  height: 13px;
}
.help-card h4 {
  font-size: 13px;
  color: #051127;
  margin: 0;
  font-family: var(--ct-font-bold);
}
.help-card a {
  display: block;
  font-size: 13px;
  color: #051127;
  line-height: 1.8;
}
.help-card a:hover {
  color: var(--ct-blue);
}

/* ==========================================================
   CONTEXT + BENEFIT CARDS (Page-02)
   ========================================================== */
.benefit-card {
  background: #fff;
  border: 1px solid #dde3f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.benefit-icon {
  width: 40px;
  height: 40px;
  background: #f3f8fd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.benefit-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.benefit-card h3 {
  font-size: 18px;
  color: var(--ct-navy);
  margin-bottom: 10px;
  font-family: var(--ct-font-bold);
}
.benefit-card p {
  font-size: 15px;
  color: var(--ct-muted);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================
   COURSE HIGHLIGHTS / CHIPS (Page-02)
   ========================================================== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #dce3ea;
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--ct-font-bold);
  line-height: 1;
  color: #1f3556;
}
.chip::before {
  content: "";
  width: 24px;
  height: 24px;
  background: no-repeat center/contain;
}
.chip.aws::before {
  background-image: url("https://i.postimg.cc/brghC4Tk/Container-(3).png");
}
.chip.ms::before {
  background-image: url("https://i.postimg.cc/jdqKwdqR/Container-(4).png");
}
.chip.gcp::before {
  background-image: url("https://i.postimg.cc/R0r0L4Y4/Container-(13).png");
}
.chip.nvidia::before {
  background-image: url("https://i.postimg.cc/P5Pjy38D/Container-(5).png");
}
@media (max-width: 767px) {
  .chip {
    font-size: 12px;
    padding: 8px 12px;
  }
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--ct-bg);
  border: 1px solid #e5eaf2;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}
.highlight-card img {
  width: 24px;
  height: 24px;
  margin-top: 4px;
  flex-shrink: 0;
  object-fit: contain;
}
.highlight-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--ct-navy-2);
  font-family: var(--ct-font-med);
}
.highlight-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ct-muted-2);
}
@media (max-width: 767px) {
  .highlight-card {
    padding: 15px;
  }
  .highlight-card h3 {
    font-size: 16px;
  }
  .highlight-card p {
    font-size: 14px;
  }
}

/* ==========================================================
   CURRICULUM — Page-02 Accordion (Bootstrap re-skinned)
   ========================================================== */
.pill-tag {
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--ct-badge-bg);
  color: var(--ct-blue);
  font-size: 14px;
  font-family: var(--ct-font-bold);
}
.pill-tag.green {
  background: #e4f7f6;
  color: #0098a8;
}
.pill-tag.orange {
  background: #fbefe8;
  color: #d06b28;
}
@media (max-width: 767px) {
  .pill-tag {
    font-size: 13px;
  }
}

.ct-accordion .accordion-item {
  border: 1px solid var(--ct-line);
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.ct-accordion .accordion-button {
  background: #fff;
  padding: 16px 44px 16px 18px;
  box-shadow: none;
  font-family: var(--ct-font-bold);
  color: var(--ct-navy);
  position: relative;
  gap: 8px;
}
.ct-accordion .accordion-button:not(.collapsed) {
  color: var(--ct-navy);
  background: #fff;
}
.ct-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.ct-accordion .accordion-button::after {
  width: 14px;
  height: 14px;
  background-size: contain;
  background-image: url("https://i.postimg.cc/ydyRb7rw/Symbol-(3).png");
  position: absolute;
  right: 18px;
  top: 18px;
  margin: 0;
  flex-shrink: 0;
}
.ct-accordion .accordion-button:not(.collapsed)::after {
  transform: none;
  background-image: url("https://i.postimg.cc/g2LZPVTX/Symbol-(4).png");
}
.module-badge {
  background: var(--ct-gold);
  color: #111;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--ct-font-bold);
}
.module-title {
  font-size: 18px;
  color: var(--ct-navy);
  font-family: var(--ct-font-bold);
}
.ct-accordion .accordion-body {
  padding: 0 24px 24px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .ct-accordion .accordion-button {
    padding: 14px 40px 14px 16px;
    flex-wrap: wrap;
    gap: 6px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .ct-accordion .accordion-button::after {
    right: 14px;
    top: 14px;
  }
  .ct-accordion .module-badge {
    margin-right: 0;
  }
  .module-title {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* ==========================================================
   COMPARISON TABLE (shared structure, both pages)
   ========================================================== */
.compare-wrap {
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: auto;
}
.compare-wrap .table-responsive {
  border-radius: 16px;
}
.compare-table {
  min-width: 1000px;
  margin: 0;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
}
.compare-table thead th {
  background: var(--ct-blue);
  color: #fff;
  font-family: var(--ff-bold);
  font-size: 16px;
  padding: 18px;
  text-align: left;
  border: 0;
  white-space: nowrap;
}
.compare-table thead th:first-child {
  width: 260px;
}
.compare-table thead th.col-cloudthat,
.compare-table thead th.is-cloudthat {
  background: var(--ct-blue-bright);
}
.compare-recommended {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--ct-gold);
  color: #fff;
  font-size: 11px;
  font-family: var(--ff-bold);
}
.compare-table tbody td {
  padding: 18px;
  font-size: 15px;
  color: #333;
  border-top: 1px solid #e6ecf3;
  vertical-align: top;
}
.compare-table tbody td img {
  width: 18px;
  margin-right: 8px;
  vertical-align: -3px;
}
.compare-table tbody tr:nth-child(even) {
  background: #fafcfe;
}
.compare-table td.is-cloudthat {
  background: #fff8f4;
}
.compare-table td:first-child {
  font-family: var(--ff-bold);
}
/* sticky first column */
.compare-table th:first-child,
.compare-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}
.compare-table thead th:first-child {
  background: var(--ct-blue);
  z-index: 3;
}
.compare-table tbody tr:nth-child(odd) td:first-child {
  background: #fff;
}
.compare-table tbody tr:nth-child(even) td:first-child {
  background: #fafcfe;
}
.compare-signs {
  color: #6b7280;
  font-size: 16px;
  text-align: center;
}
.compare-scroll-hint {
  display: none;
  color: #6b7280;
  font-size: 13px;
  text-align: center;
}

/* Table colour tags */
.t-green,
.t-yellow,
.t-red {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  display: inline-block;
  font-family: var(--ct-font-semi);
}
.t-green {
  background: #e8faf7;
  color: #00a8a8;
}
.t-yellow {
  background: #f6f3e8;
  color: #5b5641;
}
.t-red {
  background: #ffe9eb;
  color: #f25563;
}

@media (max-width: 767px) {
  .compare-table td,
  .compare-table th {
    font-size: 14px;
  }
  .compare-table th:first-child,
  .compare-table td:first-child {
    min-width: 160px;
    width: 140px;
    white-space: normal;
  }
  .compare-table thead th {
    font-size: 16px;
    width: 140px;
  }
  .compare-table tbody td {
    font-size: 14px;
  }
  .compare-scroll-hint {
    display: block;
  }
}

/* ==========================================================
   CERTIFICATION WEIGHT (Page-02)
   ========================================================== */
.weight-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.weight-point img {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}
.weight-point span {
  color: var(--ct-slate);
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .weight-point span {
    font-size: 15px;
  }
}

/* ==========================================================
   TESTIMONIALS (slick — shared by both pages)
   ========================================================== */
.testimonials-section {
  background: var(--ct-alt);
}
.testimonials-section .container {
  padding-left: 20px;
  padding-right: 20px;
}
.testimonials-heading {
  font-family: var(--ff-bold);
  font-size: clamp(20px, 2.8vw, 30px);
  color: #1a1a1a;
}
.testimonials-outer {
  background: #fff;
  border-radius: 12px;
  padding: 32px 32px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}
.testimonials-slider {
  margin: 0 -12px;
}
.testimonial-card {
  padding: 0 12px;
  outline: none;
  height: 100%;
}
.testimonial-inner {
  height: 100%;
  border: 1.5px solid #e2eaf2;
  border-radius: 8px;
  padding: 28px 24px 24px;
  position: relative;
  background: #fff;
  transition:
    background 0.35s ease,
    border-color 0.35s ease;
}
.testimonial-inner.is-featured {
  background: linear-gradient(135deg, #2a6496 0%, #3dbcb0 100%);
  border-color: transparent;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1;
  position: absolute;
  top: 14px;
  left: 18px;
  color: #c8dce9;
}
.testimonial-inner.is-featured .quote-mark {
  color: rgba(255, 255, 255, 0.4);
}
.quote-spacer,
.quote-mark-spacer {
  height: 34px;
}
.testimonial-text {
  font-size: 13.5px;
  line-height: 1.72;
  color: #444;
  margin-bottom: 20px;
  transition: color 0.35s ease;
}
.testimonial-inner.is-featured .testimonial-text {
  color: rgba(255, 255, 255, 0.92);
}
.testimonial-author {
  font-family: var(--ff-bold);
  font-size: 14px;
  color: #2580b3;
  transition: color 0.35s ease;
}
.testimonial-inner.is-featured .testimonial-author {
  color: #fff;
}
.testimonials-arrows {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}
.arrow-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}
.arrow-btn img {
  width: 26px;
  height: 16px;
  display: block;
  transition: opacity 0.2s;
}
.arrow-btn:hover img {
  opacity: 0.8;
}
/* slick equal-height */
.slick-track {
  display: flex;
  align-items: stretch;
}
.slick-slide {
  height: auto !important;
  outline: none;
}
.slick-slide > div {
  height: 100%;
}
@media (max-width: 640px) {
  .testimonials-outer {
    padding: 24px 16px;
  }
  .testimonials-slider {
    margin: 0 -8px;
  }
  .testimonial-card {
    padding: 0 8px;
  }
}

/* ==========================================================
   FAQ (Bootstrap accordion — shared by both pages)
   ========================================================== */
.faq-badge {
  background: var(--ct-badge-bg);
  color: var(--ct-blue);
}
.faq-heading {
  font-family: var(--ff-bold);
  font-size: 32px;
  line-height: 1.2;
  color: var(--ct-heading);
}
.faq-intro {
  max-width: 800px;
  color: var(--ct-muted);
  font-size: 18px;
  line-height: 1.8;
}
.faq-accordion {
  border: 1px solid #e5eaf0;
  border-radius: 12px;
  overflow: hidden;
}
.faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #e5eaf0;
  background: transparent;
}
.faq-accordion .accordion-item:last-child {
  border-bottom: none;
}
.faq-accordion .accordion-button {
  background: var(--ct-alt);
  color: #111c2c;
  font-family: var(--ff-semi);
  font-size: 18px;
  line-height: 1.5;
  padding: 24px 30px;
  box-shadow: none;
  border-radius: 0 !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--ct-alt);
  color: #111c2c;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-size: 24px;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320629B' stroke-width='2.2' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320629B' stroke-width='2.2' stroke-linecap='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}
/* Page-02 FAQ variant uses image icons */
.faq-accordion.faq-accordion--icons .accordion-button::after {
  background-size: contain;
  background-image: url("https://i.postimg.cc/7LMZdcfx/Background-(13).png");
}
.faq-accordion.faq-accordion--icons .accordion-button:not(.collapsed)::after {
  transform: none;
  background-image: url("https://i.postimg.cc/yY1s7B8N/Background-(14).png");
}
.faq-accordion .accordion-body {
  background: #fff;
  padding: 24px 30px;
  color: #4f5b67;
  font-size: 16px;
  line-height: 1.8;
}
.faq-wrap {
  border: 1px solid var(--ct-line);
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .faq-heading {
    font-size: 26px;
  }
  .faq-intro {
    font-size: 14px;
  }
  .faq-accordion .accordion-button {
    padding: 18px;
    font-size: 16px;
  }
  .faq-accordion .accordion-body {
    padding: 15px;
    font-size: 14px;
  }
}

#section7 .container {
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================
   FINAL CTA (shared structure, both pages)
   ========================================================== */
#section9 .container {
  padding-left: 20px;
  padding-right: 20px;
}
/* Page-01 CTA */
.cta-gradient-box {
  background: linear-gradient(90deg, #1995ff 0%, #20629b 30%, #20629b 100%);
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(32, 98, 155, 0.15);
}
/* Page-02 CTA */
.cta-box {
  background: var(--ct-blue) url("https://i.postimg.cc/sg0v6w9Y/FINAL-CTA.webp")
    no-repeat right center/cover;
  border-radius: 24px;
  color: #fff;
  text-align: center;
}
.cta-title {
  font-family: var(--ff-bold);
  font-size: 1.85rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
}
.cta-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
}
/* Page-01 CTA buttons */
.btn-cta {
  padding: 14px 32px;
  font-family: var(--ff-bold);
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-cta-solid {
  background: var(--ct-gold);
  border: 2px solid var(--ct-gold);
  color: #1f2937;
}
.btn-cta-solid:hover {
  background: #bfa825;
  border-color: #bfa825;
  color: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(208, 185, 43, 0.3);
}
.btn-cta-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  transform: translateY(-2px);
}
.cta-features {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.divider-dot::before {
  content: "•";
  color: rgba(255, 255, 255, 0.4);
  padding: 0 4px;
}
/* Page-02 CTA buttons */
.cta-btn {
  padding: 14px 32px;
  font-family: var(--ct-font-bold);
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.cta-btn-gold {
  background: var(--ct-gold);
  border: 2px solid var(--ct-gold);
  color: #1f2937;
}
.cta-btn-gold:hover {
  background: #bfa825;
  border-color: #bfa825;
  color: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(208, 185, 43, 0.3);
}
.cta-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.cta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 991.98px) {
  .cta-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 575.98px) {
  .cta-gradient-box,
  .cta-box {
    border-radius: 16px;
  }
  .cta-title {
    font-size: 1.35rem;
  }
  .btn-cta,
  .cta-btn {
    width: 100%;
    padding: 12px 20px;
  }
}

/* ==========================================================
   PAGE-01 SPECIFIC STYLES
   ========================================================== */

/* --- AI context (mobile read-more) --- */
.ai-context-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}
.ai-context-read-more {
  display: none;
  color: var(--ct-blue);
  font-family: var(--ff-bold);
  font-size: 14px;
}
@media (max-width: 767px) {
  .ai-context-content p {
    font-size: 14px;
  }
  .ai-context-expandable {
    display: none;
  }
  .ai-context-expandable.active {
    display: block;
  }
  .ai-context-read-more {
    display: inline-flex;
  }
}

/* --- Evaluation framework --- */
.ai-eval-item {
  border-top: 1px solid #e5eaf0;
}
.ai-eval-item:first-child {
  border-top: none;
}
.ai-eval-number {
  font-family: var(--ff-bold);
  font-size: 38px;
  line-height: 1;
  color: #daecfd;
}
.ai-eval-title {
  font-family: var(--ff-bold);
  font-size: 20px;
  line-height: 1.4;
  color: var(--ct-heading);
}
.ai-eval-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ct-muted);
}
.pill-blue {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: #e3f0fd;
  border: 1px solid #a6d5fe;
  border-radius: 30px;
  color: var(--ct-blue);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.ai-eval-toggle {
  display: none;
  color: var(--ct-blue);
  font-family: var(--ff-bold);
}
@media (max-width: 767px) {
  .ai-eval-title {
    font-size: 18px;
  }
  .ai-eval-text {
    font-size: 14px;
    line-height: 1.6;
  }
  .ai-eval-items {
    display: none;
  }
  .ai-eval-items.expanded {
    display: block;
  }
  .ai-eval-toggle {
    display: inline-block;
  }
}

/* --- Audience cards --- */
.audience-card {
  height: 100%;
  background: var(--ct-blue);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}
.audience-card h3 {
  font-family: var(--ff-bold);
  font-size: 24px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
}
.audience-card p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}
.audience-card li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .audience-card {
    padding: 25px;
  }
  .audience-card p {
    font-size: 15px;
  }
  .audience-card li {
    font-size: 14px;
  }
}

/* --- Skills coverage --- */
.skills-coverage {
  background: #f6f3e8;
}
.eyebrow-skills {
  background: #d8e3fa;
  color: var(--ct-blue-2);
}
.skills-coverage h2 {
  font-family: var(--ff-xbold);
  font-size: 32px;
  color: #111c2c;
}
.skills-desc {
  font-size: 16px;
  color: #666;
  max-width: 720px;
  line-height: 1.6;
}
.skill-row {
  background: #fff;
  border-radius: 50px;
  padding: 16px 24px;
  box-shadow: 0 2px 6px rgba(17, 28, 44, 0.04);
}
.skill-name {
  font-family: var(--ff-bold);
  font-size: 16px;
  color: #111c2c;
}
.tag {
  font-family: var(--ff-semi);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  white-space: nowrap;
}
.tag-core {
  background: #001a4d;
  color: #fff;
}
.tag-high {
  background: #ffcc00;
  color: #111c2c;
}
.tag-medium {
  background: #d8e3fa;
  color: #5b6b8c;
}
.tag-faq {
  background: #fdfaf3;
  color: #666;
}
.btn-syllabus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 350px;
  height: 54px;
  background: #0078d4;
  color: #fff;
  border-radius: 8px;
  font-family: var(--ff-bold);
  transition: 0.3s ease;
}
.btn-syllabus:hover {
  background: #006bb8;
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .skills-coverage h2 {
    font-size: 26px;
  }
  .skill-name {
    font-size: 14.5px;
  }
  .btn-syllabus {
    min-width: 100%;
  }
}

/* --- Curriculum (Page-01 accordion variant) --- */
.curriculum-tag {
  background: #eef4fa;
  color: var(--ct-blue-2);
}
.curriculum-heading {
  font-family: var(--ff-bold);
  font-size: clamp(22px, 3.2vw, 34px);
  color: #1a1a1a;
  line-height: 1.25;
  max-width: 680px;
}
.curriculum-desc {
  font-size: 18px;
  color: #444;
  line-height: 1.65;
  max-width: 900px;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-semi);
  font-size: 13.5px;
  color: #fff;
  background: linear-gradient(to right, #d1b92a, #f05546);
  border: none;
  border-radius: 2px;
  padding: 11px 20px;
  white-space: nowrap;
}
.btn-download:hover {
  color: #fff;
  opacity: 0.94;
}
.btn-download svg {
  width: 15px;
  height: 15px;
}

.curriculum-accordion {
  border: 1px solid #d0dce8;
  border-radius: 0;
  overflow: hidden;
}
.curriculum-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #c8d8e8;
  background: transparent;
}
.curriculum-accordion .accordion-item:last-child {
  border-bottom: none;
}
.curriculum-accordion .accordion-button {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-radius: 0 !important;
  background: linear-gradient(to right, #22639c, #2580b3);
  box-shadow: none;
}
.curriculum-accordion .accordion-button::after {
  display: none;
}
.curriculum-accordion .accordion-button:focus {
  box-shadow: none;
  outline: 2px solid transparent;
}
.curriculum-accordion .cur-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-family: var(--ff-bold);
  font-size: 22px;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
  width: 54px;
}
.curriculum-accordion .accordion-button::before {
  content: none;
}
.curriculum-accordion .cur-icon .ic-plus {
  display: none;
}
.curriculum-accordion .accordion-button.collapsed .cur-icon .ic-plus {
  display: block;
}
.curriculum-accordion .accordion-button.collapsed .cur-icon .ic-minus {
  display: none;
}
.curriculum-accordion .cur-icon .ic-minus {
  display: block;
}
.curriculum-accordion .module-label {
  font-family: var(--ff-semi);
  font-size: 13px;
  color: #fff;
  background: #316ea3;
  padding: 14px 20px;
  min-width: 110px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.curriculum-accordion .module-title {
  font-family: var(--ff-semi);
  font-size: 14px;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
}
.curriculum-accordion .accordion-body {
  background: #fff;
  padding: 20px 24px 20px 32px;
  border-top: 2px solid #2580b3;
}
.curriculum-accordion .accordion-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.curriculum-accordion .accordion-body li {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  padding: 4px 0 4px 18px;
  position: relative;
}
.curriculum-accordion .accordion-body li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #f0a500;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}
@media (max-width: 640px) {
  .curriculum-accordion .module-label {
    min-width: 88px;
    font-size: 12px;
    padding: 12px;
  }
  .curriculum-accordion .module-title {
    font-size: 13px;
    padding: 12px 10px;
  }
  .curriculum-accordion .cur-icon {
    width: 44px;
    padding: 0 12px;
  }
  .btn-download {
    width: 100%;
    justify-content: center;
  }
}
