/* ─── TOKENS & DESIGN SYSTEM ────────────────────────────────────────────────── */
:root {
  --o: #F7771E; 
  --o2: #D45A0A; 
  --o3: #FEF0E6; 
  --o4: #FAB87A;
  --s: #05A3DA; 
  --s2: #0383B0; 
  --s3: #E4F6FD; 
  --s4: #67CDEF;
  --ink: #1C1C1E; 
  --ink2: #48484A; 
  --ink3: #8A8A8E;
  --white: #FFFFFF; 
  --off: #F9F9F9; 
  --line: #EBEBEC;
  --r: 16px; 
  --r2: 24px; 
  --r3: 32px;
  --shadow: 0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.08), 0 24px 64px rgba(0,0,0,.10);
  
  /* System Font Stack */
  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

/* ─── GENERAL RESETS & CORE TYPOGRAPHY ────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-stack);
  color: var(--ink);
  background: #F7F9FC;
  overflow-x: hidden;
  line-height: 1.55;
}
h1, h2, h3, h4, h5, h6, em {
  font-family: var(--font-stack);
  font-style: normal;
}
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em {
  font-style: normal;
  font-weight: inherit;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ─── LAYOUT & CORE COMPONENT UTILITIES ────────────────────────────────────────── */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media(max-width:768px) {
  .wrap {
    padding: 0 20px;
  }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 18px;
}
.section-label span {
  width: 22px;
  height: 2px;
  background: var(--o);
  border-radius: 2px;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .25s;
  letter-spacing: .01em;
}
.btn svg {
  width: 15px;
  height: 15px;
  transition: transform .25s;
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn-orange {
  background: var(--o);
  color: #fff;
  box-shadow: 0 4px 14px rgba(246,120,31,.3);
}
.btn-orange:hover {
  background: var(--o2);
  box-shadow: 0 6px 20px rgba(246,120,31,.4);
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-white:hover {
  border-color: var(--o);
  color: var(--o);
}

/* ─── TOP BAR ────────────────────────────────────────────────────────────── */
.topbar {
  background: linear-gradient(90deg, var(--s) 0%, var(--s2) 100%);
  color: #fff;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 500;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  opacity: .7;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: .7; }
  50% { opacity: .25; }
}
.topbar-provinces {
  font-weight: 700;
  letter-spacing: .01em;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-right a {
  color: #fff;
  opacity: .9;
  font-size: 12px;
  letter-spacing: .03em;
}
.topbar-right a:hover {
  opacity: 1;
}
.topbar-right .sep {
  opacity: .3;
}

/* ─── PRIMARY NAVIGATION & DROPDOWNS ────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink2);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links a:hover {
  color: var(--o);
}
.nav-links a svg {
  width: 13px;
  height: 13px;
  opacity: .5;
}

/* Dropdown Level 1 */
.nav-links > li {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-links > li:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown > li {
  position: relative;
}
.nav-dropdown a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink2);
  transition: all .2s;
}
.nav-dropdown a:hover {
  background: var(--off);
  color: var(--o);
}
.nav-dropdown a svg {
  transform: rotate(-90deg);
  opacity: .4;
}

/* Dropdown Level 2 (Sub-dropdowns) */
.nav-sub-dropdown {
  position: absolute;
  top: -12px;
  left: calc(100% + 12px);
  min-width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all .25s;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-dropdown > li:hover > .nav-sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.nav-sub-dropdown a {
  padding: 8px 14px;
  font-size: 13.5px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── NEWSLETTER COMPONENT ──────────────────────────────────────────────────── */
.newsletter-wrap {
  padding: 0 40px;
  position: relative;
  z-index: 10;
  margin-top: -60px;
}
.newsletter-card {
  background: #fff;
  border-radius: var(--r3);
  padding: 52px 60px;
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.newsletter-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,120,31,.06) 0%, transparent 70%);
}
.newsletter-card h3 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.newsletter-card h3 em {
  color: var(--o);
}
.newsletter-card p {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s;
  margin-bottom: 10px;
}
.newsletter-form:focus-within {
  border-color: var(--o);
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 16px 18px;
  font-size: 15px;
  outline: none;
  color: var(--ink);
  background: transparent;
}
.newsletter-form input::placeholder {
  color: var(--ink3);
}
.newsletter-form button {
  background: var(--o);
  color: #fff;
  border: none;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .2s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--o2);
}
.newsletter-form button svg {
  width: 15px;
  height: 15px;
}
.newsletter-note {
  font-size: 12px;
  color: var(--ink3);
}
.newsletter-note a {
  color: var(--s);
  text-decoration: underline;
}

/* ─── FOOTER ───────────────────────────────────────────────────────────────── */
footer {
  background: 
    radial-gradient(circle at -50px -50px, rgba(255, 255, 255, 0.07) 200px, transparent 200.5px),
    radial-gradient(circle at calc(100% + 40px) calc(100% + 40px), rgba(0, 0, 0, 0.04) 160px, transparent 160.5px),
    linear-gradient(135deg, #FB923C 0%, #F7771E 50%, #D45A0A 100%);
  color: rgba(255, 255, 255, .85);
  padding: 140px 0 32px;
  margin-top: -80px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--o), var(--s));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 56px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-logo img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
  margin-bottom: 18px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s;
  cursor: pointer;
}
.footer-social:hover {
  background: var(--o);
  border-color: var(--o);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul a:hover {
  color: #fff;
  gap: 10px;
}
.footer-col ul a svg {
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: opacity .2s;
}
.footer-col ul a:hover svg {
  opacity: 1;
}
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
}
.footer-col address strong {
  color: #fff;
  font-weight: 600;
}
.footer-col address a {
  color: rgba(255, 255, 255, .7);
}
.footer-col address a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, .45);
  transition: color .2s;
}
.footer-bottom-links a:hover {
  color: #fff;
}

/* ─── GLOBAL RESPONSIVE ADJUSTMENTS ─────────────────────────────────────────── */
@media(max-width:1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .newsletter-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }
}
@media(max-width:768px) {
  .nav-links {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .topbar-right {
    display: none;
  }
  .newsletter-wrap {
    padding: 0 20px;
  }
  .newsletter-card {
    padding: 28px 24px;
  }
}

/* ─── LEARNING CARDS PREMIUM STYLING ────────────────────────────────────────── */
.learning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
  position: relative;
  z-index: 2;
}
.learning-card {
  background: linear-gradient(135deg, #FCA361 0%, #F5771E 50%, #BC500A 100%) !important;
  border: none !important;
  border-radius: var(--r2) !important;
  padding: 40px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 36px rgba(245, 119, 30, 0.15) !important;
  color: #fff !important;
}
.learning-card:hover {
  box-shadow: 0 20px 48px rgba(245, 119, 30, 0.3) !important;
  transform: translateY(-8px) !important;
}
.learning-card h3 {
  font-size: 28px !important;
  margin-bottom: 12px !important;
  font-weight: 700 !important;
  color: #fff !important;
}
.learning-card p {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 24px !important;
}
.duration-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 12px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  margin-bottom: 24px !important;
  text-transform: uppercase !important;
  letter-spacing: .05em !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.learning-list {
  list-style: none !important;
  margin-bottom: 32px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}
.learning-list li {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.95) !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.learning-list li svg {
  color: #fff !important;
  width: 18px !important;
  height: 18px !important;
}
.learning-card .btn-outline {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 24px !important;
  border: none !important;
  background: #fff !important;
  color: #F5771E !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  transition: all .25s !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
  cursor: pointer !important;
}
.learning-card .btn-outline:hover {
  background: #FFF3EB !important;
  color: #BC500A !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
}

/* Hide mobile toggle on desktop */
.nav-toggle {
  display: none;
}

/* ─── COMPREHENSIVE MOBILE OPTIMIZATION OVERRIDES ───────────────────────────── */
@media(max-width: 768px) {
  /* Navigation Bar mobile fixes */
  .nav .wrap {
    padding: 0 20px;
    height: 60px;
  }
  .nav-logo img {
    height: 36px;
  }
  .nav-toggle {
    display: flex !important;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: var(--off);
    color: var(--ink);
    border: 1px solid var(--line);
    order: 2;
  }
  .nav-actions {
    display: none !important;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1.5px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 24px;
    box-shadow: 0 10px 30px rgba(2, 30, 48, 0.08);
    display: none;
    z-index: 999;
  }
  .nav-links.nav-active {
    display: flex;
  }
  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-links > li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    padding: 12px 0;
    font-size: 15px;
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border: none;
    background: var(--off);
    padding: 0 0 10px 16px;
    display: none;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .nav-links > li:hover > .nav-dropdown {
    display: none; /* Handled by click JS */
  }
  .nav-sub-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
    background: transparent;
  }
  .nav-dropdown > li:hover > .nav-sub-dropdown {
    display: none; /* Handled by click JS */
  }

  /* Grid layouts & container columns */
  .hero .wrap,
  .about .wrap,
  .provinces-head,
  .province-grid,
  .about-grid,
  .stats-row,
  .values-grid,
  .loc-hero .wrap,
  .services-list,
  .services-grid,
  .prog-hero > .wrap,
  .outcomes-grid,
  .learning-grid,
  .contact-layout,
  .form-row,
  .grid-3,
  .grid-2,
  .programs-grid,
  .posts-grid,
  .quiz-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Padding & Margin corrections */
  .hero {
    padding: 40px 0 !important;
  }
  .about-grid, .about-section, .about, .stats-strip, .values-section, .loc-hero, .services-section, .outcomes-section, .learning-section, .contact-section {
    padding: 40px 0 !important;
  }
  
  /* Text align adjustments */
  .hero .wrap, .loc-hero .wrap, .prog-hero > .wrap, .blog-hero .wrap, .page-hero .wrap {
    text-align: center !important;
  }
  .request-card {
    text-align: left !important;
  }
  .request-card h3, .request-card p {
    text-align: center !important;
  }
  .form-group label, .field label, .request-card label {
    display: block !important;
    text-align: left !important;
  }
  .consent-text {
    display: flex !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .hero-badge, .hero-ctas, .hero-trust {
    justify-content: center !important;
    text-align: center !important;
  }
  .hero-trust {
    flex-direction: column !important;
    gap: 12px !important;
  }
  
  /* Image scaling */
  .hero-visual, .hero-student-photo {
    max-width: 100% !important;
    margin: 20px auto 0 !important;
  }
  .hero-float-card {
    display: none !important; /* Hide floating cards on mobile to reduce clutter */
  }
  
  /* Accordion spacing */
  .accordion-trigger {
    padding: 16px 20px !important;
  }
  .accordion-content-inner {
    padding: 0 20px 20px !important;
  }

  /* Headings size normalization to avoid clipping */
  .hero h1, .loc-hero h1, .prog-hero h1, .blog-hero h1, .page-hero h1 {
    font-size: 32px !important;
    line-height: 1.15 !important;
  }
  .about h2, .about-section h2, .about-grid h2, .contact-section h2 {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }

  /* Form & register optimization */
  .app-header {
    padding: 60px 20px 30px !important;
  }
  .app-logo {
    top: 15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    height: 40px !important;
  }
  .app-title {
    font-size: 24px !important;
    margin-top: 16px !important;
  }
  .section-head {
    margin: 0 !important;
    padding: 12px 20px !important;
  }
  .section-body {
    padding: 20px !important;
  }
  .btn-submit, .wpcf7-submit, input[type="submit"].wpcf7-submit {
    width: 100% !important;
    padding: 16px 20px !important;
    font-size: 15px !important;
    background: var(--o) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    font-family: inherit !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all .25s !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    box-shadow: 0 4px 14px rgba(246,120,31,.3) !important;
    text-align: center !important;
  }
  .wpcf7-submit:hover, input[type="submit"].wpcf7-submit:hover, .btn-submit:hover {
    background: var(--o2) !important;
    box-shadow: 0 6px 20px rgba(246,120,31,.4) !important;
    transform: translateY(-1px) !important;
  }

  /* Blog featured item */
  .featured-post {
    grid-template-columns: 1fr !important;
  }
  .featured-img {
    min-height: 250px !important;
  }
  .featured-body {
    padding: 24px 20px !important;
  }
}

/* Stacking small newsletter inputs vertically on very narrow viewports */
@media(max-width: 480px) {
  .newsletter-form {
    flex-direction: column !important;
    border: none !important;
    background: transparent !important;
    gap: 12px !important;
  }
  .newsletter-form input {
    border: 1.5px solid var(--line) !important;
    border-radius: 12px !important;
    background: #fff !important;
    width: 100% !important;
  }
  .newsletter-form button {
    padding: 14px 20px !important;
    border-radius: 12px !important;
    justify-content: center !important;
    width: 100% !important;
  }
}

/* ─── NEW PROGRAM REDESIGN COMPONENTS ────────────────────────────────────────── */
.prog-hero-new {
  position: relative;
  background: linear-gradient(135deg, rgba(2, 30, 48, 0.85) 0%, rgba(2, 30, 48, 0.7) 100%), 
              url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=80') center/cover no-repeat;
  padding: 60px 0 80px;
  color: #fff;
}
.prog-hero-new.digital-marketing {
  background: linear-gradient(135deg, rgba(2, 30, 48, 0.85) 0%, rgba(2, 30, 48, 0.7) 100%), 
              url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1600&q=80') center/cover no-repeat;
}
.prog-hero-new .wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-left h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-buttons .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all 0.25s;
}
.hero-buttons .btn-call:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.internal-nav-new {
  background: #05A3DA;
  border-bottom: 3px solid #0383B0;
  position: sticky;
  top: 70px;
  z-index: 90;
}
.internal-nav-wrap-new {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 24px;
  height: 50px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.internal-nav-wrap-new::-webkit-scrollbar {
  display: none;
}
.internal-nav-wrap-new a {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.internal-nav-wrap-new a:hover {
  opacity: 1;
}

.about-new {
  padding: 80px 0;
  background: #fff;
}
.about-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-desc-new h2 {
  font-size: 32px;
  color: #021E30;
  margin-bottom: 20px;
  font-weight: 700;
}
.about-desc-new p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 24px;
}
.about-img-new img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.salary-section-new {
  padding: 80px 0;
  background: #F8FAFC;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.salary-section-new h2 {
  font-size: 32px;
  color: #021E30;
  margin-bottom: 12px;
  font-weight: 700;
}
.salary-section-new p {
  font-size: 15px;
  color: var(--ink2);
  max-width: 700px;
  margin: 0 auto 36px;
}
.salary-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}
.salary-card-new {
  background: #fff;
  border: 3.5px solid #05A3DA;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.salary-card-new:hover {
  transform: translateY(-4px);
}
.salary-card-new .rate {
  font-size: 44px;
  font-weight: 800;
  color: #05A3DA;
  line-height: 1.1;
  margin-bottom: 8px;
}
.salary-card-new .lbl {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.course-info-section {
  padding: 80px 0;
  background: #fff;
}
.course-info-section h2 {
  font-size: 32px;
  color: #021E30;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}
.course-info-accordion {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-acc-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.info-acc-trigger {
  background: #05A3DA;
  color: #fff;
  padding: 20px 28px;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.info-acc-trigger i {
  transition: transform 0.3s;
}
.info-acc-item.active .info-acc-trigger i {
  transform: rotate(45deg);
}
.info-acc-content {
  display: none;
  background: #fff;
  padding: 32px;
  border-top: 1px solid var(--line);
}
.info-acc-item.active .info-acc-content {
  display: block;
}

.nested-acc-item {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.nested-acc-trigger {
  background: #fff;
  padding: 16px 20px;
  font-size: 14.5px;
  font-weight: 700;
  color: #021E30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.nested-acc-trigger i {
  transition: transform 0.3s;
}
.nested-acc-item.active .nested-acc-trigger i {
  transform: rotate(45deg);
}
.nested-acc-content {
  display: none;
  padding: 18px 20px;
  background: var(--off);
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.6;
  border-top: 1px solid var(--line);
}
.nested-acc-item.active .nested-acc-content {
  display: block;
}

.opps-section {
  padding: 80px 0;
  background: #F8FAFC;
  border-top: 1px solid var(--line);
}
.opps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.opps-col {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.opps-col h3 {
  font-size: 20px;
  color: #021E30;
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 2px solid #05A3DA;
  padding-bottom: 12px;
}
.opps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.opps-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--ink2);
}
.opps-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #05A3DA;
  border-radius: 50%;
}

.scholarship-section {
  padding: 80px 0;
  background: #fff;
}
.scholarship-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.scholarship-content h2 {
  font-size: 32px;
  color: #021E30;
  margin-bottom: 20px;
  font-weight: 700;
}
.scholarship-content p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 24px;
}
.scholarship-img img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.brochure-section {
  background: #05A3DA;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.brochure-section h2 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 700;
}
.brochure-section p {
  font-size: 15px;
  margin-bottom: 24px;
  opacity: 0.9;
}
.brochure-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.brochure-ctas .btn {
  box-shadow: none !important;
}

@media(max-width: 900px) {
  .prog-hero-new .wrap, .about-grid-new, .opps-grid, .scholarship-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .opps-col {
    padding: 24px;
  }
}
@media(max-width: 768px) {
  .prog-hero-new {
    padding: 40px 0 !important;
  }
  .internal-nav-new {
    top: 60px !important;
  }
  .salary-grid-new {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .info-acc-content {
    padding: 20px !important;
  }
}

/* ─── Realignment Component Styles ─────────────────────────────────────────── */
.hero-stats-banner {
  background: linear-gradient(135deg, #67CDEF 0%, #05A3DA 50%, #0383B0 100%);
  color: #fff;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  position: relative;
  z-index: 10;
}
.hero-stats-banner .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  text-align: center;
  align-items: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.hero-stat-col {
  border-right: 1px solid rgba(2, 30, 48, 0.15);
}
.hero-stat-col:last-child {
  border-right: none;
}
.hero-stat-col .lbl {
  font-size: 11px;
  font-weight: 700;
  color: #021E30;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.hero-stat-col .val {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(2, 30, 48, 0.15);
}
.hero-stat-col .val a {
  text-decoration: underline;
  color: #fff;
}
.hero-stat-col .val a:hover {
  opacity: 0.9;
}

.brochure-wrap {
  padding: 0 40px;
  position: relative;
  z-index: 20;
  margin-top: -60px;
}
.brochure-card {
  background: #fff;
  border-radius: var(--r3);
  padding: 52px 60px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.brochure-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5,165,221,0.06) 0%, transparent 70%);
}
.brochure-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.brochure-card h2 em {
  color: var(--o);
  font-style: normal;
}
.brochure-card p {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.6;
}
.brochure-card-ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 5;
}
.brochure-card-ctas .btn {
  font-size: 13.5px;
  font-weight: 700;
  padding: 14px 24px;
}

@media(max-width: 900px) {
  .brochure-card {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 24px;
  }
  .brochure-card-ctas {
    justify-content: center;
  }
}
@media(max-width: 768px) {
  .brochure-wrap {
    padding: 0 20px;
  }
  .brochure-card {
    padding: 28px 24px;
  }
  .hero-stats-banner .wrap {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
  }
}
@media(max-width: 480px) {
  .hero-stats-banner .wrap {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .hero-stat-col {
    border-right: 1px solid rgba(255,255,255,0.3) !important;
  }
  .hero-stat-col:nth-child(even) {
    border-right: none !important;
  }
}
@media(max-width: 480px) {
  .brochure-card-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}



