.slide-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
    position: relative;
    overflow: hidden;
}

/* Smooth dark gradient overlay */
.slide-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
    transition: all 0.35s ease-in-out;
}

.slide:hover .slide-image::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.6));
}

/* Zoom hover effect */
.slide-image {
    transition: transform 0.5s ease;
}
.slide:hover .slide-image {
    transform: scale(1.05);
}

/* SLIDE CONTENT BEAUTIFICATION */
.slide-content {
    background: #ffffff;
    padding: 18px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
}

.slide:hover .slide-content {
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.12);
}

/* Title styling */
.slide-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #003b80;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Desc text */
.slide-desc {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.45;
    margin-bottom: 12px;
}

/* Read more link */
.slide-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1578be;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.slide-link:hover {
    color: #0a56a1;
    transform: translateX(4px);
}

.slide-link i {
    transition: transform 0.3s ease;
}
.slide-link:hover i {
    transform: translateX(3px);
}

/* BADGE */
.slide-badge {
    background: #1578be;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    position: absolute;
    top: 12px;
    right: 12px;
    color: #fff;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* NAVIGATION ARROWS BEAUTIFICATION */
.slider-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    backdrop-filter: blur(6px);
    color: #1578be;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    cursor: pointer;
    transition: all 0.28s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.slider-nav:hover {
    background: #1578be;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(21,120,190,0.35);
}

/* Prev / Next position */
.slider-nav.prev {
    left: 12px;
}
.slider-nav.next {
    right: 12px;
}

/* Indicator dots */
.indicator {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background: #1578be;
    transform: scale(1.3);
}
/* SLIDE CONTENT – blended background + soft glow */
.slide-content {
    position: relative;
    padding: 18px 18px 16px;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f7ff 45%, #fdecec 100%);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(4px);
    transition: all 0.35s ease;
}

/* subtle light pattern overlay */
.slide-content::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 0% 0%, rgba(21,120,190,0.18), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(212,0,0,0.12), transparent 55%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

/* keep text above the blend */
.slide-content > * {
    position: relative;
    z-index: 1;
}

.slide:hover .slide-content {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

/* title & text stay readable on the blend */
.slide-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #05315b;
    margin-bottom: 8px;
}

.slide-desc {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* link */
.slide-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1578be;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.slide-link:hover {
    color: #0a56a1;
    transform: translateX(4px);
}
.slide-link i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}
.slide-link:hover i {
    transform: translateX(3px);
}

/* ARROWS – red, blue, black gradient */
.slider-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;

    background: linear-gradient(135deg, #d40000, #0051a8, #000000);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.28s ease;
}

.slider-nav i {
    font-size: 0.95rem;
}

.slider-nav.prev {
    left: 12px;
}

.slider-nav.next {
    right: 12px;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    filter: brightness(1.05);
}

/* active indicator tweak to match brand */
.indicator.active {
    background: linear-gradient(135deg, #d40000, #0051a8, #000000);
    transform: scale(1.25);
}
/* Base slide styles for fade transition */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

/* Active slide becomes visible */
.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Remove sliding movement */
.slide.prev, .slide.next {
    transform: none !important;

}
/* Optional: ensure toggler icon shows (pick one: navbar-dark or navbar-light) */
/* ===== Mobile "offcanvas-like" behavior using the SAME #navbarNav ===== */
@media (max-width: 991.98px){

  /* ========== Drawer shell (same as before) ========== */
  .navbar-expand-lg .navbar-collapse,
  .navbar-expand-lg .navbar-collapse.collapse,
  .navbar-expand-lg .navbar-collapse.collapsing,
  .navbar-expand-lg .navbar-collapse.show{
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    height: 100vh !important;
    width: min(88vw, 360px) !important;
    max-width: 360px !important;

    background: #fff !important;      /* mobile background white */
    z-index: 1055 !important;

    /* IMPORTANT: increase top padding to create space for header/logo */
    padding: 92px 18px 18px !important;
    box-shadow: -12px 0 30px rgba(0,0,0,.28) !important;

    margin: 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-expand-lg .navbar-collapse.collapse:not(.show){
    display: block !important;
    transform: translateX(110%) !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .navbar-expand-lg .navbar-collapse.show{
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: transform .28s ease !important;
  }

  .navbar-expand-lg .navbar-collapse.collapsing{
    height: 100vh !important;
    transition: none !important;
    transform: translateX(110%) !important;
    visibility: hidden !important;
  }

  /* ========== Drawer header with logo (no HTML change) ========== */
  .navbar-expand-lg .navbar-collapse::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 78px;
    background: #fff; /* header background */
    border-bottom: 1px solid rgba(0,0,0,.08);

    /* Logo image */
    background-image: url("YOUR_LOGO_URL_HERE");
    background-repeat: no-repeat;
    background-position: 18px center;
    background-size: 150px auto; /* adjust logo size */
  }

  /* Optional: small “Menu” label on the right */
  .navbar-expand-lg .navbar-collapse::after{
    content: "Menu";
    position: absolute;
    top: 26px;
    right: 18px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0,0,0,.55);
  }

  /* ========== Vertical list layout ========== */
  .navbar-expand-lg .navbar-nav{
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .navbar-expand-lg .nav-item,
  .navbar-expand-lg .nav-link{
    width: 100%;
  }

  /* ========== Icon + spacing for links ========== */
  .navbar-expand-lg .nav-link{
    position: relative;
    padding: 12px 12px 12px 44px;  /* left padding for icon */
    border-radius: 10px;
  }

  /* default icon (for any link) */
  .navbar-expand-lg .nav-link::before{
    content: "•";                  /* fallback if you don't want emoji */
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;
    opacity: .75;
  }

  /* Specific icons per item (edit/extend as you like) */
  .navbar-expand-lg .nav-link[href="/"]::before{
    content: "🏠";
  }

  /* Dropdown toggles: About / Media */
  .navbar-expand-lg .nav-item.dropdown > .nav-link::before{
    content: "📌";
  }
  /* If you want different ones per dropdown id: */
  .navbar-expand-lg #aboutDropdown::before{ content: "ℹ️"; }
  .navbar-expand-lg #mediaDropdown::before{ content: "🖼️"; }

  /* Inline dropdowns in drawer */
  .navbar-expand-lg .dropdown-menu{
    position: static !important;
    transform: none !important;
    float: none !important;
    width: 100% !important;

    border: 0 !important;
    padding: 6px 0 10px !important;
    margin: 6px 0 10px !important;
  }

  /* Dropdown items also get icons */
  .navbar-expand-lg .dropdown-item{
    position: relative;
    padding-left: 44px;
  }
  .navbar-expand-lg .dropdown-item::before{
    content: "→";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .65;
  }

  /* Little divider feel between groups (optional) */
  .navbar-expand-lg .nav-item + .nav-item{
    border-top: 1px solid rgba(0,0,0,.06);
  }
  .navbar-expand-lg .nav-item{
    padding-top: 2px;
    padding-bottom: 2px;
  }
}

.nav-drawer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 1050;
}
.nav-drawer-overlay.show{
  opacity: 1;
  pointer-events: auto;
}
body.nav-drawer-open{
  overflow: hidden;
}
@media (max-width: 991.98px){
  .mobile-drawer-header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 14px;
    background: #fff;                 /* you wanted white on mobile */
    border-bottom: 1px solid rgba(0,0,0,.08);
    z-index: 2;
  }

  .mobile-drawer-logo{
    height: 46px;
    width: auto;
    object-fit: contain;
  }

  .mobile-drawer-close{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.12);
    background: transparent;
    font-size: 28px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
  }
}
.navbar-nav > .nav-item:not(:last-child) {
    position: relative;
    margin-right: 0px !important;
    padding-right: 5px !important;
}
/* ===========================
   KLMIS Entry Points (Premium)
   Colors: Blue #1578be | Red #d40000 | Black #000
   =========================== */

.klmis-entrypoints{
  position: relative;
  background: #fff;
}

.klmis-entrypoints::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 18%, rgba(21,120,190,.10), transparent 55%),
    radial-gradient(circle at 92% 78%, rgba(212,0,0,.08), transparent 55%);
  pointer-events:none;
}

.entry-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #000;
  font-size: clamp(1.55rem, 1.1rem + 1vw, 2.1rem);
}

.entry-sub{
  color: rgba(0,0,0,.68);
  max-width: 72ch;
}

.entry-btn-soft{
  border-radius: 999px;
  background: rgba(21,120,190,.10);
  border: 1px solid rgba(21,120,190,.20);
  color: #000;
  font-weight: 800;
  padding: .6rem 1.05rem;
  transition: all .25s ease;
}
.entry-btn-soft:hover{
  background: rgba(21,120,190,.16);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,.10);
}

/* Card */
.entry-card{
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  padding: 18px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* subtle corner accent */
.entry-card::before{
  content:"";
  position:absolute;
  top:-60px;
  right:-60px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle at center, rgba(21,120,190,.18), transparent 62%);
  transform: rotate(12deg);
  pointer-events:none;
}
.entry-card::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #1578be, #d40000, #000);
  opacity: .95;
}

.entry-card:hover{
  transform: translateY(-5px);
  border-color: rgba(21,120,190,.22);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

/* Featured card */
.entry-card-featured{
  border-color: rgba(0,0,0,.10);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}
.entry-card-featured::before{
  background: radial-gradient(circle at center, rgba(212,0,0,.15), transparent 62%);
}

/* top layout */
.entry-card-top{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

/* icon */
.entry-icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(0,0,0,.10);
  flex: 0 0 auto;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}
.entry-icon i{ font-size: 1.25rem; }

/* icon variants */
.entry-icon-blue{
  background: rgba(21,120,190,.12);
  color: #1578be;
}
.entry-icon-red{
  background: rgba(212,0,0,.10);
  color: #d40000;
}
.entry-icon-gradient{
  background: linear-gradient(135deg, rgba(21,120,190,.18), rgba(212,0,0,.12));
  color: #000;
}

/* meta area */
.entry-meta{ flex: 1; min-width: 0; }
.entry-tags{ display:flex; flex-wrap:wrap; gap: 4px; margin-top: 8px; }

/* chip */
.entry-chip{
  display:inline-flex;
  align-items:center;
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .78rem;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.10);
  white-space: nowrap;
}
.entry-chip-blue{
  background: rgba(21,120,190,.10);
  color: #000;
  border-color: rgba(21,120,190,.20);
}
.entry-chip-red{
  background: rgba(212,0,0,.08);
  color: #000;
  border-color: rgba(212,0,0,.18);
}
.entry-chip-gradient{
  background: linear-gradient(135deg, rgba(21,120,190,.12), rgba(212,0,0,.10));
  color: #000;
}

/* pills */
.entry-pill{
  display:inline-flex;
  align-items:center;
  border-radius: 999px;
  padding: .32rem .7rem;
  font-size: .78rem;
  font-weight: 800;
  color: rgba(0,0,0,.85);
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.08);
}
.entry-pill i{ opacity: .85; font-size: .9rem; }

/* title + body */
.entry-h{
  font-weight: 900;
  color: #000;
  letter-spacing: -0.01em;
  margin-top: 14px;
}
.entry-p{
  color: rgba(0,0,0,.70);
  line-height: 1.55;
  font-size: .93rem;
}

/* relevant */
.entry-relevant{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding-top: 10px;
  margin-top: 8px;
  border-top: 1px dashed rgba(0,0,0,.14);
  color: rgba(0,0,0,.62);
  font-size: .82rem;
}
.entry-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 4px;
  background: linear-gradient(135deg, #1578be, #d40000, #000);
  flex: 0 0 auto;
}

/* buttons */

/* @media (max-width: 575.98px){ */
/* ===============================
   PERFECT ALIGNMENT (ALL CARDS)
   =============================== */

/* Make the top area a fixed grid: icon + content */
.entry-card-top{
  display: grid !important;
  grid-template-columns: 58px 1fr;  /* icon | meta */
  gap: 12px;
  align-items: start;
}

/* Force chip row and tag row to always occupy consistent space */
.entry-meta{
  display: grid;
  grid-template-rows: 34px 42px;   /* chip row height | tags row height */
  row-gap: 3px;
}

/* chip row locked */
.entry-chip-row{
  height: 34px;
  display: flex;
  align-items: center;
}

/* tags row locked */
.entry-tags{
  height: 42px;
  display: flex;
  flex-wrap: wrap;
  align-content: center; /* IMPORTANT: centers wraps inside fixed height */
  gap: 8px;
  overflow: hidden;      /* prevents random growth */
}

/* keep pills consistent */
.entry-pill{
  white-space: nowrap;
  line-height: 1.15;
}

/* On small screens allow the tags area to expand naturally */
@media (max-width: 575.98px){
  .entry-meta{ grid-template-rows: auto auto; }
  .entry-tags{ height: auto; overflow: visible; }
}
/* Equal-height cards and pinned button */
.entry-card-eq{
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Button always sits at bottom */
.entry-btn-pin{
  margin-top: auto !important;
}

/* Make the top block consistent across all cards */
.entry-top-eq{
  display: grid !important;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: start;
}

/* Lock tags area to align neatly */
.entry-tags-eq{
  min-height: 48px;            /* consistent space */
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
}

/* Prevent pills from expanding weirdly */
.entry-tags-eq .entry-pill{
  white-space: nowrap;
}

.entry-btn-pin{
  margin-top: auto !important;
}


        /* =========================================================
   KLMIS Entry Modals – Strong override (uses your variables)
   Make sure this CSS loads AFTER bootstrap
========================================================= */

/* Backdrop tint so the popup feels premium */


/* Ensure our modal content styles win */
.modal .entry-modal-content{
  background: linear-gradient(180deg, #ffffff, var(--light-gray)) !important;
  border: 1px solid rgba(33,37,41,.10) !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.22) !important;
}

/* Header: gradient + subtle pattern */
.modal .entry-modal-header{
  background:
    radial-gradient(900px 260px at 12% 0%, rgba(21,120,190,.22), transparent 55%),
    radial-gradient(900px 260px at 88% 0%, rgba(217,83,79,.18), transparent 55%),
    linear-gradient(135deg, rgba(21,120,190,.12), rgba(217,83,79,.08), #ffffff) !important;
  border-bottom: 1px solid rgba(33,37,41,.10) !important;
  padding: 16px 18px !important;
}

/* Title + subtitle */
.modal .entry-modal-header .modal-title{
  color: var(--secondary-blue) !important;
  font-weight: 900 !important;
  letter-spacing: -.02em;
}

.modal .entry-modal-muted{
  color: rgba(33,37,41,.70) !important;
}

/* Close button visibility on light header */
.modal .btn-close.btn-close-white{
  filter: invert(1) grayscale(100%) brightness(35%) !important; /* makes it dark */
  opacity: .75 !important;
}
.modal .btn-close.btn-close-white:hover{
  opacity: 1 !important;
}

/* Hint box */
.modal .entry-modal-hint{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(21,120,190,.07) !important;
  border: 1px solid rgba(21,120,190,.18) !important;
  color: rgba(33,37,41,.82) !important;
  line-height: 1.45;
}

/* Hint icon */
.modal .entry-modal-hint i{
  color: var(--primary-blue) !important;
  margin-top: 2px;
}

/* List wrapper spacing */
.modal .entry-list{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

/* Override Bootstrap list-group-item default white */
.modal .entry-item.list-group-item{
  border-radius: 16px !important;
  border: 1px solid rgba(33,37,41,.10) !important;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(33,37,41,.06) !important;
  padding: 14px 14px !important;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.modal .entry-item.list-group-item:hover{
  transform: translateY(-2px);
  border-color: rgba(21,120,190,.28) !important;
  box-shadow: 0 18px 42px rgba(33,37,41,.10) !important;
}

/* Title + description inside item */
.modal .entry-item-title{
  color: var(--dark-black) !important;
  font-weight: 900 !important;
  letter-spacing: -.01em;
  margin-bottom: 2px;
}

.modal .entry-item-desc{
  color: rgba(33,37,41,.72) !important;
  font-size: .90rem;
}

/* Add a subtle left accent bar to each item */
.modal .entry-item{
  position: relative;
  overflow: hidden;
}

.modal .entry-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-blue), var(--accent-red));
  opacity: .85;
}

/* Footer */
.modal .entry-modal-footer{
  background: var(--light-gray) !important;
  border-top: 1px solid rgba(33,37,41,.10) !important;
  padding: 14px 18px 18px !important;
}

/* Buttons */
.modal .entry-btn-primary-2{
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-red)) !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  box-shadow: 0 14px 30px rgba(21,120,190,.18);
}
.modal .entry-btn-primary-2:hover{ filter: brightness(1.05); }

.modal .entry-btn-soft-2{
  background: #fff !important;
  border: 1px solid rgba(33,37,41,.14) !important;
  color: rgba(33,37,41,.85) !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
}
.modal .entry-btn-soft-2:hover{
  background: rgba(33,37,41,.04) !important;
}

/* Mobile padding */
@media (max-width: 575.98px){
  .modal .entry-modal-header,
  .modal .modal-body,
  .modal .entry-modal-footer{
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}
/* Base */
.btn.entry-btn{
  border-radius: 14px !important;
  border: 1px solid rgba(21,120,190,.28) !important;
  background: rgba(21,120,190,.08) !important;
  color: var(--dark-black) !important;
  font-weight: 900 !important;
  padding: .72rem .95rem !important;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease !important;
  text-decoration: none !important;
}

/* Soft hover */
.btn.entry-btn:hover,
.btn.entry-btn:focus{
  background: rgba(21,120,190,.14) !important;
  border-color: rgba(21,120,190,.45) !important;
  color: var(--secondary-blue) !important;
  box-shadow: 0 6px 14px rgba(21,120,190,.15); /* soft glow, not jump */
}

/* Active */
.btn.entry-btn:active{
  box-shadow: 0 3px 8px rgba(21,120,190,.12);
}


/* ===== Featured Primary Button ===== */
.btn.entry-btn-primary{
  border-radius: 14px !important;
  border: none !important;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-red)) !important;
  color: #fff !important;
  font-weight: 900 !important;
  padding: .75rem .95rem !important;
  transition: box-shadow .25s ease, filter .25s ease !important;
  text-decoration: none !important;
}

/* Elegant glow instead of lift */
.btn.entry-btn-primary:hover,
.btn.entry-btn-primary:focus{
  filter: brightness(1.06);
  box-shadow:
    0 8px 18px rgba(21,120,190,.28),
    0 2px 8px rgba(217,83,79,.18);
}

/* Active */
.btn.entry-btn-primary:active{
  box-shadow:
    0 5px 12px rgba(21,120,190,.22),
    0 2px 6px rgba(217,83,79,.14);
}

 
  /* =========================
   CAREER NAVIGATOR CTA
========================= */
.career-cta {
  background:
    radial-gradient(1000px 500px at 8% 12%, rgba(13,110,253,.22), transparent 55%),
    radial-gradient(800px 450px at 85% 28%, rgba(32,201,151,.15), transparent 60%),
    linear-gradient(180deg, #0b1220 0%, #0f1a33 100%);
  color: #e9eefc;
  position: relative;
  overflow: hidden;
}

.career-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpath d='M0 0H160V160H0z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
}

.cta-wrap {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.03)
  );
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  z-index: 1;
}

/* Small top accent line */
.cta-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, #0d6efd, #20c997);
  border-radius: 2px;
}

.cta-kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(233,238,252,.9);
  opacity: .85;
}

.cta-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(233,238,252,.88);
  max-width: 52ch;
}

.cta-sub {
  color: rgba(233,238,252,.72);
  font-size: .95rem;
}

/* Match site buttons, just refine spacing */
.cta-btn {
  border-radius: 14px;
  padding: .9rem 1.2rem;
  font-weight: 700;
  transition: all .2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
}

/* Keep harmony with your existing outline buttons */
.btn-outline-light {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.cta-note {
  color: rgba(233,238,252,.70);
  font-size: .85rem;
}


/* =========================
   LATEST INSIGHTS SECTION
========================= */
.latest-insights {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1f3a;
}

.section-sub {
  color: #5b667a;
  max-width: 60ch;
}

.link-more {
  text-decoration: none;
  font-weight: 700;
  color: #0d6efd;
}

.link-more:hover {
  text-decoration: underline;
}


/* =========================
   PANELS
========================= */
.insights-panel {
  border: 1px solid rgba(16,24,40,.08);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(16,24,40,.06);
  background: #ffffff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.insights-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(16,24,40,.08);
}

.panel-title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.panel-badge {
  background: rgba(13,110,253,.12);
  color: #0d6efd;
  font-weight: 800;
  padding: .45rem .75rem;
  border-radius: 999px;
}

.panel-badge.alt {
  background: rgba(32,201,151,.14);
  color: #198754;
}


/* =========================
   INSIGHT ITEMS
========================= */
.insight-item .insight-meta {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin-bottom: .4rem;
}

.insight-pill {
  font-size: .75rem;
  font-weight: 800;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(13,110,253,.10);
  color: #0d6efd;
}

.insight-date {
  font-size: .8rem;
  color: #6c757d;
  font-weight: 600;
}

.insight-title {
  font-weight: 800;
  margin-bottom: .35rem;
  color: #0b1f3a;
}

.insight-desc {
  color: #5b667a;
  margin-bottom: .6rem;
  max-width: 60ch;
}

.insight-link {
  text-decoration: none;
  font-weight: 800;
  color: #0d6efd;
}

.insight-link:hover {
  text-decoration: underline;
}

.insight-divider {
  opacity: .08;
  margin: 1.15rem 0;
}


/* =========================
   RECENT REPORTS (SWEET STYLE)
   Uses your theme colors:
   --primary-blue: #1578be
   --secondary-blue: #04407c
   --accent-red: #d9534f
   --dark-black: #212529
   --light-gray: #f8f9fa
========================= */

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(21,120,190,0.12);
  box-shadow: 0 10px 28px rgba(33,37,41,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21,120,190,0.30);
  box-shadow: 0 18px 45px rgba(33,37,41,0.10);
}

/* Cover container */
.report-cover-container {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--light-gray), #ffffff);
  border: 1px solid rgba(21,120,190,0.15);
}

/* Image */
.report-cover-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.feature-card:hover .report-cover-image {
  transform: scale(1.03);
}

/* Default cover */
.default-cover {
  height: 180px;
  background: linear-gradient(135deg, rgba(21,120,190,0.10), rgba(4,64,124,0.08));
  color: var(--secondary-blue);
}

/* Details */
.report-details {
  padding-top: 10px;
}

.report-title {
  font-weight: 800;
  color: var(--secondary-blue);
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0;
}

/* Year badge */
.year-badge {
  background: rgba(21,120,190,0.12);
  color: var(--primary-blue);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Download button */
.btn-download {
  background: transparent;
  border: 1px solid rgba(21,120,190,0.35);
  color: var(--secondary-blue);
  font-weight: 700;
  border-radius: 10px;
  padding: 6px 14px;
  transition: all 0.25s ease;
}

.btn-download:hover {
  background: rgba(21,120,190,0.12);
  border-color: var(--primary-blue);
  color: var(--secondary-blue);
}

/* Section heading */
.section-title {
  font-weight: 900;
  color: var(--secondary-blue);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* View all button */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 14px;
  font-weight: 800;
  padding: 12px 28px;
}

.btn-primary:hover {
  background-color: var(--secondary-blue);
  border-color: var(--secondary-blue);
}
.career-cta {
  background:
    radial-gradient(1000px 500px at 8% 12%, rgba(13,110,253,.22), transparent 55%),
    radial-gradient(800px 450px at 85% 28%, rgba(32,201,151,.15), transparent 60%),
    linear-gradient(180deg, #0b1220 0%, #0f1a33 100%);
  color: #e9eefc;
  position: relative;
  overflow: hidden;
}

.career-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpath d='M0 0H160V160H0z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
}

.cta-wrap {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.03)
  );
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  z-index: 1;
}

/* Small top accent line */
.cta-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, #0d6efd, #20c997);
  border-radius: 2px;
}

.cta-kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(233,238,252,.9);
  opacity: .85;
}

.cta-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(233,238,252,.88);
  max-width: 52ch;
}

.cta-sub {
  color: rgba(233,238,252,.72);
  font-size: .95rem;
}

/* Match site buttons, just refine spacing */
.cta-btn {
  border-radius: 14px;
  padding: .9rem 1.2rem;
  font-weight: 700;
  transition: all .2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
}

/* Keep harmony with your existing outline buttons */
.btn-outline-light {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.cta-note {
  color: rgba(233,238,252,.70);
  font-size: .85rem;
}


/* =========================
   LATEST INSIGHTS SECTION
========================= */
.latest-insights {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1f3a;
}

.section-sub {
  color: #5b667a;
  max-width: 60ch;
}

.link-more {
  text-decoration: none;
  font-weight: 700;
  color: #0d6efd;
}

.link-more:hover {
  text-decoration: underline;
}


/* =========================
   PANELS
========================= */
.insights-panel {
  border: 1px solid rgba(16,24,40,.08);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(16,24,40,.06);
  background: #ffffff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.insights-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(16,24,40,.08);
}

.panel-title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.panel-badge {
  background: rgba(13,110,253,.12);
  color: #0d6efd;
  font-weight: 800;
  padding: .45rem .75rem;
  border-radius: 999px;
}

.panel-badge.alt {
  background: rgba(32,201,151,.14);
  color: #198754;
}


/* =========================
   INSIGHT ITEMS
========================= */
.insight-item .insight-meta {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin-bottom: .4rem;
}

.insight-pill {
  font-size: .75rem;
  font-weight: 800;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(13,110,253,.10);
  color: #0d6efd;
}

.insight-date {
  font-size: .8rem;
  color: #6c757d;
  font-weight: 600;
}

.insight-title {
  font-weight: 800;
  margin-bottom: .35rem;
  color: #0b1f3a;
}

.insight-desc {
  color: #5b667a;
  margin-bottom: .6rem;
  max-width: 60ch;
}

.insight-link {
  text-decoration: none;
  font-weight: 800;
  color: #0d6efd;
}

.insight-link:hover {
  text-decoration: underline;
}

.insight-divider {
  opacity: .08;
  margin: 1.15rem 0;
}


/* =========================
   RECENT REPORTS (SWEET STYLE)
   Uses your theme colors:
   --primary-blue: #1578be
   --secondary-blue: #04407c
   --accent-red: #d9534f
   --dark-black: #212529
   --light-gray: #f8f9fa
========================= */

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(21,120,190,0.12);
  box-shadow: 0 10px 28px rgba(33,37,41,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21,120,190,0.30);
  box-shadow: 0 18px 45px rgba(33,37,41,0.10);
}

/* Cover container */
.report-cover-container {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--light-gray), #ffffff);
  border: 1px solid rgba(21,120,190,0.15);
}

/* Image */
.report-cover-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.feature-card:hover .report-cover-image {
  transform: scale(1.03);
}

/* Default cover */
.default-cover {
  height: 180px;
  background: linear-gradient(135deg, rgba(21,120,190,0.10), rgba(4,64,124,0.08));
  color: var(--secondary-blue);
}

/* Details */
.report-details {
  padding-top: 10px;
}

.report-title {
  font-weight: 800;
  color: var(--secondary-blue);
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0;
}

/* Year badge */
.year-badge {
  background: rgba(21,120,190,0.12);
  color: var(--primary-blue);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Download button */
.btn-download {
  background: transparent;
  border: 1px solid rgba(21,120,190,0.35);
  color: var(--secondary-blue);
  font-weight: 700;
  border-radius: 10px;
  padding: 6px 14px;
  transition: all 0.25s ease;
}

.btn-download:hover {
  background: rgba(21,120,190,0.12);
  border-color: var(--primary-blue);
  color: var(--secondary-blue);
}

/* Section heading */
.section-title {
  font-weight: 900;
  color: var(--secondary-blue);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* View all button */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 14px;
  font-weight: 800;
  padding: 12px 28px;
}

.btn-primary:hover {
  background-color: var(--secondary-blue);
  border-color: var(--secondary-blue);
}

    /* =========================================================
   KLMIS Entry Modals – Strong override (uses your variables)
   Make sure this CSS loads AFTER bootstrap
========================================================= */

/* Backdrop tint so the popup feels premium */


/* Ensure our modal content styles win */
.modal .entry-modal-content{
  background: linear-gradient(180deg, #ffffff, var(--light-gray)) !important;
  border: 1px solid rgba(33,37,41,.10) !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.22) !important;
}

/* Header: gradient + subtle pattern */
.modal .entry-modal-header{
  background:
    radial-gradient(900px 260px at 12% 0%, rgba(21,120,190,.22), transparent 55%),
    radial-gradient(900px 260px at 88% 0%, rgba(217,83,79,.18), transparent 55%),
    linear-gradient(135deg, rgba(21,120,190,.12), rgba(217,83,79,.08), #ffffff) !important;
  border-bottom: 1px solid rgba(33,37,41,.10) !important;
  padding: 16px 18px !important;
}

/* Title + subtitle */
.modal .entry-modal-header .modal-title{
  color: var(--secondary-blue) !important;
  font-weight: 900 !important;
  letter-spacing: -.02em;
}

.modal .entry-modal-muted{
  color: rgba(33,37,41,.70) !important;
}

/* Close button visibility on light header */
.modal .btn-close.btn-close-white{
  filter: invert(1) grayscale(100%) brightness(35%) !important; /* makes it dark */
  opacity: .75 !important;
}
.modal .btn-close.btn-close-white:hover{
  opacity: 1 !important;
}

/* Hint box */
.modal .entry-modal-hint{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(21,120,190,.07) !important;
  border: 1px solid rgba(21,120,190,.18) !important;
  color: rgba(33,37,41,.82) !important;
  line-height: 1.45;
}

/* Hint icon */
.modal .entry-modal-hint i{
  color: var(--primary-blue) !important;
  margin-top: 2px;
}

/* List wrapper spacing */
.modal .entry-list{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

/* Override Bootstrap list-group-item default white */
.modal .entry-item.list-group-item{
  border-radius: 16px !important;
  border: 1px solid rgba(33,37,41,.10) !important;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(33,37,41,.06) !important;
  padding: 14px 14px !important;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.modal .entry-item.list-group-item:hover{
  transform: translateY(-2px);
  border-color: rgba(21,120,190,.28) !important;
  box-shadow: 0 18px 42px rgba(33,37,41,.10) !important;
}

/* Title + description inside item */
.modal .entry-item-title{
  color: var(--dark-black) !important;
  font-weight: 900 !important;
  letter-spacing: -.01em;
  margin-bottom: 2px;
}

.modal .entry-item-desc{
  color: rgba(33,37,41,.72) !important;
  font-size: .90rem;
}

/* Add a subtle left accent bar to each item */
.modal .entry-item{
  position: relative;
  overflow: hidden;
}

.modal .entry-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-blue), var(--accent-red));
  opacity: .85;
}

/* Footer */
.modal .entry-modal-footer{
  background: var(--light-gray) !important;
  border-top: 1px solid rgba(33,37,41,.10) !important;
  padding: 14px 18px 18px !important;
}

/* Buttons */
.modal .entry-btn-primary-2{
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-red)) !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  box-shadow: 0 14px 30px rgba(21,120,190,.18);
}
.modal .entry-btn-primary-2:hover{ filter: brightness(1.05); }

.modal .entry-btn-soft-2{
  background: #fff !important;
  border: 1px solid rgba(33,37,41,.14) !important;
  color: rgba(33,37,41,.85) !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
}
.modal .entry-btn-soft-2:hover{
  background: rgba(33,37,41,.04) !important;
}

/* Mobile padding */
@media (max-width: 575.98px){
  .modal .entry-modal-header,
  .modal .modal-body,
  .modal .entry-modal-footer{
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}
/* Base */
.btn.entry-btn{
  border-radius: 14px !important;
  border: 1px solid rgba(21,120,190,.28) !important;
  background: rgba(21,120,190,.08) !important;
  color: var(--dark-black) !important;
  font-weight: 900 !important;
  padding: .72rem .95rem !important;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease !important;
  text-decoration: none !important;
}

/* Soft hover */
.btn.entry-btn:hover,
.btn.entry-btn:focus{
  background: rgba(21,120,190,.14) !important;
  border-color: rgba(21,120,190,.45) !important;
  color: var(--secondary-blue) !important;
  box-shadow: 0 6px 14px rgba(21,120,190,.15); /* soft glow, not jump */
}

/* Active */
.btn.entry-btn:active{
  box-shadow: 0 3px 8px rgba(21,120,190,.12);
}


/* ===== Featured Primary Button ===== */
.btn.entry-btn-primary{
  border-radius: 14px !important;
  border: none !important;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-red)) !important;
  color: #fff !important;
  font-weight: 900 !important;
  padding: .75rem .95rem !important;
  transition: box-shadow .25s ease, filter .25s ease !important;
  text-decoration: none !important;
}

/* Elegant glow instead of lift */
.btn.entry-btn-primary:hover,
.btn.entry-btn-primary:focus{
  filter: brightness(1.06);
  box-shadow:
    0 8px 18px rgba(21,120,190,.28),
    0 2px 8px rgba(217,83,79,.18);
}

/* Active */
.btn.entry-btn-primary:active{
  box-shadow:
    0 5px 12px rgba(21,120,190,.22),
    0 2px 6px rgba(217,83,79,.14);
}

 
/* Base */
.btn.entry-btn{
  border-radius: 14px !important;
  border: 1px solid rgba(21,120,190,.28) !important;
  background: rgba(21,120,190,.08) !important;
  color: var(--dark-black) !important;
  font-weight: 900 !important;
  padding: .72rem .95rem !important;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease !important;
  text-decoration: none !important;
}

/* Soft hover */
.btn.entry-btn:hover,
.btn.entry-btn:focus{
  background: rgba(21,120,190,.14) !important;
  border-color: rgba(21,120,190,.45) !important;
  color: var(--secondary-blue) !important;
  box-shadow: 0 6px 14px rgba(21,120,190,.15); /* soft glow, not jump */
}

/* Active */
.btn.entry-btn:active{
  box-shadow: 0 3px 8px rgba(21,120,190,.12);
}


/* ===== Featured Primary Button ===== */
.btn.entry-btn-primary{
  border-radius: 14px !important;
  border: none !important;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-red)) !important;
  color: #fff !important;
  font-weight: 900 !important;
  padding: .75rem .95rem !important;
  transition: box-shadow .25s ease, filter .25s ease !important;
  text-decoration: none !important;
}

/* Elegant glow instead of lift */
.btn.entry-btn-primary:hover,
.btn.entry-btn-primary:focus{
  filter: brightness(1.06);
  box-shadow:
    0 8px 18px rgba(21,120,190,.28),
    0 2px 8px rgba(217,83,79,.18);
}

/* Active */
.btn.entry-btn-primary:active{
  box-shadow:
    0 5px 12px rgba(21,120,190,.22),
    0 2px 6px rgba(217,83,79,.14);
}

    </style>
    <style>
  /* =========================
   CAREER NAVIGATOR CTA
========================= */
.career-cta {
  background:
    radial-gradient(1000px 500px at 8% 12%, rgba(13,110,253,.22), transparent 55%),
    radial-gradient(800px 450px at 85% 28%, rgba(32,201,151,.15), transparent 60%),
    linear-gradient(180deg, #0b1220 0%, #0f1a33 100%);
  color: #e9eefc;
  position: relative;
  overflow: hidden;
}

.career-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpath d='M0 0H160V160H0z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
}

.cta-wrap {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.03)
  );
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  z-index: 1;
}

/* Small top accent line */
.cta-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, #0d6efd, #20c997);
  border-radius: 2px;
}

.cta-kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(233,238,252,.9);
  opacity: .85;
}

.cta-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff !important;
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(233,238,252,.88);
  max-width: 52ch;
}

.cta-sub {
  color: rgba(233,238,252,.72);
  font-size: .95rem;
}

/* Match site buttons, just refine spacing */
.cta-btn {
  border-radius: 14px;
  padding: .9rem 1.2rem;
  font-weight: 700;
  transition: all .2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
}

/* Keep harmony with your existing outline buttons */
.btn-outline-light {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.cta-note {
  color: rgba(233,238,252,.70);
  font-size: .85rem;
}


/* ===== Action card ===== */
    .action-card{
      margin-top: 14px;
      background: rgba(255,255,255,.96);
      color: var(--ink);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid rgba(0,0,0,.06);
      padding: 18px 18px;
      position: relative;
      overflow:hidden;
    }
    .action-card::before{
      content:"";
      position:absolute;
      inset:0;
      background: radial-gradient(900px 180px at 10% 20%, rgba(21,120,190,.12), transparent 50%),
                  radial-gradient(700px 220px at 90% 10%, rgba(212,0,0,.10), transparent 55%);
      pointer-events:none;
    }
    .action-card .row{
      position: relative;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 18px;
      flex-wrap:wrap;
    }
    .action-card h3{
      margin:0;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: .2px;
    }
    .action-card p{
      margin:6px 0 0;
      color: rgba(11,18,32,.72);
      line-height:1.35;
      max-width: 760px;
    }

    /* ===== CTA buttons ===== */
    .cta-stack{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      width: 100%;
      margin-top: 14px;
      position: relative;
    }
    .cta-btn{
      display:flex;
      align-items:center;
      justify-content:center;
      gap: 10px;
      padding: 12px 12px;
      border-radius: 14px;
      font-weight: 900;
      font-size: 13px;
      border: 1px solid rgba(11,18,32,.12);
      background: rgba(255,255,255,.90);
      color: rgba(11,18,32,.92);
      box-shadow: 0 10px 18px rgba(0,0,0,.08);
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
      text-align:center;
      user-select:none;
      min-height: 48px;
    }
    .cta-btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 28px rgba(0,0,0,.12);
      background: #fff;
    }
    .cta-btn .icon{
      width: 22px; height: 22px;
      border-radius: 8px;
      display:grid;
      place-items:center;
      font-size: 14px;
      line-height: 1;
      background: rgba(21,120,190,.10);
      border: 1px solid rgba(21,120,190,.20);
      color: #0b4c8d;
      flex: 0 0 auto;
    }
    .cta-btn.primary{
      background: linear-gradient(135deg, var(--danger), var(--primary));
      border: none;
      color: #fff;
      box-shadow: 0 18px 36px rgba(21,120,190,.20);
    }
    .cta-btn.primary .icon{
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.24);
      color: #fff;
    }
    .cta-btn.outline{
      background: rgba(21,120,190,.06);
      border: 1px solid rgba(21,120,190,.22);
    }
    .cta-btn.outline .icon{
      background: rgba(21,120,190,.10);
      border: 1px solid rgba(21,120,190,.22);
      color: #0b4c8d;
    }
.cta-btn,
.cta-btn:hover,
.cta-btn:focus,
.cta-btn:active,
.cta-btn:visited{
  text-decoration: none;
}
.cta-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.90);
  color: rgba(11,18,32,.92);
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
  transition: 
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    color .2s ease;
  text-align:center;
  user-select:none;
  min-height: 48px;
  text-decoration: none; /* 👈 key line */
}

/* Hover */
.cta-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(21,120,190,.18);
  background: #ffffff;
}

/* Icon animation */
.cta-btn .icon{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display:grid;
  place-items:center;
  font-size: 14px;
  line-height: 1;
  background: rgba(21,120,190,.10);
  border: 1px solid rgba(21,120,190,.20);
  color: #0b4c8d;
  transition: transform .2s ease, background .2s ease;
}

.cta-btn:hover .icon{
  transform: scale(1.08) rotate(-3deg);
  background: rgba(21,120,190,.18);
}

/* Focus (keyboard users – very important for gov systems) */
.cta-btn:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(21,120,190,.25),
    0 18px 34px rgba(21,120,190,.18);
}
/* 2 columns on tablet and below */
@media (max-width: 767px) {
  .cta-stack {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tighter text and padding on small phones */
@media (max-width: 480px) {
  .cta-btn {
    font-size: 11.5px;
    padding: 10px 8px;
    gap: 7px;
    border-radius: 10px;
  }
  .cta-btn .icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}
/* Wrapper clips overflow */
.stats-track-wrapper {
  overflow: hidden;
  width: 100%;
}

/* The scrolling track: flex row of all cards */
.stats-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  gap: 0; /* gap handled by card padding/margin */
}

/* Each card slot: fixed width = 1/3 of container so 3 show at a time */
.stat-card-slide {
  flex: 0 0 calc(33.333% - 8px);
  max-width: calc(33.333% - 8px);
  margin-right: 12px;
  box-sizing: border-box;
}

/* On small screens: show 1 card at a time */
@media (max-width: 575px) {
  .stat-card-slide {
    flex: 0 0 calc(100% - 8px);
    max-width: calc(100% - 8px);
  }
}

/* On medium screens: show 2 cards */
@media (min-width: 576px) and (max-width: 991px) {
  .stat-card-slide {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}
.stats-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.stats-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each card: 1/3 width on desktop */
.stat-card-slide {
  flex: 0 0 calc(33.333% - 8px);
  max-width: calc(33.333% - 8px);
  margin-right: 12px;
  box-sizing: border-box;
}

@media (max-width: 575px) {
  .stat-card-slide {
    flex: 0 0 calc(100% - 8px);
    max-width: calc(100% - 8px);
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .stat-card-slide {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}

/* -----------------------------------------------------------------
   Career CTA — fully namespaced (ccta-)
   Zero shared class names with the rest of the page
----------------------------------------------------------------- */

.ccta-section {
  padding: 2.5rem 0;
  background: #f5f4f0;
  position: relative;
  overflow: hidden;
}

/* Dot-grid texture */
.ccta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #c8c4bc 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

/* White card */
.ccta-card {
  background: #ffffff;
  border: 1px solid #e4e0d8;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  padding: 2rem 2.5rem;
  position: relative;
  z-index: 1;
}

/* Red to blue top accent */
.ccta-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, #d40000, #1578be);
  border-radius: 0 0 3px 3px;
}

/* Typography */
.ccta-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d40000;
  margin-bottom: 0.4rem;
}

.ccta-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111827 !important;
  margin-bottom: 0.75rem;
}

.ccta-body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4b5563;
  max-width: 56ch;
  margin-bottom: 0.75rem;
}

.ccta-sub {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0;
}

/* Button */
.ccta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #d40000, #1578be);
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 10px;
  padding: 0.72rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(21,120,190,.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
  white-space: nowrap;
}

.ccta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(21,120,190,.38);
  opacity: 0.92;
  color: #ffffff !important;
}

/* Note */
.ccta-note {
  font-size: 0.74rem;
  color: #9ca3af;
}

/* Mobile */
@media (max-width: 767px) {
  .ccta-card {
    padding: 1.5rem 1.25rem;
  }
  .ccta-link {
    width: 100%;
    justify-content: center;
  }
}