:root {
  --sttar-blue: #162F53;
  --sttar-orange: #ED5525;
  --sttar-cream: #F7E6CA;
  --sttar-bg: #F6F5F5;
  --sttar-gray: #EBE8E8;
  --bs-body-font-family: "Montserrat", sans-serif;
  --bs-body-bg: var(--sttar-bg);
}

body {
  font-family: var(--bs-body-font-family);
  color: #333;
}

.text-sttar-blue { color: var(--sttar-blue) !important; }
.text-sttar-orange { color: var(--sttar-orange) !important; }
.bg-sttar-blue { background-color: var(--sttar-blue) !important; }
.bg-sttar-orange { background-color: var(--sttar-orange) !important; }
.bg-sttar-gray { background-color: var(--sttar-gray) !important; }

.btn-sttar-primary {
  background-color: var(--sttar-orange);
  border-color: var(--sttar-orange);
  color: #fff;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
}

.btn-sttar-primary:hover,
.btn-sttar-primary:focus {
  background-color: #d94a1f;
  border-color: #d94a1f;
  color: #fff;
}

.btn-sttar-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 10px;
  padding: 12px 28px;
}

.btn-sttar-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-sttar-outline-dark {
  background: transparent;
  border: 1px solid var(--sttar-blue);
  color: var(--sttar-blue);
  border-radius: 10px;
}

.btn-sttar-outline-white {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 10px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.4375rem);
  font-weight: 400;
  line-height: 1.2;
}

.sttar-navbar {
  background-color: var(--sttar-blue);
  min-height: 76px;
}

.sttar-navbar .navbar-brand svg {
  width: 120px;
  height: auto;
}

.sttar-navbar .navbar-text {
  color: #fff;
  font-size: 0.95rem;
}

.sttar-navbar .menu-btn {
  background: none;
  border: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.sttar-navbar .menu-icon {
  width: 16px;
  height: 19px;
}

.hero {
  position: relative;
  min-height: 810px;
  margin-top: 76px;
  background: var(--sttar-blue);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--sttar-blue);
  opacity: 0.89;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-subtitle {
  color: var(--sttar-orange);
  font-size: 22px;
  margin-bottom: 1rem;
}

.hero-heading {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 673px;
  margin-bottom: 2.5rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  color: var(--sttar-orange);
  line-height: 1;
}

.stat-label {
  font-size: 1.375rem;
}

.about-label {
  color: var(--sttar-orange);
  font-size: 1.5rem;
  font-weight: 500;
}

.about-heading {
  color: var(--sttar-blue);
  font-size: clamp(1.75rem, 3vw, 2.4375rem);
}

.heading-underline {
  width: 100px;
  height: 2px;
  background: var(--sttar-blue);
}

.about-description {
  font-size: 18px;
  line-height: 1.79;
}

.about-image img {
  width: 100%;
  height: 325px;
  object-fit: cover;
  border-radius: 26px;
}

.programme-card {
  background: var(--sttar-gray);
}

.programme-image {
  height: 189px;
  overflow: hidden;
}

.programme-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programme-title {
  color: var(--sttar-orange);
  font-size: 1.25rem;
}

.programme-list {
  font-size: 15px;
  color: var(--sttar-blue);
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.programme-list li {
  position: relative;
  padding: 6px 0 6px 18px;
}

.programme-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--sttar-blue);
  font-weight: 700;
}

.educator-card {
  border-radius: 21px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.educator-image {
  height: 284px;
  overflow: hidden;
}

.educator-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.educator-name {
  font-weight: 600;
  color: var(--sttar-blue);
}

.educator-role {
  font-size: 13px;
  color: #555;
}

.mentor-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 287px;
}

.mentor-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(22, 47, 83, 0.85);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.mentor-name {
  font-weight: 600;
  width: 100%;
  font-size: 14px;
  margin-bottom: 0;
}

.mentor-role {
  font-size: 12px;
  opacity: 0.8;
  flex: 1;
  margin-bottom: 0;
}

.play-btn {
  background: var(--sttar-orange);
  border: none;
  color: #fff;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partners-title {
  font-size: 1.375rem;
  color: var(--sttar-blue);
}

.partners-logos img,
.schools-logos img {
  max-height: 85px;
}

.cta-logo img {
  width: 101px;
  height: 101px;
  border-radius: 50%;
}

.footer {
  background: var(--sttar-blue);
  color: #fff;
  padding: 42px 0 28px;
}

.footer-wrap {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-description {
  max-width: 1002px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  line-height: 19px;
  color: #fff;
}

.footer-divider {
  height: 1px;
  background: rgba(246, 245, 245, 0.25);
  width: 100%;
}

.footer-divider-top {
  margin-bottom: 32px;
}

.footer-divider-bottom {
  margin: 32px 0 24px;
}

.footer-columns {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.footer-col {
  flex: 0 0 272px;
  width: 272px;
  padding-top: 8px;
}

.footer-col-divider {
  flex: 1 1 auto;
  min-width: 12px;
  position: relative;
}

.footer-col-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 238px;
  background: rgba(246, 245, 245, 0.25);
}

.footer-col-icon {
  position: relative;
  width: 45px;
  height: 45px;
  margin-bottom: 12px;
}

.footer-col-icon-bg {
  width: 45px;
  height: 45px;
  display: block;
}

.footer-col-icon-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

.footer-col-icon-img--link {
  width: 22px;
  height: 22px;
}

.footer-col-icon-img--programmes {
  width: 25px;
  height: 20px;
}

.footer-col-icon-img--support {
  width: 21px;
  height: 21px;
}

.footer-col-icon-img--newsletter {
  width: 22px;
  height: 15px;
}

.footer-col-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 41px;
  margin: 0 0 4px;
  color: #fff;
}

.footer-title-line {
  width: 114px;
  height: 2px;
  background: var(--sttar-orange);
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 41px;
  font-size: 17px;
  line-height: 41px;
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 0.85;
  color: #fff;
}

.footer-link-arrow {
  width: 12px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.footer-newsletter-text {
  font-size: 17px;
  line-height: 22px;
  margin: 0 0 16px;
  color: #fff;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-email-input {
  width: 100%;
  max-width: 202px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid #f6f5f5;
  border-radius: 10px;
  background: transparent;
  color: #f6f5f5;
  font-size: 17px;
  line-height: 41px;
}

.footer-email-input::placeholder {
  color: rgba(246, 245, 245, 0.55);
}

.footer-submit-btn {
  width: 100%;
  max-width: 201px;
  height: 50px;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: var(--sttar-blue);
  font-size: 18px;
  line-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  cursor: pointer;
}

.footer-submit-arrow {
  width: 20px;
  height: 8px;
  display: block;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  line-height: 19px;
  color: #fff;
}

@media (max-width: 1199.98px) {
  .footer-columns {
    flex-wrap: wrap;
    gap: 32px 24px;
  }

  .footer-col {
    flex: 1 1 calc(50% - 24px);
    width: auto;
    min-width: 240px;
  }

  .footer-col-divider {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .footer-col {
    flex: 1 1 100%;
  }

  .footer-email-input,
  .footer-submit-btn {
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  .sttar-navbar .navbar-text {
    display: none;
  }
}
