/* =========================================================
   1) BRAND TOKENS + TYPOGRAPHY
   ========================================================= */
:root {
  --brand-navy: #13528d;
  --brand-navy-500: #1f6fb8; /* added because you reference it */
  --brand-navy-800: #091933;
  --brand-navy-900: #061226;

  --brand-yellow: #ffd43b;
  --brand-yellow-600: #e6bf2f;
  --brand-yellow-700: #c9a726;

  --text-on-navy: #ffffff;
  --text-on-light: #0b2a4a;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", Times, serif;

  --radius: 18px;

  --base-font-size: 16px;
  --body-line: 1.65;
  --muted-on-dark: rgba(255,255,255,.78);
  --muted-on-light: rgba(11,42,74,.72);

  --shadow-soft: 0 12px 32px rgba(0,0,0,.18);
  --shadow-hover: 0 18px 48px rgba(0,0,0,.22);
}

/* =========================================================
   2) BASE / RESET
   ========================================================= */
html, body {
  font-family: var(--font-sans);
  font-size: var(--base-font-size);
  line-height: var(--body-line);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: linear-gradient(180deg, var(--brand-navy-900) 0%, var(--brand-navy) 100%);
  margin: 0;
  padding: 0;
  color: var(--text-on-navy);
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: .2px;
}

p { margin-bottom: 1rem; }

/* =========================================================
   3) SECTION UTILITIES
   ========================================================= */
.section-pad { padding: 4rem 0; }
.section-pad-sm { padding: 2rem 0; }

@media (max-width: 575.98px) {
  .display-6 { font-size: 1.75rem; }
  .section-pad { padding: 3rem 0; }
}

/* =========================================================
   4) NAVBAR
   ========================================================= */
.navbar {
  --bs-navbar-color: rgba(255, 255, 255, 0.92);
  --bs-navbar-hover-color: var(--brand-yellow);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-active-color: var(--brand-yellow);
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: var(--brand-yellow);
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.35);
  --bs-navbar-toggler-focus-width: 0.15rem;

  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-navy-800) 100%);
  backdrop-filter: blur(6px);
}



.navbar .nav-link { font-weight: 600; letter-spacing: .25px; }
.navbar .nav-link.active, .navbar .nav-link.show { color: var(--brand-yellow) !important; }
.navbar .navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(255, 212, 59, .45); }
.navbar.sticky-top { z-index: 1100; }

.logo-img { height: 120px; width: auto; object-fit: contain; }
@media (max-width: 575.98px) { .logo-img { height: 32px; } }

.social-link {
  color: var(--brand-yellow); 
  font-size: 1.3rem;
  transition: color .3s ease, transform .2s ease;
}
.social-link:hover { color: var(--brand-yellow-700); transform: translateY(-3px); }

/* =========================================================
   5) BUTTONS — MATCH THE BENEFITS BUTTON STYLE (DARK + YELLOW)
   EXCEPT:
   - About page green “Contact me” button (leave alone)
   - White hero header buttons (leave alone)
   ========================================================= */

/* sizing */
.btn,
.btn-contact,
.btn-outline-light,
.navbar .btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  line-height: 1;
  min-height: 48px;
}

.btn-sm { min-height: 40px; }
.btn-lg { min-height: 56px; }


.btn,
.btn-primary,
.btn-secondary,
.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-light,
.btn-primary-soft,
.btn-outline-navy,
.insights-controls .btn,
.services-tabs .btn,
button.btn {
  background: rgba(9,25,51,.70) !important;
  color: #fff !important;
  border: 2px solid rgba(255,212,59,.60) !important;
  border-radius: 999px !important;
  padding: .75rem 1.5rem;
  font-weight: 800 !important;
  letter-spacing: .2px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline-primary:hover,
.btn-outline-secondary:hover,
.btn-outline-light:hover,
.btn-primary-soft:hover,
.btn-outline-navy:hover,
.insights-controls .btn:hover,
.services-tabs .btn:hover,
button.btn:hover {
  background: var(--brand-yellow-600) !important;
  color: var(--brand-navy-800) !important;
  transform: translateY(-2px);
  border-color: rgba(255,212,59,.80) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}


.btn:focus-visible,
button.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 .22rem rgba(255,212,59,.22), 0 14px 30px rgba(0,0,0,.22);
}


.btn-contact {
  background: var(--brand-navy-800) !important;
  color: #fff !important;
  border: 2px solid rgba(255,212,59,.60) !important;
  font-weight: 800;
  border-radius: 999px;
  padding: .75rem 1.5rem;
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
}
.btn-contact:hover {
  background: var(--brand-yellow-600) !important;
  color: var(--brand-navy-800) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  border-color: rgba(255,212,59,.85) !important;
}
.navbar .btn-contact { padding: .6rem 1.1rem; min-height: 40px; }


.hero a.btn,
.hero .btn,
.hero .btn-contact,
.hero .btn-outline-light {
  background: #fff !important;
  color: var(--brand-navy-800) !important;
  border: 1px solid rgba(255,255,255,.85) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.hero a.btn:hover,
.hero .btn:hover,
.hero .btn-contact:hover,
.hero .btn-outline-light:hover {
  background: var(--brand-yellow-600) !important;
  color: var(--brand-navy-800) !important;
  border-color: rgba(255,212,59,.85) !important;
}


.about-stats .btn-contact {
  background: navy;
  border-color: #c9a726;
  border-style: inherit;
  color: #ffffff !important;
  border: 1px solid rgba(243, 247, 11, 0.822) !important;
}
.about-stats .btn-contact:hover {
  background: #07943c !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  border: 1px solid #07943c !important;

}

/* =========================================================
   6) HERO (VIDEO BACKGROUND)
   ========================================================= */


.hero {
  position: relative;
  min-height: clamp(70vh, 80vh, 900px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* If the hero also has .section-pad, stop padding pushing content down */
.hero.section-pad {
  padding-top: 0;
  padding-bottom: 0;
}

/* VIDEO BACKGROUND (ALL PAGES) */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  filter: saturate(.9) contrast(1.05);
  pointer-events: none;
}

/* CONTENT ABOVE VIDEO */
.hero .container,
.hero .container-xl {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* TINT LAYER */
.hero-video-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* =========================================================
   HERO SCROLL INDICATOR
   ========================================================= */
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 1.4 r;
  text-decoration: none;
  transition: transform .25s ease, opacity .25s ease;
  color: #09347e;
  opacity: 1;
  margin-left: 1%;
  white-space: nowrap;
  text-shadow:
    -1px -1px 0 #d8ab08,
     1px -1px 0 #d8ab08,
    -1px  1px 0 #d8ab08,
     1px  1px 0 #d8ab08,
     0 0 3px rgba(255, 216, 77, 0.6);
}

.hero-scroll i {
  font-size: 1.8rem;
  animation: hero-bounce 1.8s infinite;
}

.hero-scroll:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

@keyframes hero-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll i { animation: none; }
}

/* Mobile: move hero scroll down so it doesn't clash with hero text */
@media (max-width: 575.98px) {
  .hero-scroll {
    bottom: 12px; /* was 44px */
  }

  .hero {
    padding-bottom: 5.5rem; /* creates space for arrow + text */
  }
}

/* Courses page needs a bit more room */
@media (max-width: 575.98px) {
  body.courses .hero {
    padding-bottom: 6.5rem;
  }
}

/* =========================================================
   PAGE-SPECIFIC FRAMING
   ========================================================= */
body.courses .hero-video-bg { object-position: center 18%; }
body.home .hero-video-bg { object-position: center center; }

.hero-video-tint { position: absolute; inset: 0; background: rgba(9, 50, 84, .55); z-index: 2; }

@keyframes heroPanUp {
  from { transform: translate(-50%, -60%); }
  to   { transform: translate(-50%, -40%); }
}

@media (prefers-reduced-motion: reduce) { .hero-video-bg { display: none; } }
@media (max-width: 991px) { .hero { padding: 3.5rem 0; } }

/* =========================================================
   7) COMPONENTS (PANEL / BADGE)
   ========================================================= */
.panel {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
}
.panel ul li { margin-bottom: .35rem; }

.badge-brand {
  background: var(--brand-yellow);
  color: #111;
  font-weight: 800;
  border-radius: 999px;
}

/* =========================================================
   8) SECTION: BG NAVY SOFT
   ========================================================= */
section.bg-navy-soft {
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-navy-800) 100%);
  color: #fff;
  position: relative;
}

section.bg-navy-soft::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,212,59,.35), transparent);
}

section.bg-navy-soft h2,
section.bg-navy-soft h3,
section.bg-navy-soft p {
  color: #fff;
}

section.bg-navy-soft .bg-white {
  background: linear-gradient(180deg, #f4f9ff 0%, #e7f1fb 100%);
  border: 1px solid rgba(19,82,141,.25);
  color: #0b2a4a;
  box-shadow:
    0 18px 40px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.7);
  transition: transform .25s ease, box-shadow .25s ease;
}

section.bg-navy-soft .bg-white h3 { color: #0b2a4a; font-weight: 700; }
section.bg-navy-soft .bg-white p  { color: rgba(11,42,74,.78); }

section.bg-navy-soft .bg-white:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 60px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.85);
}

/* =========================================================
   9) FOOTER
   ========================================================= */
.footer-yellow {
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-navy-800) 100%);
  border: 1px solid rgba(201,167,38,.55);
  border-style: groove;
  color: #ffffff;
  font-weight: 500;
  min-height: 10vh;
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

.footer-yellow a {
  color: #fff;
  margin-right: 1rem;
  font-weight: 600;
  transition: transform 0.3s, color 0.3s;
  text-decoration: none;
}
.footer-yellow a:hover { color: #FFD700; transform: translateY(-1px); }

/* =========================================
   COURSES – COLLAPSIBLE OFFER CARDS
   ========================================= */

body.courses .pro-card.is-collapsible{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: background .25s ease, border-color .25s ease, transform .2s ease;

  height: 100%;
  display: flex;
  flex-direction: column;
}

body.courses .pro-card-header{
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: .9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

body.courses .pro-card-title{
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: .95rem;
}

/* icon pill */
body.courses .pro-card-title .feature-icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
}

body.courses .pro-card-chevron{
  transition: transform .25s ease;
  opacity: .9;
}

/* COLLAPSED STATE */
body.courses .pro-card-body{
  max-height: 0;
  overflow: hidden;
  padding: 0 1.1rem;
  color: rgba(255,255,255,.85);
  transition: max-height .35s ease, padding .3s ease;
}

/* OPEN STATE */
body.courses .pro-card.is-open{
  background: linear-gradient(
    180deg,
    rgba(7,148,60,.95),
    rgba(5,110,45,.95)
  );
  border-color: rgba(255,255,255,.30);
}

body.courses .pro-card.is-open .pro-card-chevron{
  transform: rotate(180deg);
}

body.courses .pro-card.is-open .pro-card-body{
  padding: .75rem 1.1rem 1rem;
}

body.courses .pro-card.is-collapsible:not(.is-open):hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.28);
}

/* =========================================================
   10) HOME PAGE ONLY (index.html)
   ========================================================= */
body.home { color: #ffffff; }

body.home .text-muted,
body.home .text-secondary {
  color: var(--muted-on-dark) !important;
}

body.home .card,
body.home .trust-pill,
body.home .pro-card,
body.home .image-card {
  color: var(--text-on-light);
}

body.home .card .text-muted,
body.home .trust-pill .text-muted,
body.home .pro-card .text-muted,
body.home .image-card .text-muted {
  color: var(--muted-on-light) !important;
}

body.home h2.section-title { letter-spacing: .2px; }
body.home p { font-size: 1.4rem; }

/* Home: Process section */
body.home #how { color: #fff; }



body.home #how .step-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
body.home #how .step-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
body.home #how .step-card .text-muted { color: var(--muted-on-dark) !important; }

body.home #how .step-num {
  color: var(--brand-yellow);
  background: rgba(255,212,59,.14);
  border: 1px solid rgba(255,212,59,.35);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  font-weight: 800;
}

/* Home: About preview widening */
@media (min-width: 992px) {
  #about-preview .col-lg-6 { flex: 0 0 95%; max-width: 95%; }
  #about-preview p { max-width: 95ch; }
}

body.home h1,
body.home h2,
body.home .display-6,
body.home .section-title,
body.home .lead,
body.home #about-preview .text-muted,
body.home #about-preview p,
body.home #about-preview li {
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

/* =========================================================
   11) CHATBOT
   ========================================================= */
.chatbot-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-yellow);
  color: #000;
  border: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.chatbot-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  background: var(--brand-yellow-600);
}

.chatbot-window {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 1200;
  width: 320px;
  max-height: 60vh;
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

.chatbot-header {
  padding: .75rem 1rem;
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-navy-800) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bot-avatar-header {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--brand-yellow);
}

.chatbot-close {
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
}

.chatbot-messages {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
  background: #f7f9fc;
}

.chat-msg {
  padding: .6rem .8rem;
  border-radius: 12px;
  margin-bottom: .6rem;
  max-width: 85%;
  font-size: .95rem;
  line-height: 1.4;
}

.chat-msg.bot {
  background: #e9f2ff;
  color: #0b2a4a;
  border: 1px solid rgba(19,82,141,.12);
}

.chat-msg.user {
  background: #ffffff;
  color: #111;
  border: 1px solid rgba(0,0,0,.08);
  margin-left: auto;
}

.chat-msg.typing { font-style: italic; opacity: .75; }

.chatbot-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem;
  padding: .8rem;
  border-top: 1px solid rgba(0,0,0,.06);
  background: #ffffff;
}

.chatbot-input input {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: .5rem .75rem;
  font-size: .95rem;
}

.chatbot-input input:focus {
  outline: none;
  border-color: var(--brand-yellow);
}

@media (max-width: 420px) {
  .chatbot-window { right: 12px; left: 12px; width: auto; }
}

/* =========================================================
   12) ABOUT PAGE (PORTRAIT + STARS + LAYOUT)
   ========================================================= */
.portrait-wrapper { position: relative; display: inline-block; }

.star-rating {
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 24px;
  pointer-events: none;
  overflow: hidden;
}

.star-icon {
  position: absolute;
  left: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1;
  color: #ffd43b;
  text-shadow: 0 0 12px rgba(255, 212, 59, 0.7);
  opacity: 0;
  --star-size: 1em;
  animation: starSettle 0.9s ease-out forwards;
}

.star-icon:nth-child(1){ --i:0; animation-delay: .00s; }
.star-icon:nth-child(2){ --i:1; animation-delay: .10s; }
.star-icon:nth-child(3){ --i:2; animation-delay: .20s; }
.star-icon:nth-child(4){ --i:3; animation-delay: .30s; }
.star-icon:nth-child(5){ --i:4; animation-delay: .40s; }

@keyframes starSettle {
  from { top: -24px; opacity: 0; }
  to   { top: calc(var(--i) * ((100% - var(--star-size)) / 4)); opacity: 1; }
}

.about-portrait {
  max-width: 260px;
  border: 3px solid rgba(255,255,255,.35);
  background-color: rgba(190,190,190,.25);
  border-radius: calc(var(--radius) + 6px);
}

.hero-portrait { max-height: 420px; object-fit: cover; }

.section-contrast { color: #ffffff; }
.section-contrast .prose,
.section-contrast .prose p,
.section-contrast .prose li { color: #ffffff; }

.section-contrast a {
  color: #ffffff;
  text-decoration-color: rgba(255,255,255,.45);
}
.section-contrast a:hover {
  color: var(--brand-yellow);
  text-decoration-color: var(--brand-yellow);
}

.about-stats {
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-navy-800) 100%);
  border: 1px solid rgba(255,212,59,.45);
  color: #ffffff;
  backdrop-filter: blur(2px);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
}

.prose {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.75;
  color: #ffffff;
}
.prose p { margin-bottom: 1.25rem; }
.prose p:first-of-type { font-size: 1.15rem; font-weight: 500; }

@media (max-width: 768px) {
  .prose { font-size: 1rem; line-height: 1.65; }
}

.about-stats h3,
.about-stats li { color: #ffffff; }
.about-stats ul li { margin-bottom: .4rem; }

.about-cta-box {
  border: 1px solid rgba(255,212,59,.45);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  border-radius: calc(var(--radius) + 6px);
}

.quote-card {
  background: linear-gradient(180deg, #fff8b7 0%, #ffd95a 100%);
  border: 2px inset #0b2a4a;
  border-radius: calc(var(--radius) + 6px);
}
.section-contrast .quote-card,
.section-contrast .quote-card p { color: #0b2a4a !important; }

/* Timeline alignment */
.about-cta-box .badge.rounded-circle{
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  padding: 0;
}

.about-cta-box .text-white-75 > .mb-3,
.about-cta-box .text-white-75 > div:last-child{
  min-height: 56px;
  margin-bottom: 18px !important;
}

.about-cta-box .about-timeline-line{
  height: 56px;
  margin: 0;
  border-left: 2px solid rgba(255,255,255,.55);
}

/* =========================================================
   13) OTHER PAGE BITS
   ========================================================= */
.image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.6;
  border: 2px solid var(--brand-yellow-700);
  border-radius: calc(var(--radius) + 6px);
}

#services .pro-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(11,42,74,.12);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
#services .pro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(0,0,0,.16);
  border-color: rgba(255,212,59,.55);
}

.panel ul {
  padding-left: 1.25rem;
  margin: 0;
}

.panel ul li { color: #fff; }
.panel ul li::marker { color: var(--brand-yellow); }

.facts-list {
  padding-left: 1.25rem;
  background-color: #13528d;
}

/* =========================================================
   13) Academy
   ========================================================= */
body.courses .hero-video-bg{
  inset: 0;
  width: 100%;
  height: 100%;
  top: auto; left: auto;
  transform: none;
  object-fit: cover;
  object-position: center 18%;
  animation: none;
}

body.courses .panel .form-label { color: rgba(255,255,255,.92); font-weight: 600; }
body.courses .panel .form-control,
body.courses .panel .form-select,
body.courses .panel textarea{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(11,42,74,.18);
}
body.courses .panel .form-control:focus,
body.courses .panel .form-select:focus,
body.courses .panel textarea:focus{
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 .2rem rgba(255,212,59,.25);
}

.navbar .navbar-brand span {
  font-weight: 800;
  font-family: 'Gravitas One', cursive;
  letter-spacing: 0.6px;
  font-size: 1rem;
  color: #09347e;
  opacity: 1;
  margin-left: 1%;
  white-space: nowrap;
  text-shadow:
  -1px -1px 0 #d8ab08,
   1px -1px 0 #d8ab08,
  -1px  1px 0 #d8ab08,
   1px  1px 0 #d8ab08,
   0 0 3px rgba(255, 216, 77, 0.6);
}


/* Services page pricing cards only */
#costs .cost-card {
  background: linear-gradient(180deg, rgba(40,110,170,.95), rgba(25,75,125,.95)) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 22px !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.25) !important;
}

/* Services page: "Why Mediation May Be Needed" box */
.service-card{
  background: linear-gradient(180deg, rgba(40,110,170,.95), rgba(25,75,125,.95)) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 22px !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.25) !important;
}
.service-card h3,
.service-card p,
.service-card li,
.service-card .text-muted{
  color: rgba(255,255,255,.9) !important;
}

/* =========================================================
   BENEFITS: INSIGHTS / STATISTICS SECTION
   ========================================================= */
.insights { position: relative; }

.insights::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,212,59,.30), transparent);
}

.insights-wrap {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  backdrop-filter: blur(3px);
}

@media (max-width: 575.98px) {
  .insights-wrap { padding: 1.25rem; }
}

.insights-head p {
  color: var(--muted-on-dark);
  max-width: 80ch;
}

.insights-controls {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;

  padding: 1rem;
  border-radius: calc(var(--radius));
  background: rgba(6,18,38,.28);
  border: 1px solid rgba(255,255,255,.14);
}

.insights-toggle.is-active,
.insights-filter.is-active {
  box-shadow: 0 0 0 .2rem rgba(255,212,59,.22);
  border-color: rgba(255,212,59,.65) !important;
}

.insights-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
}

@media (max-width: 992px) {
  .insights-grid { grid-template-columns: 1fr; }
}

.insights-chart {
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(9,25,51,.30);
}

.insights-chart-inner { padding: 1rem; }

.insights-chart-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  letter-spacing: .2px;
  color: #fff;

  padding: .75rem 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(19,82,141,.55), rgba(9,25,51,.35));
  border: 1px solid rgba(255,255,255,.14);
}

.insights-chart-placeholder {
  margin-top: 1rem;
  min-height: 420px;
  border-radius: 16px;

  display: grid;
  place-items: center;
  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.04)
  );
  border: 2px dashed rgba(255,212,59,.35);
  color: rgba(255,255,255,.85);
  padding: 1rem;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .insights-chart-placeholder { min-height: 360px; }
}

#chart-secondary .insights-chart-placeholder { min-height: 260px; }

#bar-chart {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: 380px;
  display: block;
  padding: 0;
  overflow: hidden;
}

#bar-chart .modebar { display: none !important; }

#bar-chart:not(.has-plot) {
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 2px dashed rgba(255,212,59,.35);
  border-radius: 16px;
  color: rgba(255,255,255,.85);
}

#bar-chart.has-plot { background: transparent; border: 0; }

#bar-chart .plotly,
#bar-chart .plotly-graph-div,
#bar-chart .js-plotly-plot,
#bar-chart .plot-container,
#bar-chart .svg-container {
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 576px) {
  .insights-chart-inner { padding: .75rem; }
  .insights-chart-title { padding: .65rem .85rem; }
}
#bar-chart { height: auto !important; }

.insights-stats{ margin-top: 1.25rem !important; display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 1rem !important; }
@media (max-width: 992px){ .insights-stats{ grid-template-columns: 1fr !important; } }

.insights-stat{
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06)) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 18px !important;
  padding: 1rem 1.1rem !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.18) !important;
}

.insights-stat-kicker{
  color: var(--brand-yellow, #ffd43b) !important;
  font-weight: 800 !important;
  letter-spacing: .3px !important;
  text-transform: uppercase !important;
  font-size: .8rem !important;
}

.insights-stat-value{
  font-family: var(--font-serif, "Playfair Display", serif) !important;
  font-size: 2rem !important;
  line-height: 1.1 !important;
  margin-top: .3rem !important;
  margin-bottom: .25rem !important;
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.25) !important;
}

.insights-stat-note{ color: rgba(255,255,255,.78) !important; font-size: .95rem !important; }

/* =========================================================
   COLAB PAGE ONLY — MAKE BOXES ACTUALLY VISIBLE
   ========================================================= */
body.colab #collaborations .colab-box{
  border: 3px solid rgba(255, 212, 59, 0.55) !important;
  outline: 2px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 22px 70px rgba(0,0,0,.45) !important;
  border-radius: 22px !important;
}

body.colab #collaborations .colab-box-inner{
  background: #13528d !important;
  border: 2px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 14px 40px rgba(0,0,0,.35) !important;
  border-radius: 20px !important;
  position: relative;
  overflow: hidden;
}

body.colab #collaborations .colab-box-inner::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 5px;
  background: linear-gradient(180deg, rgba(255,212,59,.85), rgba(255,212,59,.15));
}

body.colab #collaborations .container-xl{
  padding-left: 1rem;
  padding-right: 1rem;
}

.insights-note-header {
  color: var(--brand-yellow);
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: .35rem;
}

/* Services cards styling */
#services .card.pro-card {
  background: #13528d !important;
  border: 2px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 14px 40px rgba(0,0,0,.35) !important;
  border-radius: 20px !important;
  position: relative;
  overflow: hidden;
  color: var(--brand-yellow-700);
}

#services .card.pro-card .card-body { background-color: transparent !important; }

#services .card.pro-card .text-muted { color: rgba(255, 255, 255, 0.85) !important; }

#services .card.pro-card .card-footer a { color: var(--brand-yellow-700); }

body.services #services,
body.services #services .panel,
body.services #services .tab-content,
body.services #services p,
body.services #services li,
body.services #services h2,
body.services #services h3,
body.services #services h4,
body.services #services .h3,
body.services #services .h4 {
  font-family: var(--font-sans) !important;
}

body.services #services h2,
body.services #services h3,
body.services #services h4,
body.services #services .h3,
body.services #services .h4 {
  font-weight: 800 !important;
  letter-spacing: .1px;
}

body.services #costs.section-pad { padding-bottom: 1.5rem; }
body.services #services.section-pad { padding-top: 1.5rem; }

/* =========================================
   PARTNERS MINI CAROUSEL (looping logos)
   ========================================= */
.partners-mini{ margin-top: 1rem; }
.partners-mini-head{ margin-bottom: .65rem; }

.partners-mini-title{
  font-weight: 800;
  letter-spacing: .28em;
  font-size: .78rem;
  opacity: .85;
  text-transform: uppercase;
}

.partners-mini-link{
  display: inline-block;
  margin-top: .15rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--brand-yellow);
  text-decoration: none;
}
.partners-mini-link:hover{
  color: var(--brand-yellow-600);
  text-decoration: underline;
}

.partner-marquee{
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(255,212,59,.45);
  background: rgba(6,18,38,.18);
  padding: 1.05rem 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.partner-marquee::before,
.partner-marquee::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 100px;
  z-index: 2;
  pointer-events:none;
}
.partner-marquee::before{
  left:0;
  background: linear-gradient(90deg, rgba(6,18,38,.90), rgba(6,18,38,0));
}
.partner-marquee::after{
  right:0;
  background: linear-gradient(270deg, rgba(6,18,38,.90), rgba(6,18,38,0));
}

.partner-marquee-track{
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: partnerScroll 45s linear infinite;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  will-change: transform;
}
.partner-marquee:hover .partner-marquee-track{ animation-play-state: paused; }

.partner-logo{
  flex: 0 0 auto;
  min-width: 200px;
  height: 90px;
  display: grid;
  place-items: center;
  padding: .35rem .6rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  letter-spacing: .2px;
  white-space: nowrap;
}

.partner-logo img{
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.25));
}

@keyframes partnerScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 575.98px){
  .partner-logo{
    min-width: 160px;
    height: 64px;
    padding: .25rem .45rem;
  }
  .partner-logo img{
    height: 56px;
    max-width: 160px;
  }
  .partner-marquee-track{
    animation-duration: 75s;
    gap: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .partner-marquee-track{ animation: none; }
}

body.colab .colab-card .partners-mini{ display: block !important; width: 100% !important; max-width: 100% !important; flex: 1 1 auto !important; align-self: stretch !important; }
body.colab .colab-card .partners-mini-head{ display: block !important; width: 100% !important; max-width: 100% !important; text-align: center !important; }
body.colab .colab-card .partners-mini .partner-marquee{ display: block !important; width: 100% !important; max-width: 100% !important; }
body.colab .colab-card{ min-width: 0 !important; }

/* =========================================
   PARTNER LOGO GRID (clickable)
   ========================================= */
.partner-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.partner-tile{
  position: relative;
  display: grid;
  place-items: center;
  height: 96px;
  padding: .6rem .75rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  text-decoration: none;
  outline: none;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.partner-tile img{
  max-height: 64px;
  width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.18));
}

.partner-tile:hover{
  transform: translateY(-2px);
  border-color: rgba(255,212,59,.55);
  background: rgba(255,255,255,.10);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}

.partner-tile:focus-visible{
  box-shadow: 0 0 0 3px rgba(255,212,59,.35), 0 14px 30px rgba(0,0,0,.25);
  border-color: rgba(255,212,59,.75);
}

.partner-grid-cta{ display: flex; justify-content: flex-start; }

@media (max-width: 991.98px){
  .partner-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 575.98px){
  .partner-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-tile{ height: 86px; }
  .partner-tile img{ max-height: 56px; }
}

.pro-card-body{
  max-height: 0;
  overflow: hidden;
  padding: 0 1.1rem;
  color: rgba(255,255,255,.85);
  transition: max-height .35s ease, padding .3s ease;
}

/* ACTIVE / OPEN STATE */
.pro-card.is-open{
  background: linear-gradient(
    180deg,
    rgba(7,148,60,.95),
    rgba(5,110,45,.95)
  );
  border-color: rgba(255,255,255,.35);
}

.pro-card.is-open .pro-card-body{
  max-height: 200px;
  padding: .75rem 1.1rem 1rem;
}

.pro-card.is-open .pro-card-header i{
  transform: rotate(180deg);
}