  /* ================== VARIABLES & BASE STYLES (SMZ THEME) ================== */
  :root {
    /* 🔷 BRAND COLORS (Kutoka kwenye Logo ya SMZ) */
    --primary-color: #00853F;
    /* Kijani cha Mapinduzi (Main Green) */
    --secondary-color: #1A1A1A;
    /* Nyeusi ya Ramani/Maandishi (Deep Dark) */
    --accent-color: #F7D117;
    /* Dhahabu ya Utepe (Gold/Yellow) */
    --accent-deep: #A52A2A;
    /* Rangi ya Mipini ya Shoka/Panga (Deep Brown/Red) */
    --ocean-blue: #00A3DA;
    /* Bluu ya Bahari (Inaleta uwiano mzuri) */

    /* 🎯 UI SUPPORT COLORS */
    --muted: #546E7A;
    /* Grayish Blue-Green kwa ajili ya maandishi madogo */
    --neutral: #D1D5DB;
    /* Kwa ajili ya mistari (borders) */

    /* 🧱 BACKGROUNDS */
    --light-bg: #F4F7F5;
    /* Off-white yenye ubaridi wa kijani kidogo */
    --card-bg: #FFFFFF;
    --white: #FFFFFF;

    /* 📝 TEXT */
    --text-dark: #121A16;
    /* Nyeusi iliyokolea kijani kidogo kwa ajili ya macho */

    /* 📏 BORDERS & EFFECTS */
    --stroke: rgba(0, 133, 63, 0.1);
    /* Stroke ya kijani hafifu */
    /* Shadow imebadilishwa kuwa ya kijani/dhahabu ili iendane na theme */
    --shadow: 0 18px 50px rgba(0, 133, 63, 0.08);
    --shadow-lg: 0 24px 60px rgba(0, 133, 63, 0.15);

    /* ⚡ MOTION */
    --transition: all 0.28s cubic-bezier(.4, .0, .2, 1);

    /* 📦 LAYOUT */
    --container-width: 1200px;

    /* 🔘 BORDER RADIUS */
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
  }

  /* Reset */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0
  }

  html {
    scroll-behavior: smooth
  }

  body {
    font-family: Inter, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #fafbfe 0%, #ffffff 100%);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }


  /* ================== TOP HEADER REDESIGN (SMZ THEME) ================== */
  .topheader {
    /* Tunatumia Gradient ya Kijani Kibichi (Primary) badala ya Bluu/Nyeusi */
    background: linear-gradient(135deg, var(--primary-color) 0%, #006832 100%);
    color: var(--white);
    padding: 12px 0;
    position: relative;
    z-index: 1001;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  /* Utepe wa Dhahabu chini ya Header - Unatoa "Royal" feeling */
  .topheader::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  }

  .topheader-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  /* Creative Social Links - Kwa kutumia Squircle Shape badala ya Circle */
  .social-link {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    /* Squircle style */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(247, 209, 23, 0.2);
  }

  .social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: rotate(10deg) translateY(-3px);
    box-shadow: 0 8px 20px rgba(247, 209, 23, 0.3);
  }

  /* Minimalist & Glassy Search Bar */
  .topheader-simple-search {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
    /* Glass effect */
    backdrop-filter: blur(5px);
    padding: 4px 6px 4px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .topheader-simple-search:focus-within {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(247, 209, 23, 0.1);
  }

  .topheader-simple-search input[type="search"] {
    background: transparent;
    border: 0;
    outline: none;
    color: var(--white);
    font-size: 0.9rem;
    width: 200px;
  }

  .topheader-simple-search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  .search-submit-btn {
    background: var(--accent-color);
    border: none;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .search-submit-btn:hover {
    background: var(--white);
    transform: scale(1.05);
  }

  /* Auth & Language Area */
  .topheader-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  /* GTranslate Wrapper Styling */
  .gtranslate_wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .topheader-center {
      display: none;
    }

    /* Ficha social links center kwenye mobile */
    .topheader-simple-search input[type="search"] {
      width: 120px;
    }
  }

  /* ================== TOPHEADER REDESIGN END (SMZ THEME) ================== */





  /* ================== TOPBAR MODERN ZNZ THEME (CENTERED TEXT) ================== */
  .topbar {
    position: relative !important;
    padding: 25px 0;
    background-color: #121212;
    overflow: hidden;
    z-index: 99;
    border-bottom: 3px solid var(--accent-color);
    min-height: 140px;
    /* Inahakikisha nafasi ya kutosha kwa ajili ya centering */
    display: flex;
    align-items: center;
  }

  /* Kuzuia sticky behavior */
  .topbar.sticky-header,
  .is-sticky .topbar {
    position: relative !important;
    top: auto !important;
  }

  .topbar-flag-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    z-index: 1;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.3));
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.3));
  }

  .topbar-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(18, 18, 18, 0.7) 0%, rgba(18, 18, 18, 1) 100%);
    z-index: 2;
  }

  .topbar-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
  }

  /* Logo inakaa upande wa kushoto kabisa */
  .logo-wrapper {
    background: #ffffff;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--accent-color);
    flex-shrink: 0;
    position: relative;
    left: 20px;
    /* Inahakikisha ipo ukingoni */
  }

  .topbar-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
  }

  /* Maandishi yanakaa Center ya Header nzima */
  .topbar-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: auto;
    white-space: nowrap;
    /* Inazuia maandishi kuvunjika mistari ovyo */
  }

  .org-name {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
  }

  .main-title {
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
  }

  .ocean-line {
    width: 100px;
    height: 5px;
    background: var(--ocean-blue, #007bff);
    margin: 15px auto 0;
    /* Inakaa center chini ya maandishi */
    border-radius: 5px;
  }

  /* Mobile Responsive - Tunarudisha muundo wa kawaida ili visioverlap */
  @media (max-width: 992px) {
    .topbar {
      min-height: auto;
      padding: 20px 0;
    }

    .topbar-wrapper {
      flex-direction: column;
    }

    .logo-wrapper {
      left: 0;
      margin-bottom: 15px;
    }

    .topbar-content {
      position: relative;
      left: 0;
      transform: none;
      width: 100%;
    }

    .main-title {
      font-size: 1.8rem;
    }

    .org-name {
      font-size: 1rem;
    }
  }

  /* TOPBAR MODERN ZNZ THEME END */



  /* container */
  .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px
  }


  /* ===== MAIN NAVBAR ===== */
  .main-navbar {
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 0.35rem 1rem;
    z-index: 1002;
    min-height: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
  }


  .sticky-navbar {
    position: sticky;
    top: var(--topbar-height, 0);
    z-index: 1050;
    /* above topbar but below modals */
    /* allow smooth visual transition when offset changes */
    transition: top 0.18s ease;
  }

  /* Disable navbar stickiness on small screens so only topbar remains sticky */
  @media (max-width: 767.98px) {
    .sticky-navbar {
      position: static;
      top: auto;
    }
  }

  /* NAVBAR ACTIVE & HOVER */
  .navbar .nav-link {
    position: relative;
    padding: 8px 14px !important;
    transition: var(--transition);
  }

  /* Underline hover */
  .navbar .nav-link:hover {
    background: var(--secondary-color);
    color: var(--accent-color) !important;
    transition: var(--transition);
    transform: translateX(2px);
  }

  .navbar .nav-link.active {
    background: var(--secondary-color) !important;
    color: #fff;
    font-weight: 600;
  }

  /* Dropdown active item */
  .dropdown-menu .dropdown-item.active {
    background: var(--primary-color) !important;
    color: var(--accent-color) !important;
  }

  /* Hover for dropdown items */
  .dropdown-menu .dropdown-item:hover {
    background: var(--secondary-color);
    color: var(--accent-color) !important;
    transition: var(--transition);
    transform: translateX(2px);
  }

  /* Mobile active highlight */
  @media(max-width: 992px) {
    .navbar-nav .nav-link.active {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 6px;
    }
  }



  .main-navbar:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }

  .main-navbar .navbar-brand {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
  }

  .main-navbar .navbar-brand .logo {
    height: 32px;
  }

  .main-navbar .nav-link {
    font-weight: 500;
    margin-left: 0.8rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 0.3rem 0.6rem;
  }


  /* ================== THE DIPLOMATIC GLASS NAVBAR (V2) ================== */
  .main-navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    border-top: 1px solid rgba(247, 209, 23, 0.2);
    border-bottom: 3px solid var(--primary-color);
    z-index: 1002;
    transition: var(--transition);
  }

  /* Navbar Links */
  .main-navbar .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 22px 15px !important;
    position: relative;
    display: flex;
    align-items: center;
    transition: var(--transition);
  }

  /* 🔻 DROPDOWN ICONS (Kutofautisha zenye Menu na zisizo na Menu) */
  .main-navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    content: "\f107";
    /* FontAwesome Angle Down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    /* Inatoa ule mshale wa kizamani wa Bootstrap */
    font-size: 0.8rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
  }

  .main-navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* Hover Effect */
  .main-navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
  }

  .main-navbar .nav-link:hover::before,
  .main-navbar .nav-link.active::before {
    width: 70%;
  }

  /* Dropdown Menu */
  .main-navbar .dropdown-menu {
    background: #1a1a1a;
    border-top: 3px solid var(--accent-color);
    border-radius: 0 0 10px 10px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    margin-top: -2px;
    /* Inafunika mpaka wa navbar */
  }

  .main-navbar .dropdown-item {
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    border-left: 3px solid transparent;
  }

  .main-navbar .dropdown-item:hover {
    background: rgba(0, 133, 63, 0.1);
    color: var(--accent-color) !important;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
  }

  /* 🔄 NEWS TICKER ANIMATION (FIXED) */
  .edge-news-ticker {
    background: var(--primary-color);
    height: 45px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1001;
  }

  .ticker-label {
    background: var(--secondary-color);
    color: var(--accent-color);
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    position: absolute;
    left: 0;
    z-index: 10;
  }

  .ticker-wrap {
    width: 100%;
    padding-left: 160px;
    /* Nafasi kwa ajili ya lebo iliyo fixed */
  }

  .ticker-track {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: ticker-slide 30s linear infinite;
  }

  .ticker-track:hover {
    animation-play-state: paused;
  }

  .ticker-item {
    display: inline-block;
    padding: 0 40px;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
  }

  @keyframes ticker-slide {
    0% {
      transform: translateX(100%);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  /* Mobile Fixes */
  @media (max-width: 991px) {
    .main-navbar .nav-link {
      padding: 12px 20px !important;
    }

    .ticker-label {
      position: relative;
      width: 100%;
      clip-path: none;
      justify-content: center;
    }

    .ticker-wrap {
      padding-left: 0;
    }
  }


  /* ================= NAVBAR END SECTION (SMZ THEME) ================= */



  .updates-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
  }

  .updates-section .section-sub {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 2rem;
  }

  .updates-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
  }

  .updates-grid .events,
  .updates-grid .documents {
    flex: 1 1 45%;
  }

  /* allow flex child to shrink and avoid forcing page overflow */
  .updates-grid .events {
    min-width: 0;
  }

  .updates-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }

  .updates-section .card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .updates-section .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .updates-section .btn {
    border-radius: 30px;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .updates-grid {
      flex-direction: column;
    }

    .updates-grid .events,
    .updates-grid .documents {
      flex: 1 1 100%;
    }
  }





  /* ================= HERO PRO UPDATED ================= */
  .hero-pro {
    position: relative;
    height: 80vh;
    /* Nimeiongeza kidogo iwe ndefu zaidi */
    overflow: hidden;
    background: var(--secondary-color);
  }

  .hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* SLIDE */
  .hero-slide-pro {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: opacity 1s ease-in-out, transform 1.5s ease-out, visibility 1s;
  }

  .hero-slide-pro.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
  }

  /* BACKGROUND */
  .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s linear;
  }

  .hero-slide-pro.active .hero-bg {
    transform: scale(1.15);
    /* Slow zoom effect */
  }

  /* OVERLAY - NIMEIPUNGUZA IWE LIGHT ZAIDI */
  .hero-overlay {
    position: absolute;
    inset: 0;
    /* Gradient nyepesi: Kushoto kiza kidogo kwa ajili ya text, kulia picha ionekane wazi */
    background: linear-gradient(to right,
        rgba(21, 25, 29, 0.6) 0%,
        rgba(13, 133, 189, 0.2) 50%,
        transparent 100%);
    z-index: 1;
  }

  /* CONTENT - FULL WIDTH LOGIC */
  .hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    /* Inachukua upana wote wa container */
    color: #fff;
    text-align: left;
  }

  /* TITLE - HAIJIKATI */
  .hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    /* Font inajirekebisha kulingana na screen */
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    max-width: 90%;
    /* Inaruhusu title iwe ndefu bila kujikata mapema */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* Inasaidia text isomeke kwenye picha yoyote */
    animation: fadeUp 0.8s ease-out forwards;
  }

  /* SUBTITLE */
  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 35px;
    color: #fff;
    max-width: 80%;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  /* BUTTONS */
  .hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .btn-hero-primary {
    background: var(--accent-color);
    color: var(--secondary-color) !important;
    padding: 16px 35px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    text-decoration: none;
  }

  .btn-hero-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 228, 40, 0.3);
  }

  .btn-hero-outline {
    border: 2px solid var(--white);
    color: var(--white) !important;
    padding: 14px 35px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
  }

  .btn-hero-outline:hover {
    background: var(--white);
    color: var(--primary-color) !important;
  }

  /* ARROWS */
  .hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 1.2rem;
  }

  .hero-prev:hover, .hero-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
  }

  .hero-prev {
    left: 30px;
  }

  .hero-next {
    right: 30px;
  }

  /* DOTS */
  .hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
  }

  .hero-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
  }

  .hero-dots button.active {
    background: var(--accent-color);
    width: 35px;
    /* Inakuwa ndefu ikichaguliwa */
    border-radius: 10px;
  }

  /* PROGRESS BAR */
  .hero-progress {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
  }

  .hero-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--accent-color);
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* RESPONSIVE */
  @media(max-width:768px) {
    .hero-prev, .hero-next {
      display: none;
    }

    /* Ficha arrows kwenye simu */
    .hero-content {
      text-align: center;
      align-items: center;
    }

    .hero-actions {
      justify-content: center;
    }

    .hero-title {
      max-width: 100%;
    }

    .hero-sub {
      max-width: 100%;
    }
  }

  /* END HERO SLIDER PRO */

 



  /* responsive */
  @media (max-width: 980px) {
    .hero-grid {
      grid-template-columns: 1fr
    }

    .carousel-image {
      height: 320px
    }

    .director-card {
      order: 2
    }

    .flag-container {
      padding: 16px;
    }

    .zanzibar-flag {
      width: 75px;
      height: 55px;
    }

    .management-hero {
      padding: 48px 32px;
    }

    .management-title {
      font-size: 2.2rem;
      margin-bottom: 16px;
    }

    .management-lead {
      font-size: 1rem;
    }
  }

  @media (max-width: 640px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      right: 20px;
      top: 64px;
      background: #fff;
      padding: 10px;
      border-radius: 10px;
      box-shadow: var(--shadow)
    }

    .mobile-toggle {
      display: block
    }

    .carousel-image {
      height: 220px
    }

    .slide-caption {
      max-width: 90%
    }

    .carousel-btn {
      width: 40px;
      height: 40px
    }

    .project-image {
      height: 140px
    }

    .news-image {
      height: 120px
    }

    .flag-container {
      padding: 12px;
      gap: 8px;
    }

    .zanzibar-flag {
      width: 70px;
      height: 50px;
    }

    .flag-title {
      font-size: 1rem;
    }

    .flag-subtitle {
      font-size: 0.85rem;
    }

    .management-hero {
      padding: 32px 24px;
    }

    .management-title {
      font-size: 1.8rem;
    }

    .management-lead {
      font-size: 0.9rem;
    }
  }



  /* ================= NEWS SECTION ================= */
  .news-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f7f9fb, #eef5f9);
  }

  .news-title {
    font-weight: 800;
    color: var(--text-dark);
  }

  .view-all {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
  }

  /* GRID */
  .news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
  }

  /* FEATURED */
  .news-featured {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-lg);
  }

  .news-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .news-featured .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  }

  .news-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
  }

  .news-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
  }

  .news-content p {
    font-size: 0.9rem;
    opacity: 0.9;
  }

  .read-more {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
  }

  /* SIDE LIST */
  .news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .news-item {
    display: flex;
    gap: 12px;
    background: var(--card-bg);
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .news-item:hover {
    transform: translateY(-4px);
  }

  .news-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
  }

  .news-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
  }

  .news-date {
    font-size: 12px;
    color: var(--muted);
  }

  .mini-read {
    font-size: 12px;
    color: var(--primary-color);
    text-decoration: none;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .news-grid {
      grid-template-columns: 1fr;
    }

    .news-featured {
      height: 300px;
    }
  }

  /* ================= NEWNO CAROUSEL ================= */

  .newno-featured-carousel {
    position: relative;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .newno-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .newno-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .newno-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .newno-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  }

  .newno-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
  }

  .newno-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
  }

  /* BUTTONS */
  .newno-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 50%;
  }

  .newno-btn.prev {
    left: 10px;
  }

  .newno-btn.next {
    right: 10px;
  }

  /* DOTS */
  .newno-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .newno-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.5;
    margin: 0 4px;
    border-radius: 50%;
    cursor: pointer;
  }

  .newno-dots span.active {
    opacity: 1;
    background: var(--accent-color);
  }


  .updates-section .section-header {
    margin-bottom: 1.25rem;
  }


  /* ================== DOCUMENTS CAROUSEL ================== */
  .docs-section {
    padding: 40px 0;
  }

  .docs-carousel-wrap {
    position: relative;
  }

  .docs-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 12px 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .docs-carousel {
    width: 100%;
    min-width: 0;
    overflow-y: hidden;
  }

  .docs-carousel .doc-card {
    flex: 0 0 auto;
    min-width: 300px;
    max-width: 340px;
  }

  .docs-carousel::-webkit-scrollbar {
    height: 9px;
  }

  .docs-carousel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 8px;
  }

  .doc-card {
    scroll-snap-align: center;
  }

  .btn-group-icons {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .btn-icon {
    background: transparent;
    border: 1px solid rgba(0, 63, 127, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.28s ease;
    color: var(--primary-color);
    font-size: 16px;
    padding: 0;
    line-height: 1;
  }

  .btn-icon:hover {
    background: linear-gradient(135deg, rgba(0, 63, 127, 0.1), rgba(17, 103, 177, 0.08));
    border-color: var(--primary-color);
    transform: translateY(-3px);
  }

  .btn-icon:active {
    transform: translateY(-1px);
  }

  .docs-controls {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .docs-prev, .docs-next {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(3, 26, 64, 0.06);
    cursor: pointer;
    transition: transform .18s ease;
    font-size: 20px;
    color: var(--primary-color);
  }

  .docs-prev:hover, .docs-next:hover {
    transform: translateY(-3px);
  }

  @media (max-width: 768px) {
    .doc-card {
      min-width: 280px;
      max-width: 320px;
    }

    .docs-controls {
      right: 6px;
      flex-direction: row;
      top: auto;
      bottom: -10px;
      transform: none;
    }
  }

  @media (max-width: 480px) {
    .docs-controls {
      display: none;
    }
  }

  /* ================== DOCUMENTS LIST (HOME) ================== */
  .documents-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .document-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(180deg, #fff, #fbfdff);
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 8px 20px rgba(3, 26, 64, 0.04);
    border: 1px solid rgba(3, 26, 64, 0.04);
    transition: transform .18s ease, box-shadow .18s ease;
  }

  .document-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(3, 26, 64, 0.08);
  }

  .doc-left {
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .doc-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 63, 127, 0.06), rgba(17, 103, 177, 0.06));
    border-radius: 10px;
  }

  .doc-icon i {
    font-size: 20px;
  }

  /* type-specific icon styling */
  .doc-icon.type-pdf {
    background: linear-gradient(135deg, #fff5f5, #fff1f0);
  }

  .doc-icon.type-pdf i {
    color: #c62828;
  }

  .doc-icon.type-word {
    background: linear-gradient(135deg, #eef6ff, #e6f0ff);
  }

  .doc-icon.type-word i {
    color: #0b66c3;
  }

  .doc-icon.type-excel {
    background: linear-gradient(135deg, #f0fff4, #eaffef);
  }

  .doc-icon.type-excel i {
    color: #1e8f3e;
  }

  .doc-icon.type-ppt {
    background: linear-gradient(135deg, #fff7ed, #fff3e0);
  }

  .doc-icon.type-ppt i {
    color: #d35400;
  }

  .doc-icon.type-default {
    background: linear-gradient(135deg, #f5f7fb, #f8fbff);
  }

  .doc-icon.type-default i {
    color: var(--primary-color);
  }

  .doc-main {
    flex: 1;
    min-width: 0
  }

  .doc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
  }

  .doc-title {
    font-size: 1rem;
    margin: 0;
    color: var(--primary-color);
    font-weight: 700
  }

  .doc-badges {
    display: flex;
    gap: 8px
  }

  .badge.new {
    background: var(--accent-color);
    color: #003f7f;
    padding: 6px 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem
  }

  .doc-desc {
    margin: 6px 0;
    color: var(--muted);
    font-size: 0.95rem
  }

  .doc-meta {
    color: var(--muted);
    font-size: 0.9rem
  }

  .doc-actions {
    flex: 0 0 auto
  }

  @media (max-width: 768px) {
    .document-item {
      flex-direction: row;
      padding: 12px;
    }

    .doc-left {
      flex: 0 0 48px;
    }

    .doc-icon {
      width: 40px;
      height: 40px;
      font-size: 22px
    }
  }

  /* ================== DOCUMENT PREVIEW MODAL ================== */
  .doc-preview-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000;
  }

  .doc-preview-modal.open {
    display: block;
  }

  .doc-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 12, 20, 0.6);
    backdrop-filter: blur(6px);
  }

  .doc-preview-content {
    position: absolute;
    top: 0;
    /* will be positioned by JS to align with .documents */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
    height: 80vh;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.6);
  }

  .doc-preview-close {
    position: absolute;
    right: 12px;
    top: 8px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
  }

  .doc-preview-body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
  }

  .doc-preview-iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  @media (max-width: 992px) {
    .doc-preview-content {
      left: 0;
      transform: none;
      max-width: 100%;
      border-radius: 0;
    }
  }

  /* ================== ABOUT PAGE STYLES ================== */

  /* ABOUT PAGE HERO */
  .about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,64 Q300,0 600,64 T1200,64 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    pointer-events: none;
  }

  .about-hero .container {
    position: relative;
    z-index: 1;
  }

  .about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
  }

  .about-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .about-hero {
      padding: 60px 20px;
    }

    .about-hero-title {
      font-size: 2rem;
    }

    .about-hero-subtitle {
      font-size: 1rem;
    }
  }

  /* ABOUT MAIN CONTENT */
  .about-main {
    padding: 60px 20px;
  }

  /* MISSION, VISION, FUNCTIONS SECTION */
  .mvf-section {
    padding: 40px 0;
  }

  .mvf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .mvf-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .mvf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: var(--transition);
  }

  .mvf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }

  .mission-card::before {
    background: linear-gradient(90deg, #ff6b6b, #ff8787);
  }

  .vision-card::before {
    background: linear-gradient(90deg, #4ecdc4, #45b7aa);
  }

  .values-card::before {
    background: linear-gradient(90deg, var(--accent-color), #ffd966);
  }

  .mvf-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 63, 127, 0.08), rgba(17, 103, 177, 0.06));
  }

  .mission-card .mvf-icon {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 135, 135, 0.08));
    color: #ff6b6b;
  }

  .vision-card .mvf-icon {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(69, 183, 170, 0.08));
    color: #4ecdc4;
  }

  .values-card .mvf-icon {
    background: linear-gradient(135deg, rgba(255, 204, 51, 0.1), rgba(255, 217, 102, 0.08));
    color: var(--accent-color);
  }

  .mvf-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 0;
  }

  .mvf-description {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
  }

  @media (max-width: 1024px) {
    .mvf-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .mvf-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .mvf-card {
      padding: 24px 20px;
    }

    .mvf-title {
      font-size: 1.2rem;
    }

    .mvf-icon {
      width: 60px;
      height: 60px;
      font-size: 40px;
    }
  }

  /* FUNCTIONS SECTION */
  .functions-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 63, 127, 0.02) 100%);
  }

  .section-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    font-weight: 500;
  }

  .functions-content {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
  }

  .functions-intro {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 63, 127, 0.1);
  }

  .functions-intro p {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
  }

  .function-block, .dept-functions .function-block {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .function-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 18px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    align-items: flex-start;

    .function-block:nth-child(1), .dept-functions .function-block:nth-child(1) {
      animation-delay: 0.1s;
    }

    .function-block:nth-child(2), .dept-functions .function-block:nth-child(2) {
      animation-delay: 0.2s;
    }

    .function-block:nth-child(3), .dept-functions .function-block:nth-child(3) {
      animation-delay: 0.3s;
    }

    border-bottom: none;
    margin-bottom: 0;
  }

  .function-marker {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .function-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 1.6rem;
    }

    .section-subtitle {
      font-size: 1rem;
    }

    .functions-content {
      padding: 24px 20px;
    }

    .function-item {
      gap: 14px;
      margin-bottom: 16px;
      padding: 12px 0;
    }

    .function-marker {
      width: 32px;
      height: 32px;
      font-size: 0.8rem;
    }

    .function-text {
      font-size: 0.9rem;
    }
  }



  .dept-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,64 Q300,0 600,64 T1200,64 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    pointer-events: none;
  }

  .dept-hero .container {
    position: relative;
    z-index: 1;
  }

  .dept-hero-badge {
    display: inline-block;
    background: rgba(255, 204, 51, 0.2);
    color: var(--accent-color);
    padding: 8px 18px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 204, 51, 0.3);
  }

  .dept-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
  }

  .dept-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .dept-hero {
      padding: 70px 20px;
    }

    .dept-hero-title {
      font-size: 2rem;
    }

    .dept-hero-subtitle {
      font-size: 1rem;
    }
  }



  .overview-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
  }

  .overview-text {
    max-width: 900px;
  }

  .overview-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
  }

  .overview-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 28px;
  }

  .overview-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 63, 127, 0.04), rgba(17, 103, 177, 0.04));
    border-radius: 12px;
    border: 1px solid rgba(0, 63, 127, 0.08);
  }

  .feature-item i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
  }

  .feature-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
  }

  @media (max-width: 768px) {
    .overview-content {
      padding: 24px 20px;
    }

    .overview-title {
      font-size: 1.5rem;
    }

    .overview-features {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .feature-item {
      padding: 12px;
      font-size: 0.9rem;
    }
  }


  .dept-functions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 63, 127, 0.1), transparent);
    pointer-events: none;
  }

  .function-block, .dept-functions .function-block {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.95));
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.08);
    border: 2px solid rgba(0, 63, 127, 0.06);
    border-left: 5px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
    opacity: 0;
  }

  .function-block:nth-child(1), .dept-functions .function-block:nth-child(1) {
    animation-delay: 0.1s;
  }

  .function-block:nth-child(2), .dept-functions .function-block:nth-child(2) {
    animation-delay: 0.2s;
  }

  .function-block:nth-child(3), .dept-functions .function-block:nth-child(3) {
    animation-delay: 0.3s;
  }

  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .function-block::before, .dept-functions .function-block::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.06), transparent);
    border-radius: 50%;
    pointer-events: none;
  }

  .function-block::after, .dept-functions .function-block::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 220px;
    /* height: 220px; */
    background: radial-gradient(circle, rgba(0, 63, 127, 0.04), transparent);
    border-radius: 50%;
    pointer-events: none;
  }

  .function-block:hover, .dept-functions .function-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
    border-color: rgba(0, 63, 127, 0.12);
    border-left-color: var(--accent-color);
  }

  .function-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
  }

  .function-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 63, 127, 0.12), rgba(17, 103, 177, 0.08));
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 2px solid rgba(0, 63, 127, 0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 63, 127, 0.1);
  }

  .function-block:hover .function-icon, .dept-functions .function-block:hover .function-icon {
    transform: scale(1.12) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 63, 127, 0.16), rgba(255, 193, 7, 0.1));
    border-color: rgba(255, 193, 7, 0.2);
    box-shadow: 0 8px 24px rgba(0, 63, 127, 0.15);
  }

  .function-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.4s ease;
  }

  .function-block:hover .function-icon i, .dept-functions .function-block:hover .function-icon i {
    color: var(--accent-color);
    transform: scale(1.1);
  }

  .function-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.4px;
    transition: color 0.3s ease;
  }

  .function-block:hover .function-title, .dept-functions .function-block:hover .function-title {
    color: var(--accent-color);
  }

  .function-content {
    position: relative;
    z-index: 2;
  }

  .function-intro {
    font-size: 1.05rem;
    color: #3a4556;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.6;
    transition: color 0.3s ease;
  }

  .function-block:hover .function-intro, .dept-functions .function-block:hover .function-intro {
    color: var(--primary-color);
  }

  .function-items {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .func-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 63, 127, 0.08);
    align-items: flex-start;
    transition: all 0.3s ease;
    animation: fadeInLeft 0.6s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
    opacity: 0;
  }

  .func-item:nth-child(1) {
    animation-delay: 0.2s;
  }

  .func-item:nth-child(2) {
    animation-delay: 0.25s;
  }

  .func-item:nth-child(3) {
    animation-delay: 0.3s;
  }

  .func-item:nth-child(4) {
    animation-delay: 0.35s;
  }

  .func-item:nth-child(5) {
    animation-delay: 0.4s;
  }

  .func-item:nth-child(6) {
    animation-delay: 0.45s;
  }

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .func-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .func-item:hover {
    padding-left: 12px;
    padding-right: 8px;
  }

  .func-marker {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color, #1a5f99));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 63, 127, 0.15);
    transition: all 0.3s ease;
    position: relative;
  }

  .func-item:hover .func-marker {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 6px 18px rgba(0, 63, 127, 0.2);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  }

  .func-text {
    color: #4a5f7f;
    line-height: 1.8;
    font-size: 0.98rem;
    transition: color 0.3s ease;
  }

  .func-item:hover .func-text {
    color: #2a3f5f;
  }

  @media (max-width: 768px) {
    .dept-functions {
      padding: 40px 0;
    }

    .function-block, .dept-functions .function-block {
      padding: 28px 24px;
      margin-bottom: 24px;
      border-left-width: 4px;
    }

    .function-block::before, .dept-functions .function-block::before {
      width: 200px;
      height: 200px;
      right: -60px;
      top: -40px;
    }

    .function-block::after, .dept-functions .function-block::after {
      width: 150px;
      height: 150px;
      left: -50px;
      bottom: -50px;
    }

    .function-header {
      gap: 14px;
      margin-bottom: 20px;
    }

    .function-icon {
      width: 56px;
      height: 56px;
      border-radius: 12px;
    }

    .function-icon i {
      font-size: 26px;
    }

    .function-title {
      font-size: 1.3rem;
    }

    .function-intro {
      font-size: 0.95rem;
      margin-bottom: 18px;
    }

    .func-item {
      grid-template-columns: 36px 1fr;
      gap: 14px;
      margin-bottom: 16px;
      padding-bottom: 14px;
    }

    .func-marker {
      width: 36px;
      height: 36px;
      font-size: 0.8rem;
    }

    .func-text {
      font-size: 0.93rem;
    }
  }

  @media (max-width: 480px) {
    .dept-functions {
      padding: 32px 0;
    }

    .function-block, .dept-functions .function-block {
      padding: 20px 16px;
      margin-bottom: 18px;
      border-radius: 16px;
    }

    .function-block::before, .dept-functions .function-block::before {
      width: 150px;
      height: 150px;
      right: -50px;
      opacity: 0.5;
    }

    .function-block::after, .dept-functions .function-block::after {
      width: 100px;
      height: 100px;
      left: -40px;
      opacity: 0.5;
    }

    .function-header {
      gap: 12px;
      margin-bottom: 16px;
    }

    .function-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
    }

    .function-icon i {
      font-size: 22px;
    }

    .function-title {
      font-size: 1.1rem;
    }

    .function-intro {
      font-size: 0.9rem;
      margin-bottom: 14px;
    }

    .function-content {
      overflow: hidden;
    }

    .func-item {
      grid-template-columns: 32px 1fr;
      gap: 10px;
      margin-bottom: 12px;
      padding-bottom: 10px;
    }

    .func-marker {
      width: 32px;
      height: 32px;
      font-size: 0.75rem;
    }

    .func-text {
      font-size: 0.9rem;
    }
  }

  /* ================== MONITORING & EVALUATION PAGE STYLES ================== */

  /* M&E HERO */
  .me-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f766e 50%, var(--primary-color) 100%);
    color: white;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
  }

  .me-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><circle cx="100" cy="50" r="40" fill="rgba(255,255,255,0.05)"/><circle cx="1100" cy="80" r="60" fill="rgba(255,255,255,0.04)"/><path d="M0,64 Q300,0 600,64 T1200,64 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: cover;
    pointer-events: none;
  }

  .me-hero .container {
    position: relative;
    z-index: 1;
  }

  .me-hero-content {
    text-align: center;
  }

  .me-hero-badge {
    display: inline-block;
    background: rgba(255, 204, 51, 0.2);
    color: var(--accent-color);
    padding: 8px 18px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 204, 51, 0.3);
  }

  .me-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .me-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 500;
    margin-bottom: 28px;
  }

  .me-hero-icons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .me-icon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 0.95rem;
  }

  .me-icon-item i {
    font-size: 18px;
  }

  @media (max-width: 768px) {
    .me-hero {
      padding: 70px 20px;
    }

    .me-hero-title {
      font-size: 2rem;
    }

    .me-hero-subtitle {
      font-size: 1rem;
    }

    .me-hero-icons {
      gap: 12px;
    }

    .me-icon-item {
      padding: 10px 14px;
      font-size: 0.85rem;
    }
  }

  /* M&E MAIN CONTENT */
  .me-main {
    padding: 60px 20px;
  }

  /* RESPONSIBILITIES SECTION */
  .me-responsibilities {
    padding: 40px 0 60px 0;
  }

  .responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
  }

  .responsibility-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
  }

  .responsibility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #0f766e);
  }

  .responsibility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  }

  .resp-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }

  .resp-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(15, 118, 110, 0.08));
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }

  .resp-icon i {
    font-size: 24px;
    background: linear-gradient(135deg, #1e3a8a, #0f766e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .resp-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
  }

  .resp-body {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .resp-body p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
  }

  .resp-marker {
    display: inline-block;
    margin-top: 12px;
    background: linear-gradient(135deg, #1e3a8a, #0f766e);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.75rem;
    align-self: flex-start;
  }

  @media (max-width: 768px) {
    .responsibilities-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .responsibility-card {
      padding: 20px;
    }

    .resp-icon {
      width: 44px;
      height: 44px;
    }

    .resp-icon i {
      font-size: 20px;
    }

    .resp-title {
      font-size: 1.1rem;
    }

    .resp-body p {
      font-size: 0.9rem;
    }
  }

  /* CAPACITY BUILDING SECTION */
  .me-capacity {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.04), rgba(15, 118, 110, 0.04));
  }

  .capacity-wrapper {
    background: white;
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 800px;
    margin: 0 auto;
  }

  .capacity-icon {
    font-size: 64px;
    background: linear-gradient(135deg, #1e3a8a, #0f766e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: block;
  }

  .capacity-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
  }

  .capacity-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 28px;
  }

  .capacity-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
  }

  .cap-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .cap-feature i {
    font-size: 32px;
    background: linear-gradient(135deg, #1e3a8a, #0f766e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .cap-feature span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
  }

  @media (max-width: 768px) {
    .capacity-wrapper {
      padding: 32px 24px;
    }

    .capacity-title {
      font-size: 1.5rem;
    }

    .capacity-text {
      font-size: 0.95rem;
    }

    .capacity-features {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .capacity-icon {
      font-size: 48px;
    }
  }

  /* THINK TANK SECTION */
  .me-think-tank {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 63, 127, 0.02));
  }

  .think-tank-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .tt-left {
    padding-right: 20px;
  }

  .tt-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .tt-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
  }

  .tt-right {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 6px solid #0f766e;
  }

  .tt-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .tt-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    align-items: flex-start;
  }

  .tt-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .tt-marker {
    background: linear-gradient(135deg, #1e3a8a, #0f766e);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .tt-item span:last-child {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
  }

  @media (max-width: 1024px) {
    .think-tank-content {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .tt-left {
      padding-right: 0;
    }

    .tt-right {
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .me-think-tank {
      padding: 40px 0;
    }

    .tt-title {
      font-size: 1.5rem;
    }

    .tt-desc {
      font-size: 0.95rem;
    }

    .tt-right {
      padding: 24px;
    }

    .tt-item {
      grid-template-columns: 30px 1fr;
      gap: 12px;
      margin-bottom: 14px;
      padding-bottom: 12px;
    }

    .tt-marker {
      width: 30px;
      height: 30px;
      font-size: 0.75rem;
    }

    .tt-item span:last-child {
      font-size: 0.9rem;
    }
  }

  /* ================== ADMINISTRATION & SERVICES PAGE STYLES ================== */

  /* ADMIN HERO */
  .admin-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, var(--accent-color) 50%, #1e3a8a 100%);
    color: white;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
  }

  .admin-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,20 600,60 T1200,60 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/><circle cx="200" cy="80" r="30" fill="rgba(255,255,255,0.05)"/><circle cx="1000" cy="40" r="50" fill="rgba(255,255,255,0.04)"/></svg>');
    background-size: cover;
    pointer-events: none;
  }

  .admin-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .admin-hero-content {
    margin: 0;
  }

  .admin-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-color);
    padding: 8px 18px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .admin-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }

  .admin-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
  }

  .admin-hero-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .hero-stat {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
  }

  .stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 4px;
  }

  .stat-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 600;
  }

  @media (max-width: 1024px) {
    .admin-hero .container {
      grid-template-columns: 1fr;
    }

    .admin-hero-visual {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .admin-hero {
      padding: 70px 20px;
    }

    .admin-hero-title {
      font-size: 2rem;
    }

    .admin-hero-subtitle {
      font-size: 1rem;
    }

    .admin-hero-visual {
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .hero-stat {
      padding: 14px;
    }

    .stat-value {
      font-size: 1.6rem;
    }

    .stat-label {
      font-size: 0.75rem;
    }
  }

  /* ADMIN MAIN CONTENT */
  .admin-main {
    padding: 60px 20px;
  }

  /* ADMIN OVERVIEW */
  .admin-overview {
    padding: 40px 0 60px 0;
  }

  .overview-card {
    background: white;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
  }

  .overview-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
  }

  .overview-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 32px;
  }

  .overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 28px;
  }

  .overview-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.04), rgba(17, 103, 177, 0.04));
    border: 1px solid rgba(30, 58, 138, 0.08);
    transition: var(--transition);
  }

  .overview-item:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(17, 103, 177, 0.08));
  }

  .overview-item i {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 12px;
    display: block;
  }

  .overview-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
  }

  .overview-item p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
  }

  @media (max-width: 1024px) {
    .overview-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .overview-card {
      padding: 24px 20px;
    }

    .overview-title {
      font-size: 1.5rem;
    }

    .overview-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .overview-item {
      padding: 16px;
    }
  }

  /* ADMIN FUNCTIONS - TIMELINE STYLE */
  .admin-functions {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(30, 58, 138, 0.02));
  }

  .functions-timeline {
    position: relative;
    padding-left: 40px;
  }

  .functions-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1e3a8a, var(--accent-color));
    border-radius: 2px;
  }

  .function-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
    position: relative;
  }

  .step-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, var(--accent-color));
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    position: relative;
    left: -51.5px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
  }

  .step-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(30, 58, 138, 0.08);
    border-left: 4px solid #1e3a8a;
    transition: var(--transition);
  }

  .step-content:hover {
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.1);
    transform: translateX(8px);
  }

  .step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 12px 0;
  }

  .step-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
  }

  @media (max-width: 768px) {
    .functions-timeline {
      padding-left: 20px;
    }

    .functions-timeline::before {
      left: -3px;
    }

    .function-step {
      grid-template-columns: 50px 1fr;
      gap: 16px;
    }

    .step-marker {
      width: 50px;
      height: 50px;
      font-size: 1rem;
      left: -44px;
    }

    .step-content {
      padding: 16px;
    }

    .step-title {
      font-size: 1.05rem;
    }

    .step-desc {
      font-size: 0.9rem;
    }
  }

  /* SERVICES HIGHLIGHT SECTION */
  .admin-services-highlight {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03), rgba(17, 103, 177, 0.03));
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
  }

  .service-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, var(--accent-color));
    border-radius: 16px 16px 0 0;
  }

  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(30, 58, 138, 0.12);
  }

  .service-icon {
    font-size: 48px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(17, 103, 177, 0.08));
    color: #1e3a8a;
    width: 80px;
    height: 80px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
  }

  .service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .service-card {
      padding: 24px 20px;
    }

    .service-icon {
      width: 70px;
      height: 70px;
      font-size: 36px;
      margin-bottom: 12px;
    }

    .service-card h3 {
      font-size: 1.1rem;
    }

    .service-card p {
      font-size: 0.9rem;
    }
  }


  /* ===== Human Resource Page - UI Variants Helpers ===== */
  .classic-card {
    padding: 22px;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #fbfdff);
    border: 1px solid rgba(3, 26, 64, 0.04);
    box-shadow: var(--shadow);
  }

  .classic-list {
    list-style: disc;
    padding-left: 18px;
    color: var(--text-dark);
  }

  .classic-list li {
    margin-bottom: 10px;
    color: var(--muted);
  }

  .pro-stats {
    display: flex;
    gap: 18px;
    margin: 18px 0 28px;
    flex-wrap: wrap
  }

  .stat-card {
    background: linear-gradient(180deg, #fff, #f8fbff);
    padding: 18px;
    border-radius: 12px;
    min-width: 160px;
    text-align: center;
    border: 1px solid rgba(3, 26, 64, 0.04);
    box-shadow: var(--shadow);
  }

  .stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
  }

  .stat-label {
    color: var(--muted);
    font-weight: 700;
    margin-top: 6px
  }

  .pro-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 14px
  }

  .pro-card {
    background: white;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(3, 26, 64, 0.04);
    box-shadow: 0 6px 20px rgba(3, 26, 64, 0.04)
  }

  .modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
  }

  .modern-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(3, 26, 64, 0.04)
  }

  .modern-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px
  }

  .modern-item h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 8px
  }

  .modern-item p {
    color: var(--muted);
    font-size: 0.95rem
  }

  .unique-split {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 28px;
    align-items: start
  }

  .unique-left p {
    color: var(--text-dark);
    line-height: 1.8
  }

  .attachments ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px
  }

  .attachments li {
    margin-bottom: 6px
  }

  .link-muted {
    color: var(--primary-color);
    text-decoration: none
  }

  .timeline {
    background: white;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(3, 26, 64, 0.04);
    box-shadow: var(--shadow)
  }

  .tl-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(3, 26, 64, 0.04)
  }

  .tl-item:last-child {
    border-bottom: none
  }

  .tl-item span {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700
  }

  .tl-item p {
    margin: 0;
    color: var(--muted)
  }

  /* Responsive adjustments for the new sections */
  @media (max-width: 1024px) {
    .modern-grid {
      grid-template-columns: repeat(2, 1fr)
    }

    .pro-cards-grid {
      grid-template-columns: repeat(2, 1fr)
    }

    .unique-split {
      grid-template-columns: 1fr 1fr
    }
  }

  @media (max-width: 768px) {
    .modern-grid {
      grid-template-columns: 1fr
    }

    .pro-cards-grid {
      grid-template-columns: 1fr
    }

    .unique-split {
      grid-template-columns: 1fr;
      gap: 14px
    }

    .dept-hero {
      padding: 40px 20px;
    }
  }

  /* Research page small helpers (reuse existing tokens) */
  .classic-list {
    margin-left: 18px;
  }

  .pro-cards-grid .pro-card h3 {
    color: var(--primary-color);
  }

  .modern-item h4 {
    font-weight: 700
  }

  .unique-split .timeline {
    max-height: 420px;
    overflow: auto
  }

  .unique-split .timeline .tl-item p {
    color: var(--muted)
  }

  @media (max-width: 600px) {
    .dept-hero .dept-hero-title {
      font-size: 1.4rem
    }

    .dept-hero .dept-hero-subtitle {
      font-size: 0.95rem
    }
  }

  /* ===== MANAGEMENT PAGE STYLES ===== */
  .management-page .management-hero {
    padding: 18px 0
  }

  .management-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-left: 14px
  }

  .management-lead {
    color: var(--muted);
    font-size: 1rem;
    margin-left: 20px
  }

  .kicker {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-color), #ffd966);
    color: #003f7f;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700
  }

  .vision-section .card {
    border-radius: 12px;
    box-shadow: var(--shadow)
  }

  .profiles-section .section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color)
  }

  .profiles-grid .top-leader .portrait {
    width: 120px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    border: 4px solid rgba(0, 63, 127, 0.06)
  }

  .leader-card .portrait-sm {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid rgba(0, 63, 127, 0.06)
  }

  .top-leader .leader-name {
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: 800
  }

  .top-leader .leader-role {
    color: var(--muted);
    font-weight: 600
  }

  .leader-card {
    transition: transform .18s ease, box-shadow .18s ease;
    border-radius: 12px
  }

  .leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
  }


  .org-chart .org-level {
    gap: 20px
  }

  .org-node.small-card {
    width: 220px
  }

  .org-node .node-role {
    font-size: .85rem;
    color: var(--muted)
  }

  /* Organizational node photos and layout */
  .org-node .node-photo {
    width: 84px;
    height: 84px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(3, 26, 64, 0.08);
    border: 3px solid rgba(255, 255, 255, 0.06)
  }

  .org-node.top-leader-node .node-photo {
    width: 96px;
    height: 110px;
    border-radius: 8px;
    border: 4px solid rgba(255, 255, 255, 0.06)
  }

  .org-node .node-photo-sm {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid rgba(0, 63, 127, 0.06);
    box-shadow: 0 6px 18px rgba(3, 26, 64, 0.06)
  }

  .org-node .node-info .node-name {
    font-weight: 800;
    font-size: 1.05rem
  }

  .org-node .node-info .node-role {
    font-size: .95rem;
    color: #fff;
    opacity: 0.95
  }

  .org-node .node-dept {
    font-size: .82rem
  }

  .org-level {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
  }

  .org-node.small-card {
    min-width: 190px;
    max-width: 240px
  }

  .org-node.small-card .node-name {
    font-weight: 700;
    margin-bottom: 4px
  }

  .org-node.small-card .node-role {
    color: var(--muted);
    font-weight: 600
  }

  /* visual connector lines (simple) */
  .org-chart {
    position: relative
  }

 
  @media (max-width: 768px) {
    .org-node.top-leader-node {
      flex-direction: column;
      align-items: center
    }

    .org-node.top-leader-node .node-info {
      text-align: center
    }

    .org-node.small-card {
      width: 48%;
      margin-bottom: 12px
    }
  }

  @media (max-width: 480px) {
    .org-node.small-card {
      width: 100%
    }

    .org-node .node-photo-sm {
      width: 64px;
      height: 64px
    }

    .org-node.top-leader-node .node-photo {
      width: 84px;
      height: 96px
    }
  }


  /* Timeline List Container */
  .timeline-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
  }

  .timeline-list::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(0, 63, 127, 0.1), rgba(255, 193, 7, 0.1), rgba(0, 63, 127, 0.1));
    pointer-events: none;
  }

  /* Timeline Item */
  .timeline-item {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.6s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
    opacity: 0;
  }

  .timeline-item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .timeline-item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .timeline-item:nth-child(3) {
    animation-delay: 0.3s;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Timeline Card */
  .timeline-card {
    background: linear-gradient(135deg, rgba(17, 103, 177, 0.05), rgba(255, 193, 7, 0.03));
    border: 2px solid rgba(0, 63, 127, 0.1);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.08);
    position: relative;
    max-width: 900px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
    overflow: hidden;
  }

  .timeline-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 193, 7, 0.08) 100%);
    pointer-events: none;
    border-radius: 18px;
  }

  .timeline-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 63, 127, 0.2);
    box-shadow: 0 16px 48px rgba(30, 58, 138, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.5);
  }

  /* Leader Photo */
  .timeline-leader-photo {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .leader-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(0, 63, 127, 0.2);
    box-shadow:
      0 12px 36px rgba(0, 63, 127, 0.2),
      0 0 0 3px rgba(255, 193, 7, 0.15),
      inset 0 1px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  }

  .timeline-card:hover .leader-photo {
    transform: scale(1.1) translateZ(0);
    box-shadow:
      0 16px 48px rgba(0, 63, 127, 0.25),
      0 0 0 8px rgba(255, 193, 7, 0.25),
      inset 0 1px 2px rgba(255, 255, 255, 0.5);
    filter: brightness(1.05);
  }

  /* Leader Info */
  .timeline-leader-info {
    position: relative;
    z-index: 2;
  }

  .leader-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 6px;
    transition: color 0.3s ease;
  }

  .timeline-card:hover .leader-name {
    color: var(--accent-color);
  }

  .leader-role {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
    transition: color 0.3s ease;
  }

  .timeline-card:hover .leader-role {
    color: var(--primary-color);
  }

  .leader-bio {
    font-size: 0.9rem;
    color: #5a6b7f;
    line-height: 1.6;
    transition: color 0.3s ease;
  }

  .timeline-card:hover .leader-bio {
    color: #3a4556;
  }

  /* Timeline Period */
  .timeline-period {
    flex-shrink: 0;
    background: rgba(0, 63, 127, 0.04);
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 63, 127, 0.08);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
  }

  .timeline-card:hover .timeline-period {
    background: rgba(255, 193, 7, 0.08);
    border-color: rgba(255, 193, 7, 0.2);
  }

  .period-start,
  .period-end {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }

  .period-sep {
    color: var(--accent-color);
    margin: 4px 0;
    font-weight: 700;
  }

  .timeline-card:hover .period-start,
  .timeline-card:hover .period-end {
    color: var(--accent-color);
  }

  .establish-section .card, .achievements-section .card {
    border-radius: 12px
  }

  .achievements-list {
    list-style: disc;
    margin-left: 18px
  }

  @media (max-width: 980px) {
    .timeline-list::before {
      display: none;
    }

    .timeline-card {
      max-width: 100%;
    }

    .leader-photo {
      width: 90px;
      height: 90px;
    }

    .leader-name {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 768px) {
    .timeline-list {
      gap: 18px;
    }

    .timeline-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 32px 24px !important;
    }

    .timeline-leader-info {
      margin: 0;
    }

    .timeline-period {
      display: flex;
      gap: 12px;
      padding: 10px 16px;
      width: 100%;
      justify-content: center;
    }

    .period-start,
    .period-end {
      font-size: 1rem;
    }

    .leader-photo {
      width: 85px;
      height: 85px;
    }

    .leader-name {
      font-size: 1rem;
    }

    .leader-role {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 480px) {
    .timeline-list {
      gap: 14px;
    }

    .timeline-card {
      padding: 20px 16px !important;
      gap: 12px;
    }

    .leader-photo {
      width: 75px;
      height: 75px;
      border-width: 3px;
    }

    .leader-name {
      font-size: 0.95rem;
    }

    .leader-role {
      font-size: 0.85rem;
    }

    .timeline-period {
      padding: 8px 12px;
      font-size: 0.9rem;
    }

    .period-start,
    .period-end {
      font-size: 0.95rem;
    }
  }


  .dept-head-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 63, 127, 0.1), transparent);
  }

  .dept-head-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95));
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 12px 48px rgba(30, 58, 138, 0.1);
    border: 2px solid rgba(0, 63, 127, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  }

  .dept-head-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
  }

  .dept-head-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 63, 127, 0.06), transparent);
    border-radius: 50%;
    pointer-events: none;
  }

  .dept-head-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 63, 127, 0.16);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
  }

  .dept-head-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
  }

  .head-photo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInScale 0.6s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  }

  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.9);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .head-portrait {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(0, 63, 127, 0.15);
    box-shadow:
      0 16px 48px rgba(0, 63, 127, 0.2),
      0 0 0 4px rgba(255, 193, 7, 0.15),
      inset 0 1px 3px rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
    position: relative;
    z-index: 2;
  }

  .dept-head-card:hover .head-portrait {
    transform: scale(1.08) translateZ(0);
    box-shadow:
      0 20px 60px rgba(0, 63, 127, 0.25),
      0 0 0 10px rgba(255, 193, 7, 0.2),
      inset 0 1px 3px rgba(255, 255, 255, 0.6);
    filter: brightness(1.05);
  }

  .head-info {
    text-align: center;
    width: 100%;
  }

  .head-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
  }

  .dept-head-card:hover .head-name {
    color: var(--accent-color);
  }

  .head-role {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s ease;
  }

  .dept-head-card:hover .head-role {
    color: var(--primary-color);
  }

  .dept-head-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
  }

  .head-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 63, 127, 0.1), rgba(17, 103, 177, 0.08));
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(0, 63, 127, 0.15);
    width: fit-content;
    transition: all 0.3s ease;
  }

  .dept-head-card:hover .head-label {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(0, 63, 127, 0.12));
    border-color: rgba(255, 193, 7, 0.2);
    transform: translateY(-2px);
  }

  .dept-description {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .dept-desc-text {
    color: #4a5f7f;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
  }

  .dept-head-card:hover .dept-desc-text {
    color: #2a3f5f;
  }

  .head-bio {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
  }

  @media (max-width: 1024px) {
    .dept-head-card {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 40px;
    }

    .dept-head-left {
      align-items: center;
    }

    .head-portrait {
      width: 200px;
      height: 200px;
    }
  }

  @media (max-width: 768px) {
    .dept-head-section {
      padding: 40px 0;
    }

    .dept-head-card {
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 32px 24px;
      border-radius: 20px;
    }

    .dept-head-card::before {
      width: 220px;
      height: 220px;
      right: -60px;
      top: -40px;
    }

    .dept-head-card::after {
      width: 180px;
      height: 180px;
      left: -80px;
      bottom: -60px;
    }

    .head-portrait {
      width: 180px;
      height: 180px;
      border-width: 4px;
    }

    .head-name {
      font-size: 1.2rem;
    }

    .head-role {
      font-size: 0.9rem;
    }

    .dept-description {
      gap: 12px;
    }

    .dept-desc-text {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 480px) {
    .dept-head-section {
      padding: 32px 0;
    }

    .dept-head-card {
      padding: 24px 16px;
      gap: 20px;
    }

    .dept-head-card::before {
      width: 150px;
      height: 150px;
      right: -50px;
      opacity: 0.5;
    }

    .dept-head-card::after {
      width: 120px;
      height: 120px;
      left: -60px;
      opacity: 0.5;
    }

    .head-portrait {
      width: 160px;
      height: 160px;
      border-width: 3px;
    }

    .head-name {
      font-size: 1rem;
    }

    .head-role {
      font-size: 0.85rem;
    }

    .head-label {
      font-size: 0.8rem;
      padding: 6px 12px;
    }

    .dept-desc-text {
      font-size: 0.85rem;
      line-height: 1.6;
    }
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
    .management-title {
      font-size: 1.6rem
    }

    .profiles-grid .top-leader {
      flex-direction: column;
      align-items: flex-start
    }

    .profiles-grid .top-leader .portrait {
      width: 100%;
      height: auto;
      max-width: 220px
    }

    .org-node.small-card {
      width: 160px
    }
  }


  /* ===== DOCUMENTS PAGE STYLES ===== */
  .docs-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f766e 50%, var(--primary-color) 100%);
    color: white;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .docs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><circle cx="100" cy="50" r="40" fill="rgba(255,255,255,0.05)"/><circle cx="1100" cy="80" r="60" fill="rgba(255,255,255,0.04)"/><path d="M0,64 Q300,0 600,64 T1200,64 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: cover;
    pointer-events: none;
  }

  .docs-hero .container {
    position: relative;
    z-index: 1;
  }

  .docs-badge {
    display: inline-block;
    background: rgba(255, 204, 51, 0.2);
    color: var(--accent-color);
    padding: 8px 18px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 204, 51, 0.3);
  }

  .docs-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
  }

  .docs-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .docs-hero {
      padding: 70px 20px;
    }

    .docs-hero-title {
      font-size: 2rem;
    }

    .docs-hero-subtitle {
      font-size: 1rem;
    }
  }

  .docs-section {
    padding: 60px 20px;
    background: #f6f8fb;
  }

  .docs-filters {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 18px rgba(30, 58, 138, 0.06);
    margin-bottom: 32px;
    border: 1px solid rgba(30, 58, 138, 0.04);
  }

  .filters-header {
    margin-bottom: 24px;
  }

  .filters-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
  }

  /* make the header a horizontal bar with title left and reset button right */
  .filters-header.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .filters-header .filters-reset {
    margin-left: auto
  }

  .filters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .filter-group {
    display: flex;
    flex-direction: column;
  }

  .filter-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
  }

  .filter-select {
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: border-color 0.2s;
  }

  .filter-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 204, 51, 0.1);
  }

  .btn-filter-reset {
    background: linear-gradient(135deg, #1e3a8a, var(--accent-color));
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-end;
  }

  .btn-filter-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.15);
  }

  @media (max-width: 1024px) {
    .filters-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .filters-grid {
      grid-template-columns: 1fr;
    }

    .btn-filter-reset {
      align-self: stretch;
    }
  }

  @media (max-width: 768px) {
    .filters-header.d-flex {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px
    }

    .filters-header .filters-reset {
      width: 100%
    }

    .filters-header .filters-reset .btn-filter-reset {
      width: 100%
    }
  }

  .docs-count {
    margin-bottom: 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
  }

  .docs-count span {
    color: var(--accent-color);
  }

  .docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
  }

  .doc-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(30, 58, 138, 0.06);
    border: 1px solid rgba(30, 58, 138, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .doc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(30, 58, 138, 0.12);
  }

  .doc-card-header {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(17, 103, 177, 0.06));
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid rgba(30, 58, 138, 0.06);
    /* ensure header leaves space on the right for the new indicator */
    padding-right: 64px;
    position: relative;
  }

  .doc-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: white;
    display: grid;
    place-items: center;
    font-size: 28px;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.08);
  }

  .doc-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }

  .doc-year, .doc-type {
    display: inline-block;
    background: var(--accent-color);
    color: #1e3a8a;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
  }

  .doc-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .doc-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 12px 0;
  }

  .doc-description {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 auto 0;
  }

  .doc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(30, 58, 138, 0.06);
  }

  .doc-date {
    font-size: 0.9rem;
    color: var(--muted);
  }

  .doc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
  }

  .doc-link:hover {
    color: #1e3a8a;
  }

  @media (max-width: 768px) {
    .docs-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
    }

    .doc-card-body {
      padding: 16px;
    }

    .doc-title {
      font-size: 1.05rem;
    }
  }

  @media (max-width: 480px) {
    .docs-grid {
      grid-template-columns: 1fr;
    }

    .doc-card-header {
      flex-direction: column;
    }

    .doc-meta {
      justify-content: flex-start;
      margin-top: 12px;
    }
  }




  /* If there is no computed topbar height, fall back to 0 */
  :root {
    --topbar-height: 0px;
  }


  /* ================== THE NAVIGATOR ORB (BACK TO TOP) START ================== */
  .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 3000;
    display: inline-grid;
    place-items: center;
    width: 55px;
    height: 55px;
    border-radius: 15px;
    /* Modern Soft Square */
    border: 2px solid var(--accent-color);
    /* Dhahabu Border */
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(.175, .885, .32, 1.275);
    background: var(--primary-color);
    /* Kijani cha Mapinduzi */
    color: var(--accent-color);
    /* Dhahabu Arrow */
    box-shadow: 0 10px 25px rgba(0, 133, 63, 0.3);
  }

  .back-to-top i {
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  /* Hover Effect: Pulse and Glow */
  .back-to-top:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--accent-color);
    border-color: var(--white);
  }

  .back-to-top:hover i {
    transform: translateY(-3px);
    /* Mshale unacheza kwenda juu */
  }

  /* Active State (Inapoonekana) */
  .back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: orbPulse 2s infinite;
    /* Pulse animation hafifu */
  }

  @keyframes orbPulse {
    0% {
      box-shadow: 0 0 0 0 rgba(247, 209, 23, 0.4);
    }

    70% {
      box-shadow: 0 0 0 15px rgba(247, 209, 23, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(247, 209, 23, 0);
    }
  }

  /* Responsive Fix */
  @media (max-width: 480px) {
    .back-to-top {
      right: 20px;
      bottom: 20px;
      width: 48px;
      height: 48px;
      border-radius: 12px;
    }
  }

  /* BACK TO TOP BUTTON END */


  /* Modern document card enhancements (overrides to give a pro look) */
  .docs-grid {
    gap: 1.25rem;
  }

  .doc-card {
    border-radius: 12px;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  }

  .doc-card .doc-card-header {
    padding: 16px;
  }

  .doc-card .doc-card-body {
    padding: 18px;
  }

  .doc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(2, 6, 23, 0.10);
    border-color: rgba(3, 26, 64, 0.06);
  }

  /* compact icon */
  .doc-card .doc-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 63, 127, 0.06), rgba(17, 103, 177, 0.04));
    color: var(--primary-color);
    font-size: 18px
  }

  /* PDF icon inside doc-type */
  .doc-type i {
    font-size: 14px;
    color: var(--primary-color);
  }

  /* size label */
  .doc-size {
    font-size: 0.85rem;
    color: rgba(11, 37, 64, 0.6);
    margin-left: 8px
  }

  /* new indicator */
  .doc-new-indicator {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    padding: 4px 8px;
    border-radius: 999px;
    z-index: 5;
  }

  .doc-new-indicator .new-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4d4f;
    box-shadow: 0 0 0 rgba(255, 77, 79, 0.6);
    animation: doc-blink 1.6s infinite;
    display: inline-block
  }

  .doc-new-indicator .new-label {
    font-size: 0.78rem;
    color: #ff4d4f;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: inline-block;
    animation: label-blink 1.6s infinite;
  }

  @keyframes doc-blink {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 77, 79, 0.9);
    }

    70% {
      box-shadow: 0 0 0 8px rgba(255, 77, 79, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(255, 77, 79, 0);
    }
  }

  @keyframes label-blink {
    0% {
      opacity: 1
    }

    68% {
      opacity: 1
    }

    69% {
      opacity: 0.18
    }

    100% {
      opacity: 0.18
    }
  }

  /* visible state for filtered items */
  .doc-visible {
    animation: fadeIn 0.28s ease both;
  }

  /* Preview modal tweaks (keeps parity with existing modal rules but ensures edge-to-edge on wide screens) */
  .doc-preview-modal {
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem;
  }

  .doc-preview-modal.open {
    display: flex;
  }

  .doc-preview-overlay {
    background: rgba(7, 12, 20, 0.6);
  }

  .doc-preview-content {
    width: 100%;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
  }

  .doc-preview-body {
    height: 72vh;
  }

  .doc-preview-iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* ================== ORGANIZATIONAL CHART ================== */
  .management-page {
    padding: 40px 0;
  }

  .management-hero {
    background: linear-gradient(135deg, rgba(17, 103, 177, 0.08), rgba(255, 193, 7, 0.04));
    padding: 60px 48px;
    border-radius: 20px;
    border: 2px solid rgba(17, 103, 177, 0.12);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  }

  .management-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
  }

  .management-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(17, 103, 177, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
  }

  .management-hero:hover {
    box-shadow: 0 18px 56px rgba(30, 58, 138, 0.12);
    border-color: rgba(17, 103, 177, 0.18);
  }

  .management-title {
    color: var(--primary-color);
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
  }

  .management-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin-bottom: 16px;
    border-radius: 3px;
  }

  .management-lead {
    color: #5a6b7f;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    padding: 0;
    position: relative;
    z-index: 2;
    max-width: 700px;
  }

  /* Org Chart Container */
  .org-chart {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid rgba(30, 58, 138, 0.08);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  }

  .org-chart:hover {
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.12);
  }



  .top-leader-node {
    background: linear-gradient(135deg, rgba(17, 103, 177, 0.05), rgba(255, 193, 7, 0.03));
    border: 2px solid rgba(0, 63, 127, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.1);
    position: relative;
    overflow: hidden;
  }

  .top-leader-node::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 193, 7, 0.1) 100%);
    pointer-events: none;
  }

  .top-leader-node:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 63, 127, 0.2);
    box-shadow: 0 16px 48px rgba(30, 58, 138, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.5);
  }

  /* Node Photos - Circular Avatars */
  .node-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(17, 103, 177, 0.2);
    box-shadow: 0 8px 24px rgba(0, 63, 127, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
    position: relative;
    z-index: 2;
  }

  .top-leader-node .node-photo {
    width: 120px;
    height: 120px;
    border-width: 5px;
    border-color: var(--accent-color);
    box-shadow:
      0 12px 36px rgba(0, 63, 127, 0.2),
      0 0 0 3px rgba(255, 193, 7, 0.15),
      inset 0 1px 2px rgba(255, 255, 255, 0.5);
  }

  .top-leader-node .node-photo:hover {
    transform: scale(1.08) translateZ(0);
    box-shadow:
      0 16px 48px rgba(0, 63, 127, 0.25),
      0 0 0 8px rgba(255, 193, 7, 0.25),
      inset 0 1px 2px rgba(255, 255, 255, 0.5);
    filter: brightness(1.05);
  }

  /* Secondary Leaders */
  .small-card .node-photo-sm {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 63, 127, 0.15);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
  }

  /* Org Level (Secondary Leaders) */
  .org-level {
    position: relative;
    padding-top: 40px;
  }

  .org-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 63, 127, 0.2), transparent);
  }

  .small-card {
    background: linear-gradient(135deg, #ffffff 0%, #fbfdff 100%);
    border: 1.5px solid rgba(0, 63, 127, 0.08);
    border-radius: 16px;
    min-width: 220px;
    max-width: 260px;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.06);
    position: relative;
    overflow: hidden;
  }

  .small-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
  }

  .small-card:hover {
    transform: translateY(-12px) translateZ(0);
    border-color: rgba(0, 63, 127, 0.2);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
  }

  .small-card:hover::before {
    transform: scaleX(1);
  }

  .small-card:hover .node-photo-sm {
    transform: scale(1.1) translateZ(0);
    box-shadow: 0 10px 28px rgba(30, 58, 138, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.4);
    border-color: var(--primary-color);
  }

  /* Node Info */
  .node-info {
    flex: 1;
    z-index: 2;
    position: relative;
  }

  .node-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    transition: color 0.3s ease;
  }

  .top-leader-node .node-name {
    font-size: 1.3rem;
    color: #003f7f;
  }

  .node-role {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 6px;
    transition: color 0.3s ease;
  }

  .node-dept {
    font-size: 0.85rem;
    color: #7a8c9e;
    transition: color 0.3s ease;
  }

  .small-card:hover .node-name {
    color: var(--accent-color);
  }

  .small-card:hover .node-role {
    color: var(--primary-color);
  }

  .small-card:hover .node-dept {
    color: var(--primary-color);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .management-hero {
      padding: 40px 28px;
    }

    .management-title {
      font-size: 1.8rem;
      margin-bottom: 14px;
    }

    .management-lead {
      font-size: 0.95rem;
    }

    .management-hero::before {
      width: 220px;
      height: 220px;
      right: -80px;
      top: -40px;
    }

    .management-hero::after {
      width: 180px;
      height: 180px;
      left: -80px;
      bottom: -60px;
    }

    .org-chart {
      padding: 24px !important;
    }

    .top-leader-node {
      flex-direction: column;
      text-align: center;
      gap: 16px;
    }

    .node-photo {
      width: 90px;
      height: 90px;
      border-width: 3px;
    }

    .top-leader-node .node-photo {
      width: 100px;
      height: 100px;
      border-width: 4px;
    }

    .node-info {
      text-align: center;
    }

    .org-level {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .small-card {
      min-width: 200px;
      max-width: 240px;
    }

    .small-card .node-photo-sm {
      width: 80px;
      height: 80px;
      border-width: 2.5px;
    }
  }

  @media (max-width: 480px) {
    .management-hero {
      padding: 24px;
      border-radius: 16px;
    }

    .management-title {
      font-size: 1.5rem;
      margin-bottom: 12px;
    }

    .management-title::before {
      width: 50px;
      height: 4px;
      margin-bottom: 12px;
    }

    .management-lead {
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .management-hero::before {
      width: 150px;
      height: 150px;
      right: -60px;
      top: -80px;
      opacity: 0.5;
    }

    .management-hero::after {
      width: 120px;
      height: 120px;
      left: -60px;
      bottom: -80px;
      opacity: 0.5;
    }

    .org-chart {
      padding: 16px !important;
    }

    .top-leader-node {
      padding: 16px !important;
    }

    .small-card {
      padding: 12px !important;
      min-width: 180px;
      max-width: 220px;
    }

    .node-name {
      font-size: 0.95rem;
    }

    .top-leader-node .node-name {
      font-size: 1.1rem;
    }

    .node-role {
      font-size: 0.85rem;
    }

    .node-dept {
      font-size: 0.8rem;
    }

    .small-card .node-photo-sm {
      width: 70px;
      height: 70px;
      margin-bottom: 8px !important;
    }
  }

  @media (max-width: 768px) {
    .doc-preview-body {
      height: 60vh;
    }

    .docs-grid {
      gap: 12px;
    }
  }

  /* ===== ZPC ORGANIZATION CARD (MISSION-VISION PAGE) ===== */
  .zpc-organization-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.95));
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 12px 48px rgba(30, 58, 138, 0.1);
    border: 2px solid rgba(0, 63, 127, 0.08);
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .zpc-organization-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
  }

  .zpc-organization-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 63, 127, 0.06), transparent);
    border-radius: 50%;
    pointer-events: none;
  }



  .org-icon-badge {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 63, 127, 0.12), rgba(17, 103, 177, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 3px solid rgba(0, 63, 127, 0.12);
    box-shadow: 0 8px 24px rgba(0, 63, 127, 0.12);
    font-size: 42px;
    color: var(--primary-color);
    animation: fadeInScale 0.6s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  }

  .org-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
  }

  .org-kicker {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0;
  }

  .org-content {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
  }

  .org-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5f7f;
    margin: 0;
    text-align: justify;
  }



  .org-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .org-list-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 63, 127, 0.04), rgba(17, 103, 177, 0.03));
    border-radius: 14px;
    border: 1px solid rgba(0, 63, 127, 0.08);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.2, 1);
    align-items: flex-start;
  }

  .org-list-item.full-width {
    grid-column: 1 / -1;
  }

  .org-list-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 63, 127, 0.16);
    background: linear-gradient(135deg, rgba(0, 63, 127, 0.08), rgba(17, 103, 177, 0.06));
    box-shadow: 0 8px 24px rgba(0, 63, 127, 0.12);
  }

  .org-item-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 63, 127, 0.15);
    transition: all 0.3s ease;
  }

  .org-list-item:hover .org-item-number {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 63, 127, 0.2);
  }

  .org-item-text {
    color: #2a3f5f;
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
  }

  .org-highlight-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(0, 63, 127, 0.04));
    border-radius: 16px;
    padding: 28px;
    border: 2px solid rgba(255, 193, 7, 0.15);
    position: relative;
  }

  .org-highlight-text {
    font-size: 1.05rem;
    /* font-weight: 700; */
    /* color: var(--primary-color); */
    margin: 0 0 16px 0;
    line-height: 1.6;
  }

  .org-expertise-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
  }

  .org-expertise-list li {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    color: #4a5f7f;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .org-expertise-list li:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 63, 127, 0.1);
  }

  .org-highlight-sub {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    font-style: italic;
    line-height: 1.6;
  }

  @media (max-width: 1024px) {
    .zpc-organization-card {
      padding: 48px 40px;
    }

    .org-title {
      font-size: 1.7rem;
    }

    .org-list-grid {
      grid-template-columns: 1fr;
    }

    .org-list-item.full-width {
      grid-column: auto;
    }
  }

  @media (max-width: 768px) {
    .zpc-organization-card {
      padding: 32px 24px;
    }

    .zpc-organization-card::before {
      width: 250px;
      height: 250px;
      right: -60px;
      top: -40px;
    }

    .zpc-organization-card::after {
      width: 200px;
      height: 200px;
      left: -50px;
      bottom: -50px;
    }

    .org-icon-badge {
      width: 70px;
      height: 70px;
      font-size: 32px;
      margin-bottom: 16px;
    }

    .org-title {
      font-size: 1.4rem;
    }

    .org-kicker {
      font-size: 0.9rem;
    }



    .org-intro {
      font-size: 0.95rem;
    }

    .org-list-item {
      padding: 16px;
      gap: 12px;
    }

    .org-item-number {
      width: 42px;
      height: 42px;
      font-size: 0.9rem;
    }

    .org-item-text {
      font-size: 0.9rem;
    }
  }

  /* ===== GALLERY ITEM HOVER EFFECTS ===== */
  .gallery-item:hover .gallery-image {
    transform: scale(1.08);
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }

  .gallery-item:hover .gallery-info {
    opacity: 1;
    transform: translateY(0);
  }

  .org-expertise-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .org-expertise-list li {
    font-size: 0.9rem;
  }

  .org-highlight-box {
    padding: 20px;
  }

  .org-highlight-text {
    font-size: 0.95rem;
  }

  .org-highlight-sub {
    font-size: 0.9rem;
  }

  /* ===== MANAGEMENT HERO: force full-width leads inside the section ===== */
  /* Ensures management-lead paragraphs span the full content area of the management-hero
   (edge-to-edge within the section), removes paragraph max-width and extra gutters. */
  .management-hero .row {
    margin-left: 0;
    margin-right: 0;
  }

  .management-hero .col-12 {
    padding-left: 0;
    padding-right: 0;
  }

  .management-hero .management-lead {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }


  /* =======================
   Search Results - Pro UI
   ======================= */
  .search-results .result-section {
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
  }

  .search-results .result-section:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }

  .result-card {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
  }

  .result-card:hover {
    background: rgba(0, 0, 0, 0.02);
  }

  .result-card .thumb {
    width: 64px;
    height: 48px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid rgba(16, 24, 40, 0.04);
  }

  .search-results .card-title {
    font-size: 1.05rem;
    font-weight: 700;
  }

  .search-results .text-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .search-results .badge {
    font-weight: 700;
  }

  /* Responsive tweaks */
  @media (max-width: 767.98px) {
    .search-results .thumb {
      width: 56px;
      height: 44px;
    }

    .main-title, .org-name {
      font-size: 1rem;
    }
  }

  /* Small utility for empty state */
  .search-results .card .text-muted small {
    font-size: .85rem;
  }



  /* ================== PROCUREMENTS ================== */

  .procurements-section {
    padding: 28px 0 70px;
  }

  .procurements-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(0, 63, 127, 0.15);
    box-shadow: 0 4px 16px rgba(0, 50, 100, 0.08);
  }

  .procurements-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    font-size: 0.95rem;
  }

  .procurements-table thead {
    background: linear-gradient(90deg, rgba(0, 63, 127, 0.08) 0%, rgba(13, 133, 189, 0.05) 100%);
    border-bottom: 3px solid rgba(0, 63, 127, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .procurements-table thead th {
    padding: 16px 14px;
    text-align: left;
    font-weight: 800;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-right: 1px solid rgba(0, 63, 127, 0.1);
  }

  .procurements-table thead th:last-child {
    border-right: none;
  }

  .procurements-table tbody tr {
    border-bottom: 1px solid rgba(0, 63, 127, 0.08);
    transition: all 0.2s ease;
  }

  .procurements-table tbody tr:hover {
    background: rgba(13, 133, 189, 0.04);
    box-shadow: inset 0 0 8px rgba(0, 63, 127, 0.04);
  }

  .procurements-table tbody tr.procurement-row {
    display: table-row;
  }

  .procurements-table tbody td {
    padding: 14px;
    color: var(--muted);
    vertical-align: middle;
    border-right: 1px solid rgba(0, 63, 127, 0.06);
  }

  .procurements-table tbody td:last-child {
    border-right: none;
  }

  .col-index {
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    width: 50px;
    min-width: 50px;
  }

  .col-title {
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 200px;
    white-space: nowrap;
  }

  .col-summary {
    min-width: 300px;
    max-width: 400px;
  }

  .summary-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--muted);
  }

  .col-date {
    min-width: 110px;
    text-align: center;
    font-weight: 600;
    color: rgba(0, 63, 127, 0.7);
  }

  .status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
  }

  .status-badge.opened {
    background: rgba(13, 133, 189, 0.12);
    color: var(--primary-color);
  }

  .status-badge.closed {
    background: rgba(39, 167, 93, 0.12);
    color: #1d8c4d;
  }

  .status-badge.pending {
    background: rgba(243, 228, 40, 0.2);
    color: #8a7d12;
  }

  /* ================== RESPONSIVE ================== */

  /* Large devices <= 1200px */
  @media (max-width: 1200px) {
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .projects-table thead th {
      padding: 14px 10px;
      font-size: 0.8rem;
    }

    .projects-table tbody td {
      padding: 12px 10px;
      font-size: 0.9rem;
    }

    .procurements-table thead th {
      padding: 14px 10px;
      font-size: 0.8rem;
    }

    .procurements-table tbody td {
      padding: 12px 10px;
      font-size: 0.9rem;
    }

    .col-title {
      min-width: 160px;
    }

    .col-summary {
      min-width: 250px;
      max-width: 300px;
    }
  }

  /* Laptops <= 992px */
  @media (max-width: 992px) {
    .hero-grid {
      grid-template-columns: 1fr;
    }

    .topbar-inner {
      flex-direction: column;
      align-items: flex-start;
      padding: 14px 0;
    }

    .top-nav {
      flex-wrap: wrap;
    }

    .hero-title {
      max-width: 100%;
    }
  }

  /* Tablets <= 768px */
  @media (max-width: 768px) {

    .projects-grid,
    .stats-grid,
    .panel-mini-grid {
      grid-template-columns: 1fr;
    }

    .hero-section {
      padding-top: 34px;
    }

    .hero-title {
      font-size: 2.2rem;
    }

    .section-title {
      font-size: 1.8rem;
    }

    .project-card,
    .stat-card,
    .panel-main,
    .panel-card.mini {
      padding: 18px;
    }

    .filter-tabs {
      overflow-x: auto;
      padding-bottom: 4px;
    }

    .filter-tabs::-webkit-scrollbar {
      height: 6px;
    }

    .filter-tabs::-webkit-scrollbar-thumb {
      background: rgba(13, 133, 189, 0.2);
      border-radius: 999px;
    }

    /* Table Responsive */
    .projects-table-wrapper {
      border: 1px solid rgba(0, 63, 127, 0.12);
      border-radius: 8px;
    }

    .projects-table {
      font-size: 0.85rem;
    }

    .projects-table thead th {
      padding: 12px 8px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .projects-table tbody td {
      padding: 10px 8px;
      font-size: 0.85rem;
    }

    .col-title {
      min-width: 140px;
    }

    .btn-view-details {
      padding: 6px 12px;
      font-size: 0.8rem;
    }

    .table-progress-bar {
      min-width: 100px;
    }

    .progress-percent {
      font-size: 0.8rem;
    }

    /* Procurements Table Responsive */
    .procurements-table-wrapper {
      border: 1px solid rgba(0, 63, 127, 0.12);
      border-radius: 8px;
    }

    .procurements-table {
      font-size: 0.85rem;
    }

    .procurements-table thead th {
      padding: 12px 8px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .procurements-table tbody td {
      padding: 10px 8px;
      font-size: 0.85rem;
    }

    .col-index {
      width: 40px;
      min-width: 40px;
      padding: 10px 6px;
    }

    .col-title {
      min-width: 140px;
    }

    .col-summary {
      min-width: 220px;
      max-width: 280px;
    }

    .summary-text {
      -webkit-line-clamp: 1;
      line-clamp: 1;
      font-size: 0.85rem;
    }

    .col-date {
      min-width: 90px;
      font-size: 0.8rem;
    }

    .status-badge {
      padding: 6px 10px;
      font-size: 0.75rem;
    }

    .btn-view-details {
      padding: 6px 12px;
      font-size: 0.8rem;
    }
  }

  /* Phones <= 480px */
  @media (max-width: 480px) {
    .container {
      width: min(100% - 20px, var(--container-width));
    }

    .brand-wrap {
      align-items: flex-start;
    }

    .brand-title {
      font-size: 0.95rem;
    }

    .hero-title {
      font-size: 1.9rem;
    }

    .hero-actions {
      flex-direction: column;
    }

    .btn {
      width: 100%;
    }

    .search-box input {
      height: 54px;
      font-size: 0.95rem;
    }

    /* Mobile Table Styles */
    .projects-table-wrapper {
      border-radius: 6px;
      overflow-x: auto;
    }

    .projects-table {
      font-size: 0.8rem;
      min-width: 600px;
    }

    .projects-table thead th {
      padding: 10px 6px;
      font-size: 0.7rem;
      font-weight: 700;
    }

    .projects-table tbody td {
      padding: 8px 6px;
      font-size: 0.8rem;
    }

    .col-title {
      min-width: 120px;
      font-size: 0.85rem;
    }

    .project-sector {
      padding: 6px 10px;
      font-size: 0.75rem;
    }

    .status-badge {
      padding: 6px 10px;
      font-size: 0.75rem;
    }

    .table-progress-bar {
      min-width: 80px;
      gap: 4px;
    }

    .progress-percent {
      font-size: 0.75rem;
      min-width: 30px;
    }

    .btn-view-details {
      padding: 5px 10px;
      font-size: 0.75rem;
      white-space: nowrap;
    }

    .project-top {
      flex-direction: column;
      align-items: flex-start;
    }

    /* Mobile Procurements Table Styles */
    .procurements-table-wrapper {
      border-radius: 6px;
      overflow-x: auto;
    }

    .procurements-table {
      font-size: 0.8rem;
      min-width: 800px;
    }

    .procurements-table thead th {
      padding: 10px 6px;
      font-size: 0.7rem;
      font-weight: 700;
    }

    .procurements-table tbody td {
      padding: 8px 6px;
      font-size: 0.8rem;
    }

    .col-index {
      width: 35px;
      min-width: 35px;
      padding: 8px 4px;
      font-size: 0.75rem;
    }

    .col-title {
      min-width: 120px;
      font-size: 0.85rem;
    }

    .col-summary {
      min-width: 250px;
      max-width: 300px;
    }

    .summary-text {
      -webkit-line-clamp: 1;
      line-clamp: 1;
      font-size: 0.8rem;
    }

    .col-date {
      min-width: 80px;
      font-size: 0.75rem;
      padding: 8px 4px;
    }

    .status-badge {
      padding: 5px 8px;
      font-size: 0.7rem;
    }

    .btn-view-details {
      padding: 5px 10px;
      font-size: 0.75rem;
      white-space: nowrap;
    }

  }


  /* Left Side (Vitengo) */
  .left-side {
    align-items: flex-end;
    padding-right: 40px;
  }

  .division-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    border-left: 2px solid var(--secondary-color);
    padding-left: 15px;
    margin-left: 10px;
  }


  .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .sub-title {
    display: block;
    color: var(--accent-deep);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .center-align {
    text-align: center;
  }



  /* --- INTRO SECTION --- */
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .intro-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 20px;
  }

  .lead-paragraph {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 30px;
  }

  .image-placeholder {
    position: relative;
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }

  .image-placeholder img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
  }

  .experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
  }

  .experience-badge h3 {
    font-size: 2.5rem;
    font-weight: 900;
  }

  .experience-badge p {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
  }

  /* --- CORE IDENTITY --- */
  .core-identity {
    background-color: var(--light-bg);
  }

  .core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .core-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .core-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }

  .core-card.primary-bg {
    background-color: var(--secondary-color);
    color: var(--white);
  }

  .core-card.primary-bg h3 {
    color: var(--primary-color);
  }

  .core-card.accent-border {
    border-top: 5px solid var(--accent-color);
  }

  .icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .core-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .core-card ul {
    list-style: none;
    margin-top: 20px;
    font-size: 0.95rem;
  }

  .core-card ul li {
    padding: 6px 0;
    border-bottom: 1px solid var(--stroke);
  }

  .primary-bg ul li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .goals-list li {
    border-bottom: none;
  }

  /* --- RESPONSIBILITIES SECTION --- */
  .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .info-block {
    padding: 30px;
    border-left: 4px solid var(--stroke);
  }

  .info-block h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
  }

  .info-block p {
    color: var(--muted);
  }

  .large-span {
    grid-column: span 2;
    margin-top: 20px;
    border-left-color: var(--primary-color);
  }

  /* RESPONSIVE DESIGN */
  @media (max-width: 992px) {
    .intro-grid, .core-grid, .details-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }


    .experience-badge {
      bottom: 0;
      right: 0;
      padding: 15px;
      border-radius: var(--radius-sm);
    }
  }



  /* ================== THE HERITAGE WAVE FOOTER START ================== */
  .footer {
    background: var(--secondary-color);
    color: var(--white);
    position: relative;
    padding: 100px 0 30px;
    overflow: hidden;
  }

  /* Creative Wave Top Border */
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--ocean-blue) 50%, var(--accent-color) 100%);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    /* Custom widths kwa ajili ya balance */
    gap: 50px;
    position: relative;
    z-index: 2;
  }

  /* SECTION TITLES */
  .footer-section h4 {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 5px;
  }

  /* TEXT & CONTACTS */
  .footer-section p {
    color: var(--neutral);
    margin-bottom: 12px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-section p i {
    color: var(--primary-color);
    font-size: 1.1rem;
  }

  /* LINKS WITH CREATIVE HOVER */
  .footer-links {
    list-style: none;
    padding: 0;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links a {
    color: var(--neutral);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
  }

  .footer-links a::before {
    content: "→";
    margin-right: -15px;
    opacity: 0;
    transition: var(--transition);
    color: var(--accent-color);
  }

  .footer-links a:hover {
    color: var(--white);
    transform: translateX(20px);
  }

  .footer-links a:hover::before {
    margin-right: 8px;
    opacity: 1;
  }

  /* SCROLL AREA CUSTOMIZATION */
  .footer-scroll {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 10px;
  }

  .footer-scroll::-webkit-scrollbar {
    width: 4px;
  }

  .footer-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }

  /* SOCIAL ICONS - FLOATING STYLE */
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-8px) rotate(8deg);
    border-color: var(--accent-color);
  }

  /* SUGGESTION BOX WRAPPER (Livewire Component Styling) */
  .footer-suggestion-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 133, 63, 0.2);
    backdrop-filter: blur(5px);
  }

  /* FOOTER BOTTOM - THE BLUE LINE */
  .footer-bottom-wrap {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 0.85rem;
  }

  .kikosi-kazi {
    color: var(--ocean-blue);
    font-weight: 700;
    text-transform: uppercase;
  }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }

    .footer-section h4::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }

  /* ================== FOOTER END ================== */