:root {
  --brand-900: #0b1f3a;
  --brand-700: #123e78;
  --brand-500: #1f6bc1;
  --accent-500: #00b3a4;
  --accent-100: #e6fbf8;
  --surface: #f4f7fb;
  --text-main: #1f2937;
  --text-soft: #5b6473;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
  background: var(--surface);
}

.site-header {
  background: linear-gradient(125deg, var(--brand-900), var(--brand-500));
  color: #fff;
  padding: 56px 0 42px;
}

.site-header h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 14px;
}

.site-header p {
  color: #d7e6ff;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
}

.navbar {
  background: #ffffff !important;
  box-shadow: 0 8px 30px rgba(11, 31, 58, 0.08);
}

.brand-text {
  color: var(--brand-700) !important;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 1px;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.navbar .nav-link {
  color: var(--text-main) !important;
  font-weight: 500;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--brand-500) !important;
}

.section-block {
  padding: 58px 0;
}

.section-title {
  font-size: 31px;
  font-weight: 700;
  color: var(--brand-900);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-soft);
  max-width: 760px;
  margin-bottom: 26px;
}

.info-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #dde8f8;
  padding: 24px;
  height: 100%;
  box-shadow: 0 12px 26px rgba(16, 43, 84, 0.06);
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--brand-700);
}

.info-card p,
.info-card li {
  color: var(--text-soft);
  line-height: 1.6;
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
}

.feature-card {
  position: relative;
  border: 1px solid #d5e2f5;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(16, 43, 84, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 56px;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: var(--brand-700);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(16, 43, 84, 0.12);
  border-color: #c3d5ee;
}

.feature-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  margin-bottom: 12px;
}

.feature-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eef3fb;
  color: var(--brand-700);
  font-size: 16px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f647f;
}

.feature-card--labs .feature-icon {
  background: #eef3fb;
  color: var(--brand-700);
}

.feature-card--mentor .feature-icon {
  background: #eef3fb;
  color: var(--brand-700);
}

.feature-card--path .feature-icon {
  background: #eef3fb;
  color: var(--brand-700);
}

.feature-card--labs::before {
  background: var(--brand-700);
}

.feature-card--mentor::before {
  background: var(--brand-700);
}

.feature-card--path::before {
  background: var(--brand-700);
}

.cta-strip {
  background: linear-gradient(130deg, #123e78, #1b4f95);
  color: #fff;
  border-radius: 14px;
  padding: 30px;
}

.btn-primary {
  background: var(--brand-500);
  border-color: var(--brand-500);
}

.btn-primary:hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
}

.btn-outline-light:hover {
  color: var(--brand-700);
}

.minimal-footer {
  background: #0e1a2f;
  color: #c5d1e7;
  padding: 22px 0;
  margin-top: 40px;
}

.minimal-footer a {
  color: #ffffff;
  text-decoration: none;
}

.badge-soft {
  display: inline-block;
  background: var(--accent-100);
  color: #0f7f75;
  font-size: 13px;
  border-radius: 20px;
  padding: 5px 12px;
  margin-bottom: 10px;
}

.course-box {
  position: relative;
  border-radius: 14px;
  border: 1px solid #d9e2ec;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
  padding: 1rem;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Interactive accordion view for courses page */
.course-accordion-item {
  background: #ffffff;
  border: 1px solid #d8e2ef;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

#courseOverviewGrid > .col-12:not(:first-child) .course-accordion-item {
  margin-top: 0.42rem;
}

.course-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  text-decoration: none;
  color: #0f172a;
  background: #f8fafc;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #e7eef7;
}

.course-accordion-left,
.course-accordion-right {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.course-accordion-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #123e78;
}

.course-accordion-count {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.course-accordion-preview-wrap {
  padding: 0.6rem 1rem 0.2rem;
}

.course-accordion-duration {
  padding-left: 2.05rem;
  margin-bottom: 0.35rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: #123e78;
}

.course-accordion-preview {
  margin: 0;
  padding-left: 2.05rem;
  font-size: 0.96rem;
  line-height: 1.75;
  color: #334155;
}

.course-accordion-preview li,
.course-box-detail-list li {
  margin-bottom: 0.4rem;
}

.course-accordion-more {
  margin-top: 0.35rem;
  margin-bottom: 0.15rem;
  padding-left: 2.05rem;
  font-size: 0.86rem;
  color: #0f766e;
  font-weight: 600;
}

.course-accordion-body {
  padding: 0.75rem 1rem 1rem 1rem;
  border-top: 1px dashed #dbe5f2;
}

.course-accordion-body .course-box-detail-heading,
.course-accordion-body .course-box-detail-list {
  margin-left: 2.05rem;
}

.course-accordion-item .course-box-chevron {
  color: #0f766e;
}

.blog-card {
  border: 1px solid #d8e3f2;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: #c5d6ec;
  box-shadow: 0 16px 28px rgba(16, 43, 84, 0.12);
}

.blog-title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.35;
}

.blog-title-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #d7e2ef;
  background: #eef3fb;
  color: #123e78;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.blog-featured {
  border: 1px solid #c7d7ee;
  background: linear-gradient(140deg, #ffffff 0%, #eef4ff 100%);
  box-shadow: 0 16px 30px rgba(16, 43, 84, 0.1);
}

.blog-featured-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}

.blog-featured-title {
  font-size: 1.45rem;
  line-height: 1.28;
  margin-bottom: 0.7rem;
}

.blog-featured p,
.blog-card p {
  font-size: 1.03rem;
  line-height: 1.75;
}

.blog-card .blog-title-row {
  font-size: 1.08rem !important;
}

.blog-meta {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid #c7d7ee;
  color: #123e78;
  background: #edf4ff;
}

.blog-badge-neutral {
  color: #4b5d75;
  background: #f7f9fc;
  border-color: #d8e3f2;
}

.blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.blog-filter-btn {
  border: 1px solid #c8d7ec;
  color: #325274;
  background: #f6f9ff;
  border-radius: 18px;
  padding: 5px 13px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-filter-btn.is-active,
.blog-filter-btn:hover {
  background: #123e78;
  color: #ffffff;
  border-color: #123e78;
}

.blog-hidden {
  display: none;
}

.course-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.11);
  border-color: #c7d3e0;
}

.course-box::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 52px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: #0f766e;
}

.course-box-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.course-box-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #334155;
  text-transform: uppercase;
}

.course-box-count {
  font-size: 0.72rem;
  color: #64748b;
}

.course-box-title {
  font-size: 1.04rem;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
  padding: 0.58rem 0.72rem;
  border-radius: 10px;
  border: 1px solid #d9e2ec;
  background: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.course-box-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.course-box-title-main {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  min-width: 0;
}

.course-box-logo {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #d7e2ef;
  background: #fff;
  flex-shrink: 0;
}

.course-box-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #d7e2ef;
  background: #f1f5f9;
  color: #123e78;
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
}

.course-box-icon-wrap {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.course-tech-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #d7e2ef;
  background: #ffffff;
  padding: 3px;
}

.course-box-icon-fallback {
  position: absolute;
  inset: 0;
}

.course-box-chevron {
  color: #0f766e;
  font-size: 0.72rem;
}

.course-box-preview {
  margin-top: 0.65rem;
  margin-bottom: 0.45rem;
  padding-left: 1.2rem;
  font-size: 0.87rem;
  color: #334155;
}

.course-box-more {
  font-size: 0.8rem;
  color: #0f766e;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.course-box-detail-heading {
  font-size: 0.98rem;
  color: #123e78;
}

.course-box-detail-list {
  margin-top: 0.6rem;
  padding-left: 1.2rem;
  font-size: 0.96rem;
  line-height: 1.75;
  color: #334155;
}

.course-box-toggle {
  min-width: 148px;
  border-color: #0f766e;
  color: #0f766e;
}

.course-box-toggle:hover {
  background: #0f766e;
  color: #ffffff;
  border-color: #0f766e;
}


.page-wrap .top-section-wrap,
.page-wrap .latest-announcement-warap,
.page-wrap footer:not(.minimal-footer) {
  display: none !important;
}

