@charset "utf-8";
/* ============================
   CORE SKILLS UNIFIED BRAND SYSTEM
   Brand Blue  #0D369F
   Brand Yellow #F7B310
   Light Blue Tints #2A54D4, #3C6BFF
============================= */

/* ============================
   COLOR VARIABLES
============================= */
:root {
    --brand-blue: #0D369F;
    --brand-blue-light: #2A54D4;
    --brand-blue-lighter: #3C6BFF;
    --brand-yellow: #F7B310;

    --light-bg: #F7F9FC;
    --light-bg-alt: #F1F4FA;
    --dark-text: #222;
}
.brand-blue-bg {
  background-color: #0D369F !important;
}
.text-brand-blue {
  color: var(--brand-blue) !important;
}

/* ============================
   GLOBAL STYLES
============================= */
body {
    font-family: "Inter", sans-serif;
    color: var(--dark-text);
}

.section-title {
    font-weight: 700;
    color: var(--brand-blue);
}
.program-card .list-group-item {
  padding-left: 0;
  padding-right: 0;
  border: none;
}
.list-group.list-group-flush.bulleted .list-group-item {
  list-style-type: disc;
  display: list-item;
  padding-left: 1rem;
  border: none;
}


/* ============================
   ANCHOR OFFSET FIX
============================= */
.scroll-offset {
  position: relative;
  top: -120px;
  height: 0;
}
/* ============================
   subheader
============================= */
.subheader-text {
  max-width: 40%;
}

@media (max-width: 950px) {
  .subheader-text {
    max-width: 100%;
  }
}


/* ============================
   NAVBARS
============================= */

/* Sub‑page navbar (solid brand blue) */
.subpage-nav {
  background-color: var(--brand-blue);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* Sub‑page header spacing */
.subpage-header {
  background-color: #f8f9fa;
  margin-top: 80px;
}

/* Flex spacer */
.flex-spacer {
  flex: 1 1 auto;
}

.navbar .container {
  max-width: 1200px;
}

/* Transparent homepage navbar */
.transparent-nav {
  background: transparent !important;
  box-shadow: none;
  transition: background-color 0.8s ease;
}

.transparent-nav .nav-link {
  color: #ffffff !important;
}

/* Logo */
.nav-logo {
  height: 56px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

@media (max-width: 768px) {
  .nav-logo {
    height: 44px;
  }
}
/* Show logo on sub-pages */
.subpage-nav .nav-logo {
  opacity: 1 !important;
}

/* Navbar spacing */
.navbar {
  padding-top: 16px;
  padding-bottom: 16px;
}

/* Homepage scroll-state navbar — unified to brand blue */
.nav-scrolled {
  background-color: var(--brand-blue) !important;
}

.nav-scrolled .nav-link {
  color: #ffffff !important;
}

.nav-scrolled .nav-logo {
  opacity: 1;
}

/* Mobile menu */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--brand-blue-light);
    padding: 1rem;
    width: 100%;
  }

  .navbar-collapse .nav-link {
    color: #ffffff;
    font-weight: 500;
  }

  .navbar-collapse .nav-link:hover {
    background-color: var(--brand-blue);
    color: #ffffff;
    border-radius: 4px;
    padding-left: 0.5rem;
  }
}

/* ============================
   HERO SECTION
============================= */
.hero {
  position: relative;
  background-image: url('../images/hero-image WORKING.png');
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 60px 20px;
}

@media (max-width: 768px) {
  .hero {
    background-position: center bottom;
    min-height: 400px;
    padding: 40px 16px;
  }
}

.hero-logo {
  max-width: 85%;
  height: auto;
  transition: opacity 0.6s ease;
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 160px;
    margin-bottom: 16px;
  }
}

.hero-title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 400;
}

.hero-text {
  max-width: 600px;
}

@media (max-width: 768px) {
  .hero-text {
    max-width: 100%;
  }
}

/* ============================
   BUTTONS — BRAND BLUE TINTS
============================= */
.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue-lighter), var(--brand-blue-light));
  border: 2px solid var(--brand-yellow);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(13, 54, 159, 0.35);
  transition: all 0.3s ease;
}


.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue));
  border-color: var(--brand-yellow);
  box-shadow: 0 0 16px rgba(13, 54, 159, 0.45);
  transform: translateY(-2px);
}


/* ============================
   BACKGROUND TINTS
============================= */
.bg-soft {
  background-color: var(--light-bg);
}

.bg-soft-alt {
  background-color: var(--light-bg-alt);
}

.bg-light-alt {
  background-color: #FAFBFE;
}

/* ============================
   AUDIENCE LINE
============================= */
.audience-line {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--brand-blue);
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ============================
   AUDIENCE TILES
============================= */
.audience-tile {
    border-radius: 8px;
    background: white;
    transition: transform 0.2s ease;
}

.audience-tile:hover {
    transform: translateY(-5px);
}

/* ============================
   PROGRAM CARDS
============================= */
.program-card {
    border-left: 5px solid var(--brand-yellow);
    border-radius: 8px;
    background: white;
}
.course-thumb {
  width: 100px;
  height: auto;
  border-radius: 6px;
  flex-shrink: 0;
}


/* ============================
   STAT CARDS — BRAND BLUE
============================= */
.stat-box {
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  padding: 2rem;

  border-top: 4px solid transparent;
  background-image:
    linear-gradient(to right,
      var(--brand-blue),
      var(--brand-blue-light)
    );
  background-repeat: no-repeat;
  background-size: 100% 4px;
  background-position: top left;

  box-shadow:
    0 2px 8px rgba(0,0,0,0.06),
    0 6px 20px rgba(0,0,0,0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.08),
    0 10px 28px rgba(0,0,0,0.12);
}

.stat-box h3 {
  font-size: 2.6rem;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.stat-box p {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.stat-source {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.75rem;
}

.stat-source a {
  color: #6c757d;
  text-decoration: underline;
}

.stat-source a:hover {
  color: var(--brand-blue);
}

/* ============================
   VALUE TILES
============================= */
.value-tile {
    border-radius: 8px;
    background: white;
}

/* ============================
   STEPS
============================= */
.step-box {
    border-radius: 8px;
    background: white;
}

/* ============================
   FOOTER
============================= */
.footer {
  background-color: var(--brand-blue);
}

/* Footer logo sizing */
.footer-logo {
  height: 56px;   /* or 40px if you want slightly larger */
  width: auto;
}

