    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue-dark:    #0a1f2e;
      --green-deep:   #0d1f13;
      --green-dark:   #142a1a;
      --green-mid:    #1e4228;
      --green-accent: #2e6b3e;
      --amber:        #d4911a;
      --amber-light:  #f0b84a;
      --tan:          #c8b99a;
      --sand:         #e8d9bf;
      --off-white:    #f4f0e8;
      --charcoal:     #1a1a1a;
      --text-dim:     #8a9e8e;
      --text-body:    #ffffff;
      --border:       rgba(212,145,26,0.25);
      --mos-title-font: 1rem;
      --func-intro-font: 0.95rem;
      --func-list-font: 0.95rem;
      --mos-item-font: 0.9rem;
      --course-detail-font: 0.9rem;
      --eligibility-font: 0.85rem;
      --course-item-font: 0.9rem;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      /* background: var(--blue-dark); */
      color: var(--off-white);
      overflow-x: hidden;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.03;
      pointer-events: none;
      z-index: 9999;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 2rem;
      height: 68px;
      width: 100vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      /* background: rgba(13,31,19,0.92); */
      background-image: linear-gradient(to top, #09203f 0%, #537895 100%);
      /* background: rgba(13, 19, 31, 0.92); */
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 1rem;
      text-decoration: none;
    }

    .nav-logo-emblem {
      /* width: 38px;
      height: 38px; */
      width: 50px;
      height: 50px;
      position: relative;
      flex-shrink: 0;
    }

    .nav-logo-emblem svg { width: 100%; height: 100%; }

    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .nav-logo-text p:first-child {
      font-family: 'Bebas Neue', sans-serif;
      /* font-size: 1.05rem; */
      font-size: 1.5rem;
      /* letter-spacing: 0.12em; */
      letter-spacing: 2px;
      text-align: center;
      /* color: var(--amber); */
      /* color: #ebae45; */
      color: #fff;
    }

    .nav-logo-text p:last-child {
      font-family: 'Barlow Condensed', sans-serif;
      /* font-size: 0.65rem; */
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      color: var(--tan);
      text-transform: uppercase;
      text-align: center;
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      /* font-size: 0.75rem; */
      font-size: 1.5rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--tan);
      text-decoration: none;
      position: relative;
      transition: color 0.2s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--amber);
      transition: width 0.3s;
    }

    .nav-links a:hover { color: var(--amber-light); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green-deep);
      background: var(--amber);
      padding: 0.5rem 0.5rem;
      text-decoration: none;
      text-align: center;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
      transition: background 0.2s, transform 0.2s;
      min-width: 160px;
    }

    .nav-cta:hover { background: var(--amber-light); transform: scale(1.03); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--tan);
      transition: all 0.3s;
    }

    .stc-slogan {
      position: absolute;
      top: 80px; left: 50%;
      width: 560px;
      transform: translateX(-50%);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.75rem;
      font-weight: 600;
      letter-spacing: 2px;
      z-index: 1;
      color: var(--tan);
      text-align: center;
      text-shadow: 2px 4px 8px rgba(0,0,0,0.85);
    }

    /* ── MOBILE MENU ── */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px; left: 0; right: 0;
      background: rgba(13,31,19,0.98);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 2rem 2rem;
      z-index: 999;
      flex-direction: column;
      gap: 1.2rem;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--tan);
      text-decoration: none;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .mobile-menu a:hover { color: var(--amber); }

    .mobile-menu .nav-cta {
      align-self: flex-start;
      margin-top: 0.5rem;
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 1fr 80px;
      grid-template-areas:
        "hero-left hero-mid hero-right"
        "hero-stats hero-stats hero-stats";
      position: relative;
      overflow: hidden;
    }

    .hero-image-level {
      display: grid;
      grid-template-columns: 300px;
      grid-template-rows: 300px;
      justify-content: center;
      align-content: center;
      justify-items: center;
      align-items: center;
      gap: 20px;
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      background-image: linear-gradient(135deg, rgb(30, 40, 66) 0%, #0d1f13 60%),
        linear-gradient(to right,#0a1f2e 0%,#0a1f2e00 50%, #0a1f2e 100%);
      /* linear-gradient(135deg, rgb(30, 40, 66) 0%, #0d1f13 60%) */
      z-index: 0;
    }

    /* .image-level-pic { */
      /* width: 260px; height: 180px;
      background: rgba(46,62,107,0.15);
      border-radius: 0;
      background-size: cover;
      background-repeat: no-repeat;
      filter: grayscale(80%) opacity(0.8);
      box-shadow: 3px 6px 12px rgba(0,0,0,0.85);
      position: relative; */

      /* Initial hidden state */
      /* opacity: 0;
      transform: translateY(40px) scale(0.97); */

      /* Animation applied via JS with Intersection Observer */
      /* transition:
        opacity 2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 2s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease; */
    /* } */

    /* .image-level-pic:nth-child(1) { 
      border-radius: 10px 0 10px 0;
      background-image: url(SiteAssets7/Images/3DSlider/Image_21.JPG);
      background-size: 115% 115%;
      background-position: center -25px;
    } */

    /* .image-level-pic:nth-child(2) { 
      border-radius: 0 10px 0 10px;
      background-image: url(SiteAssets7/Images/3DSlider/Image_14.JPG);
    } */

    /* .image-level-pic:nth-child(3) { 
      border-radius: 0 10px 0 10px;
      background-image: url(SiteAssets7/Images/3DSlider/Image_57.jpg);
    } */

    /* .image-level-pic:nth-child(4) { 
      border-radius: 10px 0 10px 0;
      background-image: url(SiteAssets7/Images/Medical/MedEvac.png);
    } */

    /* .image-level-pic.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    } */

    /* Stagger delays */
    /* .image-level-pic:nth-child(1) { transition-delay: 1s; }
    .image-level-pic:nth-child(2) { transition-delay: 1200ms; }
    .image-level-pic:nth-child(3) { transition-delay: 1400ms; }
    .image-level-pic:nth-child(4) { transition-delay: 1600ms; } */

    /* .card img {
      display: block;
      width: 100%;
      height: 280px;
      object-fit: cover;
      transform: scale(1);
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    } */

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: start;
      padding: 7rem 3rem 5rem 5rem;
      position: relative;
      z-index: 2;
    }

    .hero-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--amber);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.8rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
    }

    .hero-tag::before {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--amber);
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 6vw, 6rem);
      line-height: 0.92;
      letter-spacing: 0.02em;
      color: var(--off-white);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.4s forwards;
    }

    .hero-title em {
      font-style: normal;
      color: var(--amber);
      display: block;
    }

    .hero-body {
      font-size: 1rem;
      line-height: 1.75;
      color: var(--tan);
      max-width: 440px;
      margin-bottom: 2.5rem;
      font-weight: 300;
      opacity: 0;
      animation: fadeUp 0.8s 0.6s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
      opacity: 0;
      animation: fadeUp 0.8s 0.8s forwards;
    }

    .btn-primary {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green-deep);
      background: var(--amber);
      padding: 0.85rem 2rem;
      text-decoration: none;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      font-weight: 600;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }

    .btn-primary:hover { background: var(--amber-light); transform: translateX(3px); }

    .btn-ghost {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--tan);
      border: 1px solid rgba(200,185,154,0.3);
      padding: 0.84rem 1.8rem;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
      display: inline-block;
    }

    .btn-ghost:hover { border-color: var(--amber); color: var(--amber-light); }

    .hero-mid {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem;
      position: relative;
      z-index: 2;
    }

    .mid-stc-logo {
      position: absolute;
      top: 50%;
      /* opacity: 0; */
      transform: translateY(-55%) !important;
      width: 50%;
      height: auto;
      transition-delay: 2s;
      transition: opacity 2s ease;
      filter: grayscale(45%);
    }

    .mid-slideshow-hide {
      opacity: 0;
    }

    .mid-stc-logo-hide {
      opacity: 0;
    }

    .hero-right {
      position: relative;
      overflow: hidden;
    }

    .hero-img-container {
      position: absolute;
      inset: 0;
      /* background: linear-gradient(135deg, rgb(30, 40, 66) 0%, #0d1f13 60%); */
    }

    /* Geometric tactical grid */
    .hero-grid-bg {
      position: absolute;
      inset: 0;
      /* background-image:
        linear-gradient(rgba(46,107,62,0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,107,62,0.15) 1px, transparent 1px); */
      background-image:
        linear-gradient(rgba(46,62,107,0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,62,107,0.15) 1px, transparent 1px);
      background-size: 40px 40px;
      animation: gridMove 20s linear infinite;
    }

    @keyframes gridMove {
      from { transform: translate(0, 0); }
      to   { transform: translate(40px, 40px); }
    }

    .hero-overlay-shape {
      position: absolute;
      inset: 0;
      /* background: linear-gradient(to right, var(--green-deep) 0%, transparent 40%); */
      /* background: linear-gradient(to right, var(--blue-dark) 0%, transparent 40%); Last used. */
    }

    .hero-diagram {
      position: absolute;
      top: 45%; left: 50%;
      transform: translate(-50%, -50%);
      /* width: 360px;
      height: 360px; */
      width: 500px; height: 500px;
      opacity: 0;
      animation: fadeIn 1.2s 1s forwards;
      padding: 1rem;
      border-radius: 10px;
      /* background-image: linear-gradient(to right,#333333bb, #33333300); */
    }

    .hero-stats-ribbon {
      /* position: absolute;
      bottom: 0;
      left: 0; right: 0; */
      width: 100%;
      display: flex;
      background: rgba(0,0,0,0.4);
      border-top: 1px solid var(--border);
      backdrop-filter: blur(8px);
      z-index: 3;
    }

    .hero-stat {
      flex: 1;
      padding: 0.5rem;
      border-right: 1px solid var(--border);
      opacity: 0;
      animation: fadeUp 0.6s forwards;
    }

    .hero-stat:nth-child(1) { animation-delay: 1s; }
    .hero-stat:nth-child(2) { animation-delay: 1.15s; }
    .hero-stat:nth-child(3) { animation-delay: 1.3s; }
    .hero-stat:nth-child(4) { animation-delay: 1.45s; }
    .hero-stat:nth-child(5) { animation-delay: 1.6s; border-right: none; }

    .hero-stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.9rem;
      color: var(--amber);
      line-height: 1;
      text-align: center;
    }

    .hero-stat-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-top: 0.2rem;
      text-align: center;
    }

    /* ── SECTION SHARED ── */
    section { position: relative; }

    .section-inner {
      /* max-width: 1200px; */
      max-width: 1400px;
      margin: 0 auto;
      padding: 6rem 2rem;
    }

    #techtrng .section-inner {
      max-width: 95%;
    }

    .section-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--amber);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .section-eyebrow::before {
      content: '';
      width: 24px; height: 1px;
      background: var(--amber);
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      /* letter-spacing: 0.03em; */
      letter-spacing: 0.25rem;
      line-height: 0.95;
      color: var(--off-white);
    }

    /* ── MISSION ── */
    #mission {
      /* background: var(--green-dark);
      border-top: 1px solid rgba(46,107,62,0.3); */
      background: linear-gradient(158deg, #132d38 0%, #172e3c 60%, #1b3545 100%);;
      border-top: 1px solid rgba(46,107,62,0.3);
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
      margin-top: 3.5rem;
    }

    .mission-text p {
      font-size: 1rem;
      line-height: 1.5;
      color: var(--tan);
      font-weight: 300;
      margin-bottom: 1.2rem;
      word-spacing: 0.2rem;
    }

    .commitment-text p {
      font-size: 1rem;
      line-height: 1.5;
      color: var(--tan);
      font-weight: 300;
      margin-bottom: 1.2rem;
      word-spacing: 0.2rem;
    }

    .vision-text p {
      font-size: 1rem;
      line-height: 1.5;
      color: var(--tan);
      font-weight: 300;
      margin-bottom: 1.2rem;
      word-spacing: 0.2rem;
    }

    .mission-text p strong {
      color: var(--off-white);
      font-weight: 600;
    }

    .mission-pillars {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .pillar {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      padding: 1.4rem;
      background: rgba(46,107,62,0.12);
      border: 1px solid rgba(46,107,62,0.2);
      border-left: 3px solid var(--amber);
      transition: background 0.3s, transform 0.3s;
      cursor: default;
    }

    .pillar:hover {
      background: rgba(46,107,62,0.22);
      transform: translateX(6px);
    }

    .pillar-icon {
      position: relative;
      font-size: 1.4rem;
      flex-shrink: 0;
      min-width: 50px;
      margin-top: 0.1rem;
    }

    .pillar-icon svg {
      position: absolute;
    }

    .pillar-content h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .pillar-content p {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--sand);
      font-weight: 300;
    }

    /* ── Tab Wrapper ── */
    .tab-container {
      width: 100%;
    }

    /* ── Tab Buttons Bar ── */
    .tab-buttons {
      display: flex;
      gap: 0.5px;
      background: rgba(37,95,114,0.2);
      margin-bottom: 0;
    }

    .tab-buttons button {
      flex: 1;
      font-family: 'Barlow Condensed', sans-serif;
      /* font-size: 0.75rem; */
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-dim);
      background: linear-gradient(165deg, #132d38 0%, #112030 100%);
      border: none;
      border-top: 2px solid transparent;
      border-bottom: 2px solid transparent;
      padding: 0.9rem 1.5rem;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .tab-buttons button:hover {
      background: rgba(37,95,114,0.22);
      color: var(--text-body);
    }

    .tab-buttons button.active {
      background: rgba(37,95,114,0.18);
      color: var(--amber);
      border-top-color: var(--amber);
    }

    /* ── Tab Panels Wrapper ── */
    .tab-panels {
      background: linear-gradient(165deg, #132d38 0%, #112030 100%);
      border: 1px solid rgba(37,95,114,0.2);
      border-top: none;
    }

    /* ── Individual Panel ── */
    .tab-panel {
      display: none;
      padding: 2rem;
    }

    .tab-panel.active {
      display: block;
      animation: tabFadeIn 0.3s ease forwards;
    }

    @keyframes tabFadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .tab-panel h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-main);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .tab-panel h3::before {
      content: '';
      width: 18px;
      height: 1px;
      background: var(--amber);
      flex-shrink: 0;
    }

    .tab-panel p {
      font-size: 1rem;
      line-height: 1.5;
      color: var(--tan);
      font-weight: 300;
      margin-bottom: 1.2rem;
      word-spacing: 0.2rem;
    }

    /* ── Responsive — stack buttons vertically on mobile ── */
    @media (max-width: 640px) {
      .tab-buttons { flex-direction: column; gap: 0.5px; }

      .tab-buttons button {
        border-top: none;
        border-left: 2px solid transparent;
        text-align: left;
      }

      .tab-buttons button.active {
        border-left-color: var(--amber);
        border-top-color: transparent;
      }
    }

    /* ── PROGRAMS ── */
    #programs {
      /* background: var(--green-deep); */
      background: linear-gradient(158deg, #132d38 0%, #172e3c 60%, #1b3545 100%);;
      border-top: 1px solid rgba(46,107,62,0.3);
    }

    .programs-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      /* margin-bottom: 3rem; */
      margin-bottom: 1.25rem;
    }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(46,107,62,0.2);
    }

    .program-card {
      /* background: var(--green-dark); */
      background: linear-gradient(165deg, #132d38 0%, #112030 100%);
      /* padding: 2.2rem; */
      padding: 1.5rem;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
      cursor: pointer;
    }

    .program-card ul {
      list-style-type: square;
      padding: 1.2rem;
    }

    .program-card ul li {
      font-size: 1rem;
      /* line-height: 1.6; */
      line-height: 1.2;
      color: var(--text-dim);
      font-weight: 300;
      margin-bottom: 0.6rem;
      text-align: left;
    }

    .program-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 0;
      height: 2px;
      background: var(--amber);
      transition: width 0.5s;
    }

    .program-card:hover::before { width: 100%; }
    /* .program-card:hover { background: rgba(30,66,40,0.9); } */
    .program-card:hover { background: rgba(37,95,114,0.25); }

    .program-card-num {
      display: none;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: rgba(212,145,26,0.15);
      line-height: 1;
      margin-bottom: 0.6rem;
      transition: color 0.3s;
    }

    .program-card:hover .program-card-num { color: rgba(212,145,26,0.3); }

    .program-card-icon {
      font-size: 1.6rem;
      margin-bottom: 1rem;
    }

    .program-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--off-white);
      margin-bottom: 0.75rem;
    }

    .program-card p {
      /* font-size: 0.88rem; */
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-dim);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .program-tag {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      border: 1px solid rgba(212,145,26,0.35);
      padding: 0.25rem 0.7rem;
    }

    .instruction-areas {
      /* display: grid; */
      display: none;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: 0.8rem;
      margin-top: 3rem;
    }

    .instruction-areas .area {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      align-items: start;
      padding: 0.4rem;
      background: rgba(46,107,62,0.12);
      border: 1px solid rgba(46,107,62,0.2);
      border-left: 3px solid var(--amber);
      transition: background 0.3s, transform 0.3s;
      cursor: default;
    }

    .area-icon {
      display: none;
    }

    .area-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .area-content h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
      color: var(--off-white);
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .area-content ol {
      padding-left: 1.2rem;
    }

    .area-content ol li {
      font-size: 0.9rem;
      line-height: 1.6;
      color: var(--text-dim);
      font-weight: 300;
      margin-bottom: 0.6rem;
      text-align: left;
    }

    /* ── IMPACT ── */
    #impact {
      /* background: var(--green-mid);
      border-top: 1px solid rgba(46,107,62,0.4);
      border-bottom: 1px solid rgba(46,107,62,0.4); */
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 100vh;
      background: linear-gradient(155deg, #0e1e26 0%, #112434 55%, #132d38 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .impact-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 6rem;
      align-items: flex-start;
      /* height: calc(100vh - 68px); */
      /* min-height: 100vh; */
      height: 100%;
    }

    .impact-layout-numbers {
      position: sticky;
      top: 70px;
    }

    .impact-layout p {
      font-size: 1.25rem;
      line-height: 1.55;
      color: var(--tan);
      font-weight: 400;
      word-spacing: 0.2rem;
      padding: 0 3.5rem;
      /* margin-top: 1.5rem; */
    }

    .impact-p-div {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      background-image: linear-gradient(0deg, rgba(46,107,62,0.15), transparent 70%);
      border-radius: 10px 10px 10px 10px;
      padding: 1.5rem 0;
      text-align: justify;
      border-top: 1px gray solid;
      border-right: 1px rgba(46, 107, 62, 0.315);
      border-bottom: 1px rgba(46, 107, 62, 0.315);
      border-left: 1px gray solid;
    }

    .impact-p-div p {
      font-weight: 500;
    }

    .impact-layout-timeline {
      display: flex;
      flex-direction: column;
      /* justify-content: center;
      align-items: center; */
      gap: 3rem;
    }

    .impact-layout-timeline .timeline-title {
      text-align: center;
      position: absolute;
      font-family: 'Barlow Condensed', sans-serif;
      text-transform: uppercase;
      color: var(--tan);
      letter-spacing: 1px;
      left: 50%;
      transform: translate(-50%, -10px);
    }

    .impact-numbers {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5px;
      /* background: rgba(46,107,62,0.3); */
    }

    .impact-num-block {
      /* background: var(--green-dark); */
      background: rgba(0,0,0,0.25);
      padding: 2rem 1.5rem;
      text-align: center;
    }

    .impact-num-block .num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.8rem;
      color: var(--amber);
      line-height: 1;
      display: block;
    }

    .impact-num-block .num-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-top: 0.4rem;
      display: block;
    }

    /* .impact-content p {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--tan);
      font-weight: 300;
      margin-top: 1.5rem;
    } */

    /* .testimonial {     ******** IMPACT SECTION TESTIMONIAL STYLE - COMMENTED OUT FOR NOW, MAY REINTRODUCE LATER *******
      margin-top: 2.5rem;
      padding: 1.8rem;
      background: rgba(0,0,0,0.25);
      border-left: 3px solid var(--amber);
    } */

    /* .testimonial p {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--off-white);
      font-style: italic;
      font-weight: 300;
      margin: 0 0 1rem;
    } */

    /* .testimonial-attr {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--amber);
    } */

    /* ── FACILITIES ── */
    #facilities {
      /* background: var(--green-dark); */
      background: linear-gradient(155deg, #0e1e26 0%, rgb(17, 46, 52) 55%, rgb(19, 55, 56) 100%);
      /* background: linear-gradient(155deg, #0e1e26 0%, rgb(17, 36, 52) 55%, #132d38 100%) */
    }

    /* #facilities ul li {
      padding: 0;
      margin: 0;
    } */

    .facilities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 5px;
      /* background: rgba(46,107,62,0.2); */
      background: linear-gradient(155deg, #0e1e26 0%, #112434 55%, #132d38 100%);
      margin-top: 3rem;
      transform-style: preserve-3d;
      transform: perspective(1000px);
    }

    .facilities-grid .facility-item {
      /* background: var(--green-deep); */
      background: rgba(0,0,0,0.25);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: transform 0.6s ease-in-out, filter 0.3s ease;
      backface-visibility: hidden;
      -webkit-font-smoothing: antialiased;
      will-change: transform;
      cursor: default;
    }

    .facility-item ul {
      text-align: left;
      list-style-type: none;
      line-height: 1.5;
      color: #fff;
    }

    .facility-item ul svg {
      padding: 0; margin: 0;
      font-size: 0.85rem;
      margin-right: 0.75rem;
    }

    .facilities-grid .facility-item:last-child a {
      text-decoration: none;
      cursor: pointer;
    }

    /* ——— Commented 28 Mar 26 ——— */
    /* .facilities-grid .facility-item:hover {
      transform: translateZ(50px);
    }

    .facilities-grid .facility-item:hover + * {
      filter: brightness(0.8);
      transform: translateZ(25px) rotateY(10deg);
    }

    .facilities-grid .facility-item:has(+ *:hover) {
      filter: brightness(0.8);
      transform: translateZ(25px) rotateY(-10deg);
    } */

    .facility-icon {
      font-size: 2rem;
      margin-bottom: 0.8rem;
      display: block;
    }

    .facility-item h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      /* color: var(--off-white); */
      color: #fff;
      margin-bottom: 0.5rem;
    }

    .facility-item p {
      font-size: 0.9rem;
      line-height: 1.6;
      /* color: var(--text-dim); */
      color: #fff;
      font-weight: 300;
      word-spacing: 3px;
    }

    /* ── CONTACT ── */
    #contact {
      /* background: var(--green-deep); */
      min-height: 100vh;
      background: linear-gradient(155deg, #0e1e26 0%, rgb(17, 46, 52) 55%, rgb(19, 55, 56) 100%);
      border-top: 1px solid rgba(46,107,62,0.3);
    }

    .email-to {
      text-decoration: none;
      color: var(--amber-light);
      text-transform: lowercase;
      transition: letter-spacing 0.2s ease-in;
    }

    .email-to:hover {
      letter-spacing: 1.1px;
      color: #fff;
    }

    /* .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 5rem;
      margin-top: 3.5rem;
    } */

    .contact-grid {
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      flex-wrap: wrap /* Allow wrapping on smaller screens */;
      gap: 1rem;
      margin-top: 3.5rem;
    }

    .contact-grid > div {
      flex: 1 1 350px; /* Allow each column to grow and shrink, with a minimum width */
      max-width: 400px; /* Optional: limit maximum width to 1/3 of the container */
    }

    .contact-information {
      display: flex;
      flex-direction: column;
      justify-content: center;
      /* align-items: center; */
      /* text-align: center; */
      padding: 1rem;
      font-size: 1.2rem;
      line-height: 1.6;
      color: var(--tan);
      font-weight: 300;
    }

    .contact-information h3 {
      font-family: 'Barlow Condensed', sans-serif;
      /* font-size: 1.2rem; */
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
      color: var(--off-white);
      margin-bottom: 1.5rem;
    }

    .contact-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      margin-bottom: 1.2rem;
    }

    .contact-item-icon {
      font-size: 1rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
      width: 20px;
      text-align: center;
    }

    .contact-item-text {
      /* font-size: 0.9rem; */
      font-size: 1rem;
      line-height: 1.6;
      color: var(--tan);
      font-weight: 300;
    }

    .contact-item-text strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 0.15rem;
      font-weight: 600;
    }

    /* .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    } */

    .contact-leadership {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      padding: 1rem;
      font-size: 1.2rem;
      line-height: 1.6;
      color: var(--tan);
      font-weight: 300;
    }

    .contact-leadership h3 {
      font-family: 'Barlow Condensed', sans-serif;
      /* font-size: 1.2rem; */
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--off-white);
      margin-bottom: 1.5rem;
    }

    .contact-leadership ul {
      list-style: none;
      padding: 0;
    }

    .leader-title {
      font-family: 'Barlow', sans-serif;
      letter-spacing: 0.1em;
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--text-dim);
      text-transform: uppercase;
    }

    .leader-name {
      font-family: 'Barlow', sans-serif;
      letter-spacing: 0.1em;
      font-size: 1rem;
      font-weight: 300;
    }

    #contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: flex-start;
      align-items: center;
      padding: 1rem;
    }

    .qr-code {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
      justify-items: center;
      align-items: center;
      width: auto;
      min-width: 220px;
    }

    .qr-code a {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      padding: 0.25rem 0.7rem;
      text-decoration: none;
      /* text-align: center; */
    }

    .qr-code img {
      width: 180px;
      height: 180px;
      object-fit: cover;
      /* border: 1px solid rgba(46,107,62,0.35); */
      outline: 5px groove rgba(46,107,62,0.2);
      outline-offset: 0.5rem;
      /* padding: 0.4rem; */
      background: rgba(46,107,62,0.12);
    }

    .qr-code-text {
      font-size: 1.2rem;
      line-height: 1.4;
      color: var(--text-dim);
      font-weight: 500;
      text-align: center;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--charcoal);
      border-top: 1px solid rgba(212,145,26,0.2);
      padding: 2.5rem 2rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-brand {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.1rem;
      letter-spacing: 0.12em;
      color: var(--amber);
    }

    .footer-copy {
      font-size: 0.75rem;
      color: rgba(138,158,142,0.6);
      font-weight: 300;
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
    }

    .footer-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(138,158,142,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--amber); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 0.9; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── TICKER ── */
    .ticker-wrap {
      background: var(--amber);
      overflow: hidden;
      white-space: nowrap;
      padding: 0.55rem 0;
    }

    .ticker {
      display: inline-block;
      animation: ticker 30s linear infinite;
    }

    .ticker span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--green-deep);
      font-weight: 700;
      padding: 0 3rem;
    }

    .ticker span::before { content: '◆  '; }

    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .button-shadow {
    box-shadow: 2px 2px 4px #222;
    }

    /* .sched-training-btn {
        margin: 5px auto 0;
    } */

    .div-alive {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 120px;
        height: 45px;
        border: 1px outset gray;
        border-radius: 5px;
        overflow: hidden;
    }

    .div-alive .movement {
        position: absolute;
        top: -100px;
        left: -50%;
        width: 230px;
        height: 230px;
        background-image: linear-gradient(yellow,red);
        animation: div-alive 5s linear infinite;
    }

    .div-alive .static {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 130px;
        height: 45px;
        color: black;
        cursor: pointer;
        letter-spacing: 1.5px;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.75rem;
        font-weight: 600;
        text-align: center;
    }

    .div-alive .static p {
        margin: 0;
        padding: 0 5px;
        text-align: center;
        word-break: break-word;
        max-width: 100%;
    }

    .div-alive .static:hover {
        background-color: black;
        color: white;
    }

    .div-alive .static:active {
        background-color: whitesmoke;
        color: #333;
    }

    @keyframes div-alive {
      0% {
          transform: rotateZ(0);
      }
      100% {
          transform: rotateZ(360deg);
      }
    }
    @-webkit-keyframes div-alive {
      0% {
          transform: rotateZ(0);
      }
      100% {
          transform: rotateZ(360deg);
      }
    }

    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      /* top: 20px; */
      background-image: linear-gradient(180deg,#33333344 5px, #1d3e4e 20px, #1a3850 55%, #132d38 100%);
      min-width: 300px; /* Adjust width as needed */
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
      border-radius: 5px;
      /* border-left: 1px rgb(62, 62, 99) solid; */
      border-right: 1px rgb(62, 62, 99) solid;
      border-bottom: 1px rgb(62, 62, 99) solid;
      padding: 0;
    }

    .dropdown-content a {
      color: #fff;
      padding: 10px 16px;
      text-decoration: none;
      display: block;
      text-align: left;
      font-size: 1rem;
    }

    .dropdown-content a:first-child {
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
    }

    .dropdown-content a:last-child {
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px;
    }

    .dropdown-content a:hover {
      background-color: #333333;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    /* Optional: Style the training button on hover */
    /* .dropdown:hover .dropbtn {
      background-color: #555;
      border-radius: 4px;
    } */

    /* ── Section ── */
    /* #testimonials {
      background: linear-gradient(152deg, #0e1e26 0%, #132d38 100%);
      border-top: 1px solid var(--border);
    } */

    .testi-inner {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }

    /* ── Slider — stacked, not horizontal ── */
    .testi-slider {
      position: relative;
      /* margin-top: 3rem; */
      margin-top: 0;
      /* Height is driven by the tallest card; min-height avoids collapse */
      min-height: 280px;
    }

    /* ── Each slide sits on top of the others ── */
    .testi-slide {
      position: absolute;
      /* position: relative; */
      inset: 0;
      opacity: 0;
      pointer-events: none;
      /* Default resting state — slightly below and left, invisible */
      transform: translate(-12px, 10px);
    }

    /* ── ACTIVE: fully visible, in position ── */
    .testi-slide.active {
      opacity: 1;
      pointer-events: auto;
      transform: translate(0, 0);
      transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    }

    /* ── LEAVING: fade out, drift down and left ── */
    .testi-slide.leaving {
      opacity: 0;
      pointer-events: none;
      transform: translate(-18px, 14px);
      transition:
        opacity 0.55s ease,
        transform 0.55s ease;
    }

    /* ── ENTERING: arrives from above-right, fades in ── */
    .testi-slide.entering {
      opacity: 0;
      pointer-events: none;
      /* Start slightly above and to the right */
      transform: translate(12px, -10px);
    }

    /* ── Card ── */
    .testi-card {
      background: linear-gradient(165deg, #132d38 0%, #112030 100%);
      border: 1px solid var(--border);
      border-top: 3px solid var(--amber);
      padding: 3rem 3.5rem;
      position: relative;
      text-align: left;
    }

    /* Large decorative quote mark */
    .testi-card::before {
      content: '\201C';
      font-family: Georgia, serif;
      font-size: 8rem;
      line-height: 1;
      color: rgba(212,145,26,0.08);
      position: absolute;
      top: 1rem;
      left: 2rem;
      pointer-events: none;
    }

    .testi-card::after {
      content: '\201D';
      font-family: Georgia, serif;
      font-size: 8rem;
      line-height: 1;
      color: rgba(212,145,26,0.08);
      position: absolute;
      top: 1rem;
      right: 2rem;
      pointer-events: none;
    }

    .testi-quote {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--text-body);
      font-weight: 300;
      font-style: italic;
      position: relative;
      z-index: 1;
      margin-bottom: 2rem;
    }

    .testi-divider {
      width: 40px;
      height: 1px;
      background: var(--amber);
      margin-bottom: 1.2rem;
      opacity: 0.6;
    }

    .testi-unit {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--amber);
    }

    .testi-unit sup {
      font-size: 0.6rem;
    }

    .testi-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-top: 0.3rem;
    }

    /* ── Navigation ── */
    .testi-nav {
      display: flex;
      /* display: none; */
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .testi-arrow {
      width: 42px;
      height: 42px;
      background: rgba(37,95,114,0.15);
      color: var(--text-dim);
      font-size: 1rem;
      display: flex;
      /* display: none; */
      align-items: center;
      justify-content: center;
      cursor: pointer;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      transition: background 0.2s, color 0.2s;
      border: none;
      user-select: none;
    }

    .testi-arrow:hover {
      background: rgba(212,145,26,0.15);
      color: var(--amber);
    }

    /* ── Dots ── */
    .testi-dots {
      display: flex;
      /* display: none; */
      gap: 0.5rem;
      align-items: center;
    }

    .testi-dot {
      width: 24px;
      height: 3px;
      background: rgba(37,95,114,0.4);
      cursor: pointer;
      transition: background 0.3s, width 0.3s;
      border: none;
    }

    .testi-dot.active {
      background: var(--amber);
      width: 36px;
    }

    /* ── Counter ── */
    .testi-counter {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      color: var(--text-dim);
    }

    .testi-counter span { color: var(--amber); }

    /* ── Progress Bar ── */
    .testi-progress {
      height: 2px;
      background: rgba(37,95,114,0.2);
      /* margin-top: 2rem; */
      margin-top: 0.75rem;
      overflow: hidden;
    }

    .testi-progress-bar {
      height: 100%;
      /* background: var(--amber); */
      background-color: #d4901a2f;
      width: 0%;
      transition: width linear;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .testi-card { padding: 2rem 1.8rem; }
      .testi-quote { font-size: 0.92rem; }
      .testi-card::before { font-size: 5rem; }
      .testi-card::after { font-size: 5rem; }
      .testi-slider { min-height: 340px; }
      /* #impact {min-height: 160vh;} */
      #techtrng-pics { display: none; }
    }

    /* * ── End of Testimonials Styling ── * */

    /* ── RESPONSIVE ── */
    @media (max-width: 3840px) {
      /* .nav-cta { font-size: 0.85rem; padding: 0.5rem 0.5rem; } */
      .div-alive .static { font-size: 0.9rem; }
      .hero-stat-label { font-size: 0.9rem; }
      /* .hero-diagram { left: 60%; } */
      .hero-image-level { 
        grid-template-columns: 300px;
        grid-template-rows: 300px; 
      }
    }

    @media (max-width: 1736px) {
      .hero-image-level { 
        grid-template-columns: 300px;
        grid-template-rows: auto;
      }
      .hero-diagram { width: 400px; height: 400px; }
      .image-level-pic {
        height: 120px;
      }
      .image-level-pic:nth-child(1) { 
        background-size: 100% 165%;
        background-position: center -20px;
      }
      /* #techtrng .section-inner {
        max-width: 90%;
      } */
    }
    
    @media (max-width: 1280px) {
      #hero { 
        grid-template-columns: 1fr 1fr; 
        grid-template-rows: auto 80px;
        grid-template-areas:
        "hero-left hero-mid"
        "hero-stats hero-stats";
        min-height: auto;
      }
      .hero-left { padding: 2rem 2rem 3rem; }
      .hero-right { display: none; }
      .nav-links li a {
        font-size: 0.8rem;
      }
    }

    @media (max-width: 1024px) {
      #hero { 
        grid-template-columns: 1fr 1fr; 
        grid-template-rows: auto 80px;
        grid-template-areas:
        "hero-left hero-mid"
        "hero-stats hero-stats";
        min-height: auto;
      }
      .hero-left { padding: 2rem 2rem 3rem; }
      .hero-right { display: none; }
      .mission-grid, .impact-layout, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      /* .contact-grid { grid-template-rows: 1fr 1fr 1fr;} */
      .programs-grid { grid-template-columns: 1fr 1fr; }
      .facilities-grid { grid-template-columns: repeat(2, 1fr); }
	  .impact-layout-numbers { position: relative; }
	  .impact-layout-timeline { padding-top: 4rem; }
      .nav-logo { gap: 0.75rem; }
      .nav-links a { font-size: 0.8rem; }
      /* .nav-cta { font-size: 0.75rem; padding: 0.4rem 0.5rem; } */
      .ticker span { font-size: 0.85rem; padding: 0 2rem; }
      .div-alive .static { font-size: 0.75rem; }
      .stc-slogan { display: none;}
    }

    @media (max-width: 864px) {
      .nav-logo-text p:first-child {
        font-size: 0.95rem;
      }
      .nav-logo-text p:last-child {
        font-size: 0.65rem;
      }
    }

    @media (max-width: 768px) {
      .nav-links, .sched-training-btn { display: none; }
      .hamburger { display: flex; }
      #hero { 
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto; 
        grid-template-areas:
        "hero-left hero-right"
        "hero-stats hero-stats";
      }
      .hero-left { padding: 7rem 1.5rem 2rem; }
      .hero-mid { display: none; }
      .hero-right { display: block; }
      .hero-diagram { width: 325px; height: 325px; }
      .hero-stats-ribbon { flex-wrap: wrap; }
      .hero-stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--border); }
      .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-right: 1px solid var(--border); }
      .programs-grid { grid-template-columns: 1fr; }
      .facilities-grid { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .impact-numbers { grid-template-columns: 1fr 1fr; }
	  .impact-layout-numbers { position: relative; }
      .programs-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .section-inner { padding: 4rem 1.5rem; }
      .footer-inner { flex-direction: column; text-align: center; }
      .nav-logo { gap: 0.75rem; }
      .ticker span { font-size: 0.65rem; padding: 0 2rem; }
      .fa-angles-left, .fa-angles-right {
        display: none;
      }
    }

    @media (max-width: 480px) {
      /* .nav-links, .nav-cta, .schedule-training-btn { display: none; } */
      .facilities-grid { grid-template-columns: 1fr; }
      .hero-mid { padding: 0.5rem; display: flex; justify-content: flex-start; }
      .mid-stc-logo { top: 45%; }
      #hero { 
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 300px 1fr auto;
        grid-template-areas: 
        "hero-left"
        "hero-mid"
        "hero-right" 
        "hero-stats"; 
      }
	  #testimonials { display: none; }
      .hero-left { padding: 4rem 1.5rem 2rem; }
      .hero-right { display: block; }
      .hero-stat { flex: 0 0 100%; border-right: none; }
      .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-right: none; }
      .hero-diagram { width: 400px; height: 400px; }
      .nav-logo { gap: 0.5rem; }
      .ticker span { font-size: 0.65rem; padding: 0 2rem; }
      .hero-grid-bg {
        animation: none;
      }
      .stc-slogan { top: 40px; font-size: 1.75rem; }
      .impact-p-div { padding: 1rem; }
      .impact-layout p { text-align: left; padding: 0; }
    }