:root {
  --simat-blue: #015aac;
  --simat-blue-dark: #08457f;
  --simat-navy: #0a3974;
  --simat-navy-deep: #082c59;
  --simat-gold: #f4b31a;
  --simat-gold-dark: #d99500;
  --simat-ink: #14233a;
  --simat-muted: #687384;
  --simat-light: #f3f4f6;
  --simat-line: #dde2e8;
  --simat-white: #fff;
  --simat-radius: 10px;
  --simat-shadow: 0 14px 38px rgba(10, 57, 116, .10);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  color: var(--simat-ink);
  background: var(--simat-white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

img {
  max-width: 100%;
}

a {
  color: var(--simat-blue);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

a:hover {
  color: var(--simat-navy);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--simat-navy);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.page-wrapper {
  min-height: 100vh;
}

.container {
  --bs-gutter-x: 32px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.section-space {
  padding: 78px 0;
}

.section-space-sm {
  padding: 48px 0;
}

.section-soft {
  background: var(--simat-light);
}

.section-warm {
  background: #fffaf0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: var(--simat-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--simat-gold);
  content: "";
}

.section-heading,
.section-intro {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.section-intro h2 {
  margin: 0;
  font-size: clamp(29px, 3vw, 42px);
}

.section-heading p,
.section-intro p {
  max-width: 640px;
  margin: 13px auto 0;
  color: var(--simat-muted);
  font-size: 16px;
}

.section-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--simat-blue);
  font-weight: 800;
}

.section-intro--light h2,
.section-intro--light p {
  color: var(--simat-navy);
}

.section-intro--light .eyebrow {
  color: var(--simat-gold-dark);
}

.btn {
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none !important;
}

.btn-lg {
  min-height: 50px;
  padding: 12px 24px;
  font-size: 15px;
}

.btn-primary {
  --bs-btn-bg: var(--simat-blue);
  --bs-btn-border-color: var(--simat-blue);
  --bs-btn-hover-bg: var(--simat-navy);
  --bs-btn-hover-border-color: var(--simat-navy);
  --bs-btn-active-bg: var(--simat-navy-deep);
  --bs-btn-active-border-color: var(--simat-navy-deep);
}

.btn-warning {
  --bs-btn-bg: var(--simat-gold);
  --bs-btn-border-color: var(--simat-gold);
  --bs-btn-color: var(--simat-navy-deep);
  --bs-btn-hover-bg: #ffca43;
  --bs-btn-hover-border-color: #ffca43;
  --bs-btn-hover-color: var(--simat-navy-deep);
}

.btn-outline-primary {
  --bs-btn-color: var(--simat-blue);
  --bs-btn-border-color: var(--simat-blue);
  --bs-btn-hover-bg: var(--simat-blue);
  --bs-btn-hover-border-color: var(--simat-blue);
}

.form-label {
  margin-bottom: 6px;
  color: var(--simat-ink);
  font-size: 13px;
  font-weight: 750;
}

.form-control,
.form-select {
  min-height: 48px;
  border: 1px solid #d7dce3;
  border-radius: 6px;
  color: var(--simat-ink);
  background-color: #fff;
  font-size: 14px;
}

textarea.form-control {
  min-height: 112px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--simat-blue);
  box-shadow: 0 0 0 3px rgba(1, 90, 172, .12);
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--simat-line);
  border-radius: 6px;
  background: var(--simat-light);
}

.captcha-box strong {
  flex: 0 0 auto;
  color: var(--simat-navy);
}

.captcha-box .form-control {
  min-width: 0;
  min-height: 40px;
}

/* Header */
.site-header {
  z-index: 1040;
  background: transparent;
}

.site-header__top {
  color: #fff;
  background: var(--simat-navy);
  font-size: 12px;
}

.site-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.site-header__mini-nav,
.site-header__contact {
  display: flex;
  align-items: center;
}

.site-header__mini-nav a,
.site-header__contact a {
  color: rgba(255, 255, 255, .88);
}

.site-header__mini-nav a {
  padding: 7px 12px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.site-header__mini-nav a:last-child {
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.site-header__mini-nav a:hover,
.site-header__contact a:hover {
  color: var(--simat-gold);
}

.site-header__contact {
  gap: 22px;
}

.site-header__contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-header__contact i {
  color: var(--simat-gold);
}

.site-navbar {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid rgba(10, 57, 116, .08);
  transition: box-shadow .2s ease;
}

.site-header.is-stuck .site-navbar {
  box-shadow: 0 8px 26px rgba(8, 44, 89, .13);
}

.site-navbar__shell {
  display: flex;
  align-items: stretch;
  min-height: 82px;
  background: #fff;
}

.site-brand {
  display: flex;
  flex: 0 0 210px;
  align-items: center;
  padding-right: 22px;
}

.site-brand img {
  width: auto;
  max-width: 190px;
  height: 58px;
  object-fit: contain;
}

.programs-dropdown {
  position: static;
  flex: 0 0 132px;
}

.programs-dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: 0;
  color: #fff;
  background: var(--simat-blue);
  font-size: 14px;
  font-weight: 800;
}

.programs-dropdown__toggle:hover,
.programs-dropdown__toggle[aria-expanded="true"] {
  background: var(--simat-navy);
}

.programs-dropdown__menu {
  left: 50% !important;
  width: min(960px, calc(100vw - 40px));
  max-height: 70vh;
  margin: 0 !important;
  padding: 24px;
  overflow-y: auto;
  border: 0;
  border-top: 4px solid var(--simat-gold);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--simat-shadow);
  transform: translateX(-50%) !important;
}

.programs-dropdown__menu.show {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.programs-dropdown__group {
  min-width: 0;
}

.programs-dropdown__heading {
  display: block;
  margin-bottom: 6px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--simat-line);
  color: var(--simat-navy);
  font-size: 14px;
  font-weight: 850;
}

.programs-dropdown__group .dropdown-item {
  padding: 6px 0;
  overflow: hidden;
  color: var(--simat-muted);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.programs-dropdown__group .dropdown-item:hover {
  color: var(--simat-blue);
  background: transparent;
}

.header-course-search {
  display: flex;
  flex: 1 1 250px;
  align-items: center;
  min-width: 150px;
  margin: 15px 14px;
  border: 1px solid var(--simat-line);
  border-radius: 5px;
  background: #f7f8fa;
}

.header-course-search input {
  min-width: 0;
  height: 48px;
  padding: 0 10px 0 17px;
  border: 0;
  outline: 0;
  color: var(--simat-ink);
  background: transparent;
  font-size: 13px;
}

.header-course-search button {
  width: 48px;
  height: 48px;
  border: 0;
  color: var(--simat-blue);
  background: transparent;
}

.header-callback {
  align-items: center;
  align-self: center;
  gap: 8px;
  min-height: 52px;
  margin-right: 0;
  border: 0;
  border-radius: 0;
  color: var(--simat-navy-deep);
  background: var(--simat-gold);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  color: #fff;
  background: var(--simat-blue);
  font-size: 13px;
  font-weight: 850;
}

.header-phone:hover {
  color: #fff;
  background: var(--simat-navy);
}

.navbar-toggler {
  align-self: center;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--simat-line);
  border-radius: 6px;
}

.mobile-menu {
  width: min(390px, 94vw) !important;
  border-left: 0;
}

.mobile-menu .offcanvas-header {
  border-bottom: 1px solid var(--simat-line);
}

.mobile-menu__brand img {
  width: auto;
  height: 52px;
}

.mobile-course-search {
  display: flex;
  margin-bottom: 14px;
  border: 1px solid var(--simat-line);
  border-radius: 6px;
  background: var(--simat-light);
}

.mobile-course-search input {
  min-width: 0;
  flex: 1;
  height: 48px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
}

.mobile-course-search button {
  width: 48px;
  border: 0;
  color: #fff;
  background: var(--simat-blue);
}

.mobile-menu .nav-link,
.mobile-menu .accordion-button {
  padding: 14px 4px;
  color: var(--simat-navy);
  background: #fff;
  border-bottom: 1px solid var(--simat-line);
  font-weight: 800;
  box-shadow: none;
}

.mobile-menu .accordion-button:not(.collapsed) {
  color: var(--simat-blue);
}

.mobile-menu .accordion-body {
  padding: 7px 12px 12px;
  background: var(--simat-light);
}

.mobile-menu .submenu-link {
  display: block;
  padding: 8px 0;
  color: var(--simat-muted);
  font-size: 13px;
}

/* Home hero */
.home-hero {
  padding: 22px 0 0;
  background: #fff;
}

.hero-carousel {
  overflow: hidden;
  border-radius: var(--simat-radius) var(--simat-radius) 0 0;
  background: var(--simat-navy);
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 475px;
  overflow: hidden;
}

.hero-slide::after {
  position: absolute;
  z-index: 2;
  top: -60px;
  right: -85px;
  width: 270px;
  height: 590px;
  background: rgba(244, 179, 26, .92);
  content: "";
  transform: skewX(-13deg);
}

.hero-slide__media,
.hero-slide__media img,
.hero-slide__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide__media img {
  object-fit: cover;
  object-position: center;
}

.hero-slide__veil {
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 44, 89, .98) 0%, rgba(10, 57, 116, .93) 42%, rgba(1, 90, 172, .46) 68%, rgba(1, 90, 172, .08) 100%);
}

.hero-slide--plain {
  background: linear-gradient(120deg, var(--simat-navy-deep), var(--simat-blue));
}

.hero-slide__content {
  position: relative;
  z-index: 3;
  width: min(610px, 58%);
  padding: 60px 58px;
  color: #fff;
}

.hero-slide__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--simat-gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-slide__kicker::before {
  width: 32px;
  height: 2px;
  background: var(--simat-gold);
  content: "";
}

.hero-slide h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.04;
}

.hero-slide__lead {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 650;
  line-height: 1.45;
}

.hero-slide__description {
  display: -webkit-box;
  max-width: 560px;
  margin: 12px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .8);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.hero-carousel .carousel-indicators {
  z-index: 4;
  justify-content: flex-start;
  margin-right: 0;
  margin-bottom: 21px;
  margin-left: 58px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 26px;
  height: 4px;
  margin: 0 4px 0 0;
  border: 0;
  opacity: .45;
}

.hero-carousel .carousel-indicators .active {
  background: var(--simat-gold);
  opacity: 1;
}

.metrics-panel__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--simat-line);
  border-top: 0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 57, 116, .06);
}

.metric-item {
  display: grid;
  grid-template-columns: 42px auto;
  grid-template-rows: auto auto;
  column-gap: 13px;
  align-items: center;
  padding: 24px 28px;
  border-right: 1px solid var(--simat-line);
}

.metric-item:last-child {
  border-right: 0;
}

.metric-item > i {
  grid-row: 1 / 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--simat-blue);
  background: #e8f2fb;
  border-radius: 50%;
  font-size: 17px;
}

.metric-item strong {
  color: var(--simat-navy);
  font-size: 24px;
  line-height: 1.1;
}

.metric-item span {
  color: var(--simat-muted);
  font-size: 12px;
  font-weight: 700;
}

/* Recognition */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
}

.recognition-card {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--simat-line);
  border-radius: 7px;
  background: #fff;
  text-align: center;
}

.recognition-card img {
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
}

.recognition-card h3 {
  margin: 10px 0 0;
  font-size: 12px;
}

/* Cards and paths */
.course-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d9dee5;
  border-radius: 8px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.course-card:hover {
  border-color: rgba(1, 90, 172, .35);
  box-shadow: var(--simat-shadow);
  transform: translateY(-5px);
}

.course-card__media {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #e8ebef;
}

.course-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.course-card:hover .course-card__media img {
  transform: scale(1.04);
}

.course-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 10px;
  overflow: hidden;
  border-radius: 4px;
  color: #fff;
  background: var(--simat-navy);
  font-size: 10px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.course-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.course-card__body h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.3;
}

.course-card__body p {
  display: -webkit-box;
  margin: 0 0 18px;
  overflow: hidden;
  color: var(--simat-muted);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--simat-blue);
  font-size: 13px;
  font-weight: 850;
}

.course-card__link {
  margin-top: auto;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.path-card {
  display: grid;
  grid-template-columns: 52px 1fr 34px;
  align-items: center;
  gap: 15px;
  min-height: 92px;
  padding: 17px 20px;
  border: 1px solid var(--simat-line);
  border-left: 4px solid var(--simat-blue);
  border-radius: 7px;
  background: #fff;
}

.path-card:hover {
  border-left-color: var(--simat-gold);
  box-shadow: var(--simat-shadow);
  transform: translateY(-3px);
}

.path-card__index {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--simat-blue);
  background: #e8f2fb;
  font-weight: 850;
}

.path-card strong,
.path-card small {
  display: block;
}

.path-card strong {
  color: var(--simat-navy);
  font-size: 16px;
}

.path-card small {
  margin-top: 3px;
  color: var(--simat-muted);
}

.path-card > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--simat-blue);
}

/* About, people and gallery */
.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--simat-line);
  border-radius: var(--simat-radius);
  background: #fff;
}

.about-panel__content {
  padding: 42px;
}

.about-media {
  min-height: 390px;
  background: var(--simat-navy);
}

.about-media__video,
.about-media__image {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  object-fit: cover;
}

.profile-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--simat-line);
  border-radius: 8px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.profile-card:hover {
  box-shadow: var(--simat-shadow);
  transform: translateY(-4px);
}

.profile-card__image {
  height: 255px;
  overflow: hidden;
  background: #e8ebef;
}

.profile-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card__body {
  padding: 18px;
}

.profile-card__body h3 {
  margin: 0 0 3px;
  font-size: 17px;
}

.profile-card__role,
.placement-card__location {
  display: block;
  color: var(--simat-blue);
  font-size: 12px;
  font-weight: 750;
}

.profile-card__body p {
  margin: 9px 0 0;
  color: var(--simat-muted);
  font-size: 12px;
}

.placement-card .profile-card__image {
  height: 230px;
}

.placement-card__location i {
  margin-right: 6px;
}

.gallery-mosaic {
  display: grid;
  grid-auto-rows: 175px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: #dde2e8;
}

.gallery-mosaic .gallery-card {
  min-height: 0;
}

.gallery-mosaic .gallery-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-mosaic .gallery-card:nth-child(2) {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(8, 44, 89, .5);
  content: "\f00e";
  font-family: FontAwesome;
  font-size: 25px;
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.video-card {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  border-radius: 8px;
  background: #000;
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Testimonials */
.testimonials-section {
  background: #fff;
}

.testimonial-card {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--simat-line);
  border-top: 4px solid var(--simat-gold);
  border-radius: 8px;
  background: var(--simat-light);
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testimonial-card__avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  object-fit: cover;
  background: #dce7f2;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 16px;
}

.testimonial-card__role {
  color: var(--simat-muted);
  font-size: 12px;
}

.testimonial-card__rating {
  margin: 17px 0 9px;
  color: var(--simat-gold-dark);
  font-size: 13px;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--simat-muted);
  font-size: 14px;
}

/* Page hero */
.page-hero {
  padding: 25px 0 38px;
  background: #fff;
}

.page-hero__nav {
  margin-bottom: 13px;
}

.page-hero__breadcrumb,
.course-overview__breadcrumb .breadcrumb {
  margin: 0;
  font-size: 12px;
}

.page-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.course-overview__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #8a94a3;
}

.page-hero__frame {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--simat-radius);
  background: var(--simat-navy);
}

.page-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(130deg, var(--simat-navy-deep), var(--simat-blue));
}

.page-hero__copy .eyebrow {
  color: var(--simat-gold);
}

.page-hero__copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
}

.page-hero__copy p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .78);
}

.page-hero__image {
  position: relative;
  min-height: 250px;
}

.page-hero__image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 57, 116, .35), transparent 55%);
  content: "";
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.page-hero__frame--plain {
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
}

.page-hero__pattern {
  position: relative;
  overflow: hidden;
  background: var(--simat-gold);
}

.page-hero__pattern span {
  position: absolute;
  display: block;
  width: 130px;
  height: 130px;
  border: 22px solid rgba(255, 255, 255, .23);
  border-radius: 50%;
}

.page-hero__pattern span:nth-child(1) { top: -25px; left: 30px; }
.page-hero__pattern span:nth-child(2) { right: 40px; bottom: -45px; width: 180px; height: 180px; }
.page-hero__pattern span:nth-child(3) { top: 70px; right: -35px; width: 90px; height: 90px; }

/* Courses listing */
.filter-bar {
  display: grid;
  grid-template-columns: 235px 1fr;
  align-items: center;
  margin-bottom: 50px;
  padding: 16px;
  border: 1px solid var(--simat-line);
  border-radius: 8px;
  background: var(--simat-light);
}

.filter-bar__label {
  padding: 0 18px;
}

.filter-bar__label span,
.filter-bar__label strong {
  display: block;
}

.filter-bar__label span {
  color: var(--simat-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.filter-bar__label strong {
  color: var(--simat-navy);
  font-size: 17px;
}

.filter-bar__control {
  min-height: 54px;
  border: 1px solid var(--simat-line);
  border-radius: 6px;
  background: #fff;
}

.filter-bar__control .form-control {
  border: 0;
  box-shadow: none;
}

.course-group + .course-group {
  margin-top: 58px;
  padding-top: 50px;
  border-top: 1px solid var(--simat-line);
}

.course-group__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.course-group__head h2 {
  margin: 0;
  font-size: 27px;
}

/* Course detail */
.course-overview {
  padding: 22px 0 55px;
}

.course-overview__breadcrumb {
  margin-bottom: 15px;
}

.course-overview__banner {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(120deg, var(--simat-navy), var(--simat-blue));
}

.course-overview__banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-overview__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 44, 89, .96), rgba(8, 44, 89, .08) 78%);
}

.course-overview__banner::after {
  position: absolute;
  top: -55px;
  right: -65px;
  width: 175px;
  height: 470px;
  background: rgba(244, 179, 26, .88);
  content: "";
  transform: skewX(-12deg);
}

.course-overview__title {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 35px;
}

.course-overview__title .eyebrow {
  color: var(--simat-gold);
}

.course-overview__title h1 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
}

.course-summary {
  padding: 28px 32px;
  border: 1px solid var(--simat-line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
}

.course-summary h2 {
  margin: 0 0 10px;
  font-size: 23px;
}

.course-summary p {
  color: var(--simat-muted);
}

.course-enquiry-card,
.course-aside__card {
  padding: 27px;
  border: 1px solid var(--simat-line);
  border-top: 5px solid var(--simat-gold);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(10, 57, 116, .08);
}

.course-enquiry-card h2,
.course-aside__card h2 {
  margin: 0 0 22px;
  font-size: 24px;
}

.course-detail {
  background: #fff;
}

.course-detail__content {
  display: grid;
  gap: 24px;
}

.content-copy {
  padding: 34px;
  overflow-wrap: anywhere;
  border: 1px solid var(--simat-line);
  border-radius: 8px;
  background: #fff;
  color: #435066;
}

.content-copy--lead {
  padding: 0;
  border: 0;
}

.content-copy h1,
.content-copy h2,
.content-copy h3,
.content-copy h4 {
  margin-top: 1.35em;
  margin-bottom: .55em;
}

.content-copy > h1:first-child,
.content-copy > h2:first-child,
.content-copy > h3:first-child,
.content-copy .eyebrow + h2 {
  margin-top: 0;
}

.content-copy h2 {
  font-size: clamp(25px, 3vw, 34px);
}

.content-copy h3 {
  font-size: 22px;
}

.content-copy img {
  height: auto !important;
  max-width: 100% !important;
}

.content-copy ul,
.content-copy ol {
  padding-left: 21px;
}

.content-copy li {
  margin-bottom: 7px;
}

.content-copy table {
  display: block;
  width: 100% !important;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.content-copy td,
.content-copy th {
  padding: 9px 11px;
  border: 1px solid var(--simat-line);
}

.course-aside {
  position: sticky;
  top: 145px;
}

.course-aside__list {
  max-height: 430px;
  margin: 0 0 20px;
  padding: 0;
  overflow-y: auto;
  list-style: none;
}

.course-aside__list li + li {
  border-top: 1px solid var(--simat-line);
}

.course-aside__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 2px;
  color: var(--simat-ink);
  font-size: 13px;
  font-weight: 700;
}

.course-aside__list a:hover {
  color: var(--simat-blue);
}

.document-frame {
  width: 100%;
  min-height: 680px;
  border: 1px solid var(--simat-line);
  border-radius: 8px;
}

.content-page {
  background: var(--simat-light);
}

/* Contact */
.contact-enquiry {
  background: #fff;
}

.contact-form-panel {
  padding: 34px;
  border: 1px solid var(--simat-line);
  border-radius: var(--simat-radius);
  background: var(--simat-light);
}

.training-centres .section-heading {
  margin-bottom: 32px;
}

.location-stack {
  display: grid;
  gap: 24px;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  overflow: hidden;
  border: 1px solid var(--simat-line);
  border-radius: var(--simat-radius);
  background: #fff;
}

.location-card__info {
  position: relative;
  padding: 38px;
}

.location-card__number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: #e6edf5;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.location-card h3 {
  max-width: calc(100% - 45px);
  margin: 0 0 25px;
  font-size: 27px;
}

.location-card__detail {
  display: flex;
  gap: 13px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--simat-line);
}

.location-card__detail > i {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--simat-blue);
}

.location-card__detail strong {
  display: block;
  color: var(--simat-navy);
  font-size: 13px;
}

.location-card__detail p {
  margin: 3px 0 0;
  color: var(--simat-muted);
  font-size: 13px;
}

.location-card__links {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
}

.location-card__links a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--simat-ink);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.location-card__links a > i {
  width: 28px;
  color: var(--simat-blue);
  font-size: 18px;
  text-align: center;
}

.location-card__links small {
  display: block;
  color: var(--simat-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-card__map {
  min-height: 470px;
  background: #dfe5eb;
}

.location-card__map iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}

.map-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 360px;
  place-items: center;
  padding: 30px;
  color: var(--simat-muted);
  text-align: center;
}

.map-placeholder i {
  display: block;
  margin-bottom: 10px;
  color: var(--simat-blue);
  font-size: 30px;
}

/* CTA and footer */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 55px 0;
  color: #fff;
  background: linear-gradient(115deg, var(--simat-navy-deep), var(--simat-blue));
}

.cta-band::after {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 310px;
  height: 390px;
  background: var(--simat-gold);
  content: "";
  opacity: .94;
  transform: skewX(-13deg);
}

.cta-band .container {
  z-index: 2;
}

.cta-band .eyebrow {
  color: var(--simat-gold);
}

.cta-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 42px);
}

.cta-band p {
  max-width: 760px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .78);
}

.site-footer {
  color: #5c6878;
  background: var(--simat-navy-deep);
}

.site-footer__main {
  padding: 68px 0 0;
  background: linear-gradient(90deg, var(--simat-navy) 0 72%, var(--simat-gold) 72% 100%);
}

.site-footer__main > .container {
  padding: 50px;
  border-top: 5px solid var(--simat-gold);
  background: #f1f3f5;
  box-shadow: 0 18px 42px rgba(8, 44, 89, .2);
}

.site-footer__brand {
  width: auto;
  height: 62px;
  margin-bottom: 18px;
}

.site-footer p {
  font-size: 13px;
}

.site-footer h2 {
  margin: 0 0 18px;
  font-size: 17px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer ul:not(.footer-social) li + li {
  margin-top: 8px;
}

.site-footer a {
  color: #556274;
  font-size: 13px;
}

.site-footer a:hover {
  color: var(--simat-blue);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px !important;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--simat-blue);
}

.site-footer__contact {
  display: grid;
  gap: 13px;
}

.site-footer__contact > a,
.site-footer__contact > span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  overflow-wrap: anywhere;
}

.site-footer__contact i {
  width: 18px;
  margin-top: 4px;
  color: var(--simat-blue);
  text-align: center;
}

.site-footer__bottom {
  padding: 23px 0;
  color: rgba(255, 255, 255, .7);
  background: var(--simat-navy-deep);
  font-size: 12px;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, .8);
}

.certificate-pill {
  position: fixed;
  z-index: 1025;
  bottom: 18px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--simat-line);
  border-radius: 23px;
  color: var(--simat-navy);
  background: #fff;
  box-shadow: 0 10px 25px rgba(8, 44, 89, .16);
  font-size: 12px;
  font-weight: 800;
}

.certificate-pill i {
  color: var(--simat-gold-dark);
}

.floating-actions {
  position: fixed;
  z-index: 1025;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
}

.floating-action {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--simat-navy);
  box-shadow: 0 9px 22px rgba(8, 44, 89, .23);
}

.floating-action:hover {
  color: #fff;
  transform: translateY(-2px);
}

.floating-action--whatsapp {
  background: #1daf5d;
}

.back-to-top {
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

/* Shared states */
.modal-content {
  border: 0;
  border-top: 5px solid var(--simat-gold);
  border-radius: 9px;
  box-shadow: var(--simat-shadow);
}

.modal-header,
.modal-body {
  padding: 22px 24px;
}

.modal-header {
  border-bottom: 1px solid var(--simat-line);
}

.gallery-modal .modal-content {
  border-top: 0;
  box-shadow: none;
}

.empty-state {
  padding: 45px;
  border: 1px dashed #c9d2dd;
  border-radius: 8px;
  color: var(--simat-muted);
  background: var(--simat-light);
  text-align: center;
}

.place-items-center {
  place-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .14s; }
.reveal-delay-3 { transition-delay: .2s; }

@media (max-width: 1199.98px) {
  .site-brand {
    flex-basis: 205px;
  }

  .header-phone,
  .header-callback {
    display: none !important;
  }

  .header-course-search {
    margin-left: auto;
  }

  .navbar-toggler {
    margin-left: 0;
  }

  .recognition-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-slide__content {
    width: 65%;
  }

  .cta-band::after {
    right: -160px;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 85px;
  }

  .site-header__top {
    display: none;
  }

  .site-navbar__shell {
    min-height: 72px;
  }

  .site-brand {
    flex-basis: auto;
    padding-right: 12px;
  }

  .site-brand img {
    height: 52px;
  }

  .hero-slide {
    min-height: 440px;
  }

  .hero-slide__content {
    width: 72%;
    padding: 46px 40px;
  }

  .hero-slide::after {
    right: -140px;
  }

  .metrics-panel__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-item:nth-child(2) {
    border-right: 0;
  }

  .metric-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--simat-line);
  }

  .recognition-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 330px;
  }

  .about-media__video,
  .about-media__image {
    min-height: 330px;
  }

  .profile-card__image,
  .placement-card .profile-card__image {
    height: 220px;
  }

  .course-aside {
    position: static;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-card__map,
  .location-card__map iframe {
    min-height: 360px;
  }

  .site-footer__main > .container {
    max-width: calc(100% - 32px);
    padding: 40px;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }

  .container {
    --bs-gutter-x: 24px;
  }

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

  .section-space-sm {
    padding: 42px 0;
  }

  .section-heading,
  .section-intro {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .section-intro h2 {
    font-size: 29px;
  }

  .section-heading p,
  .section-intro p {
    font-size: 14px;
  }

  .home-hero {
    padding-top: 12px;
  }

  .hero-slide {
    min-height: 500px;
  }

  .hero-slide__veil {
    background: linear-gradient(90deg, rgba(8, 44, 89, .97), rgba(10, 57, 116, .82));
  }

  .hero-slide::after {
    top: auto;
    right: -100px;
    bottom: -100px;
    width: 220px;
    height: 230px;
  }

  .hero-slide__content {
    width: 100%;
    padding: 42px 24px 68px;
  }

  .hero-slide h1 {
    font-size: 38px;
  }

  .hero-slide__lead {
    font-size: 17px;
  }

  .hero-slide__description {
    -webkit-line-clamp: 3;
  }

  .hero-slide__actions .btn {
    width: 100%;
  }

  .hero-carousel .carousel-indicators {
    margin-left: 24px;
  }

  .metric-item {
    grid-template-columns: 35px auto;
    column-gap: 10px;
    padding: 17px 14px;
  }

  .metric-item > i {
    width: 35px;
    height: 35px;
  }

  .metric-item strong {
    font-size: 20px;
  }

  .recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-card__media {
    height: 165px;
  }

  .course-card__body {
    padding: 16px;
  }

  .course-card__body h3 {
    font-size: 16px;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .about-panel__content {
    padding: 27px;
  }

  .gallery-mosaic {
    grid-auto-rows: 150px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-mosaic .gallery-card:first-child {
    grid-column: span 2;
  }

  .gallery-mosaic .gallery-card:nth-child(2) {
    grid-column: span 1;
  }

  .profile-card__image,
  .placement-card .profile-card__image {
    height: 190px;
  }

  .profile-card__body {
    padding: 14px;
  }

  .profile-card__body h3 {
    font-size: 15px;
  }

  .profile-card__body p {
    display: none;
  }

  .page-hero {
    padding: 16px 0 28px;
  }

  .page-hero__frame,
  .page-hero__frame--plain {
    grid-template-columns: 1fr;
  }

  .page-hero__copy {
    min-height: 190px;
    padding: 30px 24px;
  }

  .page-hero__copy h1 {
    font-size: 36px;
  }

  .page-hero__image,
  .page-hero__image img,
  .page-hero__pattern {
    min-height: 160px;
  }

  .filter-bar {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-bottom: 36px;
  }

  .filter-bar__label {
    padding: 0;
  }

  .course-group__head {
    align-items: start;
  }

  .course-overview {
    padding-top: 14px;
  }

  .course-overview__banner {
    min-height: 300px;
  }

  .course-overview__title {
    padding: 25px;
  }

  .course-overview__title h1 {
    font-size: 31px;
  }

  .course-summary,
  .course-enquiry-card,
  .course-aside__card,
  .content-copy,
  .contact-form-panel,
  .location-card__info {
    padding: 24px;
  }

  .content-copy {
    font-size: 14px;
  }

  .location-card h3 {
    font-size: 24px;
  }

  .cta-band {
    padding: 48px 0;
  }

  .cta-band::after {
    display: none;
  }

  .site-footer__main {
    padding-top: 38px;
    background: var(--simat-navy);
  }

  .site-footer__main > .container {
    padding: 30px 24px;
  }

  .certificate-pill {
    bottom: 12px;
    left: 10px;
    padding: 8px 12px;
  }

  .floating-actions {
    right: 10px;
    bottom: 12px;
  }

  .floating-action {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 420px) {
  .site-brand img {
    max-width: 168px;
    height: 48px;
  }

  .hero-slide h1 {
    font-size: 34px;
  }

  .metric-item span {
    font-size: 11px;
  }

  .profile-card__image,
  .placement-card .profile-card__image {
    height: 165px;
  }

  .recognition-card {
    min-height: 105px;
    padding: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
