  /* CRITICAL VARIABLES & BASE */
  :root {
    --gold: #F5A623;
    --gold-dark: #D4891A;
    --gold-light: #FAC75A;
    --navy: #1b4192;
    --navy-light: #243359;
    --bg: #ffffff;
    --bg2: #f7f7f5;
    --bg3: #efefec;
    --text: #1a1a1a;
    --text2: #333333;
    --text3: #555555;
    --border: #00000026;
    --card-bg: #ffffff;
    --nav-bg: rgba(73, 73, 78, 0);
    --nav-scroll-bg: rgba(255, 255, 255, 0.92);
    --section-alt: #1a1a1a;
    --footer-bg: #ffffff;
    --footer-text: #1a1a1a;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    --nav-height: 68px;
    --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --bg: #1a1a1a;
      --bg2: #181c24b5;
      --bg3: #243359;
      --text: #f7f7f5;
      --text2: #dff0d0;
      --text3: #efefec;
      --border: rgba(255, 255, 255, 0.1);
      --card-bg: #1a1a1a59;
      --nav-bg: rgba(73, 73, 78, 0);
      --nav-scroll-bg: rgba(24, 28, 36, 0.92);
      --section-alt: #181c24;
      --footer-bg: #1a1a1a;
      --footer-text: #ffffff;
      --shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    }
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }

  h1,
  h2,
  h3,
  h4 {
    font-family: 'Raleway', sans-serif;
    line-height: 1.2;
  }

  #page-container {
    position: relative;
    z-index: 2;
  }

  .page {
    display: none;
    animation: fadeUp 0.5s ease both;
  }

  .page.active {
    display: block;
  }

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

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

  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-24px);
    }

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

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

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

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .animate-spin {
    animation: spin 1s linear infinite;
    display: inline-block;
  }

  /* DEFERRED ANIMATIONS */
  @media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
      animation-delay: -1ms !important;
      animation-duration: 1ms !important;
      animation-iteration-count: 1 !important;
      background-attachment: initial !important;
      scroll-behavior: auto !important;
      transition-duration: 0s !important;
    }
  }

  #page-container.page-transition-out {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
  }

  #page-container.page-transition-in {
    opacity: 1;
    transform: translateY(0);
  }

  .page-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    color: var(--text2);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  }

  .page-loader::before {
    content: 'Loading…';
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: background var(--transition), box-shadow var(--transition);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: 68px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: auto;
  }

  .nav-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    fill: 25px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: transparent;
    border-radius: 6px;
    mix-blend-mode: normal;
  }

  nav.scrolled .nav-logo-icon img {
    background-color: #ffffff;
  }

  .nav-logo-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--gold);
    mix-blend-mode: difference;
    line-height: 1.2;
  }

  .nav-logo-sub {
    font-weight: 400;
    font-size: 11px;
    color: var(--gold-dark);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-links a {
    text-decoration: none;
    color: #2469ff;
    mix-blend-mode: normal;
    font-size: 13.5px;
    font-weight: 700;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
    transition: color var(--transition), background var(--transition);
  }

  .nav-links a:hover {
    color: var(--gold-light);
  }

  .nav-links a.active {
    color: var(--gold);
    background: #2469ff76;
  }

  .nav-cta {
    background: var(--gold);
    color: var(--navy);
    mix-blend-mode: darken;
    padding: 0.45rem 1.1rem;
    border-radius: 6px;
  }

  .nav-cta:hover {
    background: var(--footer-text);
    color: white;
  }

  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text);
  }


  #navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(203, 36, 36, 0);
    backdrop-filter: blur(6px);
  }

  #navbar.scrolled {
    background: rgba(255, 255, 255, 0.71);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(141, 141, 141, 0.08);
  }

  nav.scrolled .nav-links a {
    mix-blend-mode: normal;
    color: var(--navy);
  }

  nav.scrolled .nav-links a:hover {
    mix-blend-mode: normal;
    color: #2469ff;
  }

  nav.scrolled .nav-links a.active {
    mix-blend-mode: normal;
    color: var(--gold);
    background-color: var(--navy);
  }

  nav.scrolled .nav-logo-text {
    mix-blend-mode: normal;
    color: var(--text3);
  }

  nav.scrolled .nav-logo-sub {
    mix-blend-mode: normal;
    color: var(--text);
  }

  @media (prefers-color-scheme: dark) {
    #navbar {
      background: rgba(26, 26, 26, 0.20);
      backdrop-filter: blur(5px);
    }

    #navbar.scrolled {
      background: rgba(26, 26, 26, 0.818);
      backdrop-filter: blur(15px);
    }

    .nav-links a {
      color: #2469ff;
    }

    .nav-links a.active {
      color: var(--gold-dark);
      background: var(--navy);
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-cta a {
      background: var(--gold);
      color: white;
      mix-blend-mode: normal;
      padding: 0.45rem 1.1rem;
      border-radius: 6px;
    }

    nav.scrolled .nav-links a {
      mix-blend-mode: normal;
      color: var(--text);
    }

    nav.scrolled .nav-links a:hover {
      mix-blend-mode: normal;
      color: #204cad;
    }

    nav.scrolled .nav-links a.active {
      mix-blend-mode: normal;
      color: var(--gold);
    }

    nav.scrolled .nav-logo-text,
    nav.scrolled .nav-logo-sub {
      mix-blend-mode: normal;
      color: var(--text);
    }
  }

  #page-container {
    /*padding-top: var(--nav-height);*/
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    z-index: 2;
    background: var(--bg);
  }

  body.is-home #page-container {
    padding-top: 0;
  }

  /* HERO */
  #home {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    overflow: hidden;
    padding-top: var(--nav-height);
  }

  .hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
  }

  .hero-video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.72) 0%, rgba(13, 24, 41, 0.78) 60%, rgba(26, 39, 68, 0.85) 100%);
    z-index: 3;
    pointer-events: none;
  }

  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
  }

  .hero-video.active {
    opacity: 1;
    z-index: 2;
  }

  .hero-badge,
  .hero-title,
  .hero-sub {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-badge.text-hidden,
  .hero-title.text-hidden,
  .hero-sub.text-hidden {
    opacity: 0 !important;
    transform: translateY(12px) !important;
  }

  #hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 820px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /*background: rgba(245,166,35,0.18); border: 1px solid rgba(245,166,35,0.35);*/
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: fadeDown 0.8s ease both;
  }

  .hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    animation: fadeDown 0.8s 0.15s ease both;
  }

  .hero-title span {
    color: var(--gold);
  }

  .hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeDown 0.8s 0.3s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeDown 0.8s 0.45s ease both;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background var(--transition), transform var(--transition), color var(--transition);
  }

  .btn-primary:hover {
    background: var(--gold-dark);
    color: white;
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 0.85rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-align: center;
    animation: pulseDown 2s infinite;
  }

  .hero-scroll i {
    display: block;
    font-size: 24px;
  }

  @keyframes pulseDown {

    0%,
    100% {
      opacity: 0.5;
      transform: translateX(-50%) translateY(0);
    }

    50% {
      opacity: 1;
      transform: translateX(-50%) translateY(6px);
    }
  }

  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-24px);
    }

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


  /* Page particles background 
  section { position: relative; }
  .page-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); opacity: 0.04; z-index: 0; pointer-events: none; }
  .page-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
  .section-inner { position: relative; z-index: 2; }
  .hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem 1.5rem; max-width: 820px; }
  .hero-content, .hero-title, .hero-sub, .hero-badge, .hero-scroll, .hero-actions a { text-shadow: 0 1px 12px rgba(0,0,0,0.6), 0 0 3px rgba(0,0,0,0.2); }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,166,35,0.18); border: 1px solid rgba(245,166,35,0.35); color: #fff8e1; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; padding: 0.4rem 1rem; border-radius: 20px; margin-bottom: 1.5rem; text-transform: uppercase; animation: fadeDown 0.8s ease both; }
  .hero-title { font-family: 'Raleway', sans-serif; font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; color: white; margin-bottom: 1rem; animation: fadeDown 0.8s 0.15s ease both; }
  .hero-title span { color: var(--gold); }
  .hero-sub { font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; font-weight: 400; animation: fadeDown 0.8s 0.3s ease both; }
  .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeDown 0.8s 0.45s ease both; }
  .btn-primary { background: var(--gold); color: var(--navy); font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 15px; padding: 0.85rem 2rem; border: none; border-radius: 8px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background var(--transition), transform var(--transition); }
  .btn-primary:hover { background: var(--gold-dark); color: white; transform: translateY(-2px); }
  .btn-outline { background: transparent; color: white; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 15px; padding: 0.85rem 2rem; border: 2px solid rgba(255,255,255,0.35); border-radius: 8px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: border-color var(--transition), color var(--transition), transform var(--transition); }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
  .hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 12px; text-align: center; animation: pulseDown 2s infinite; font-weight: 600; }
  .hero-scroll i { display: block; font-size: 24px; }
  @keyframes pulseDown { 0%,100% { opacity: 0.5; transform: translateX(-50%) translateY(0); } 50% { opacity: 1; transform: translateX(-50%) translateY(6px); } }
*/

  .stats-bar {
    background: var(--gold);
    padding: 2rem 1.5rem;
  }

  .stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }

  .stat-item {
    text-align: center;
  }

  .stat-num {
    font-family: 'Raleway', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
  }

  .stat-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a2744;
    margin-top: 4px;
    opacity: 1;
  }

  section {
    padding: 4rem 1.5rem;
  }

  /* Reduced top padding for internal pages to sit closer to navbar */
  body:not(.is-home) section {
    padding-top: 1.5rem;
  }

  body:not(.is-home) .sticky-header-container {
    margin-top: 0;
  }

  /* Performance Optimization: Skip rendering for off-screen sections */
  section:not(#home) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
  }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
  }

  .section-title span {
    color: var(--gold);
  }

  .section-lead {
    color: var(--text);
    font-size: 1.05rem;
    max-width: 640px;
    margin-bottom: 3rem;
    font-weight: 500;
  }

  .alt-bg {
    background: white;
  }

  /* Generic Humanizing Grid */
  .human-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
  }

  .human-grid.rev {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .human-image-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
  }

  .human-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .human-image-box:hover img {
    transform: scale(1.03);
  }

  .featured-image-wide {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
  }

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

  /* Sticky Header System */
  .sticky-header-container {
    position: sticky;
    top: var(--nav-height);
    z-index: 90;
    background: var(--bg);
    padding: 0.6rem 0;
    transition: background 0.5s, padding 0.3s, border 0.3s, box-shadow 0.3s;
    /*margin-bottom: 1.25rem;*/
  }

  .sticky-header-container.is-stuck {
    background: rgba(255, 255, 255, 0.111);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /*padding: 0.6rem 0;
    //border-bottom: 1px solid var(--border);*/
  }

  @media (prefers-color-scheme: dark) {
    .sticky-header-container.is-stuck {
      background: rgba(26, 26, 26, 0.24);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(3px);
      /*padding: 0.6rem 0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      border-bottom: 1px solid var(--border);*/
    }
  }

  .btn-sm {
    padding: 0.4rem 0.8rem !important;
    font-size: 13px !important;
  }

  .sticky-sub-bar {
    position: sticky;
    top: calc(var(--nav-height) + 80px);
    /* Positioned below main sticky header */
    z-index: 80;
    background: var(--bg);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
  }

  */

  /* Services Carousel */
  .services-carousel-container {
    width: 100%;
    overflow-x: auto;
    padding: 2rem 0;
    position: relative;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .services-carousel-container::-webkit-scrollbar {
    display: none;
  }

  .services-carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: carousel-scroll 40s linear infinite;
  }

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

  @keyframes carousel-scroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  .carousel-card {
    width: 320px;
    flex-shrink: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition);
  }

  .carousel-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
  }

  .carousel-img-box {
    height: 200px;
    width: 100%;
    overflow: hidden;
  }

  .carousel-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .carousel-card:hover .carousel-img-box img {
    transform: scale(1.05);
  }

  .carousel-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .carousel-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .carousel-cta {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .carousel-actions {
    margin-top: 2rem;
    text-align: center;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #243359 100%);
    padding: 2.5rem;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .about-visual-grid {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 40px), repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 40px);
  }

  .about-logo-big {
    font-family: 'Raleway', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
  }

  .about-tag {
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }

  .about-visual-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    position: relative;
    z-index: 1;
  }

  .values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .value-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: border-color var(--transition), transform var(--transition);
  }

  .value-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  .value-icon {
    width: 36px;
    height: 36px;
    background: rgba(245, 166, 35, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .value-icon i {
    color: var(--gold-dark);
    font-size: 18px;
  }

  .value-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
  }

  .value-desc {
    font-size: 12.5px;
    color: var(--text);
    margin-top: 2px;
    font-weight: 500;
  }

  .mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .mv-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
  }

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

  .mv-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .mv-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
  }

  .mv-text {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
  }

  .services-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .stab {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text2);
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .stab.active,
  .stab:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
  }

  .service-panel {
    display: none;
  }

  .service-panel.active {
    display: block;
  }

  .accordion-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
  }

  .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    background: var(--card-bg);
    transition: background var(--transition);
  }

  .accordion-header:hover {
    background: var(--bg2);
  }

  .accordion-header.open {
    background: var(--navy);
  }

  .accordion-header.open .acc-title {
    color: white;
  }

  .accordion-header.open .acc-icon {
    color: var(--gold);
  }

  .accordion-header.open .acc-chevron {
    color: var(--gold);
    transform: rotate(180deg);
  }

  .acc-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .acc-icon {
    font-size: 20px;
    color: var(--gold);
  }

  .acc-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
  }

  .acc-chevron {
    font-size: 18px;
    color: var(--text3);
    transition: transform var(--transition);
  }

  .accordion-body {
    display: none;
    padding: 1.25rem;
    background: var(--bg2);
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid var(--border);
    font-weight: 500;
  }

  .accordion-body.open {
    display: block;
    animation: slideDown 0.28s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

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

  .hs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hs-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
  }

  .hs-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
  }

  .hs-icon.green {
    background: rgba(40, 180, 80, 0.12);
  }

  .hs-icon.gold {
    background: rgba(245, 166, 35, 0.12);
  }

  .hs-icon i {
    font-size: 28px;
  }

  .hs-icon.green i {
    color: #28b450;
  }

  .hs-icon.gold i {
    color: var(--gold-dark);
  }

  .hs-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.75rem;
  }

  .hs-text {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
  }

  .creds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
  }

  .cred-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    text-decoration: none;
  }

  .cred-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.12);
  }

  .cred-badge {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .cred-badge i {
    color: var(--gold);
    font-size: 22px;
  }

  .cred-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 4px;
  }

  .cred-detail {
    font-size: 12.5px;
    color: var(--text);
    margin-top: 2px;
    line-height: 1.5;
    font-weight: 500;
  }

  .cred-status {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 6px;
    background: rgba(40, 180, 80, 0.12);
    color: #228b3a;
  }

  /* Modified Cred Cards for Service Categories */
  .category-card {
    cursor: pointer;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .category-card .cred-badge {
    margin: 0 auto 1.25rem;
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .category-card .cred-name {
    font-size: 1.6rem;
  }

  .category-card .cred-detail {
    width: 100%;
  }

  .category-card .glimpse-list {
    margin-top: 1.5rem;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text3);
    border-top: 1px solid var(--border);
    padding-top: 1rem;
  }

  .category-card .glimpse-list div {
    margin-bottom: 0.4rem;
  }

  .category-card .glimpse-list i {
    color: var(--gold);
  }

  .category-explore {
    margin-top: 1rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .services-drilldown {
    display: none;
    margin-top: 3rem;
  }

  .services-drilldown .btn-outline {
    margin-bottom: 2rem;
    padding: 8px 16px;
    font-size: 14px;
  }

  .service-card .more-content {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text3);
  }

  .btn-toggle-more {
    margin-top: 1rem;
    color: var(--gold);
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }

  /* Glimpse List Animation */
  .glimpse-list div {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cred-card:hover .glimpse-list div {
    opacity: 1;
    transform: translateY(0);
  }

  .glimpse-list div:nth-child(1) {
    transition-delay: 0.1s;
  }

  .glimpse-list div:nth-child(2) {
    transition-delay: 0.2s;
  }

  .glimpse-list div:nth-child(3) {
    transition-delay: 0.3s;
  }

  .glimpse-list div:nth-child(n+4) {
    transition-delay: 0.4s;
  }

  .timeline {
    position: relative;
    padding: 2rem 0;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
  }

  .tl-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
  }

  .tl-item:nth-child(odd) {
    flex-direction: row-reverse;
  }

  .tl-content {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
  }

  .tl-spacer {
    flex: 1;
  }

  .tl-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: 11px;
    color: var(--navy);
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
  }

  .tl-year {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gold-dark);
    margin-bottom: 0.25rem;
  }

  .tl-event {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.3rem;
  }

  .tl-desc {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem;
  }

  .ci-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 166, 35, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .ci-icon i {
    color: var(--gold-dark);
    font-size: 18px;
  }

  .ci-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text2);
    margin-bottom: 2px;
  }

  .ci-value {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
  }

  .ci-value.secondary {
    font-size: 13px;
    color: var(--text3);
  }

  .branch-title i {
    color: var(--gold);
    margin-right: 6px;
  }

  .map-placeholder span.map-link {
    font-weight: 700;
    color: var(--gold);
  }

  .branch-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--text);
    margin: 1.5rem 0 0.75rem;
  }

  .form-group {
    margin-bottom: 1.1rem;
  }

  .form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
    display: block;
  }

  .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    transition: border-color var(--transition);
    outline: none;
  }

  .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
  }

  textarea.form-control {
    resize: vertical;
    min-height: 120px;
  }

  .submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .submit-btn:hover {
    background: var(--gold-dark);
    color: white;
    transform: translateY(-1px);
  }

  .whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    transition: background var(--transition);
  }

  .map-placeholder {
    height: 200px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    font-size: 14px;
    gap: 8px;
    margin-top: 1.5rem;
    flex-direction: column;
    text-decoration: none;
    transition: border-color var(--transition);
  }

  .map-placeholder:hover {
    border-color: var(--gold);
  }

  .contact-form-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
  }

  .contact-form-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
  }

  footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 1.5rem 1.5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  @media (max-width: 900px) {
    footer {
      position: relative;
      z-index: 2;
    }
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .footer-banking {
    margin-top: 1.25rem;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
  }

  .footer-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgb(255, 255, 255);
  }

  .footer-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .footer-logo-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--gold);
  }

  .footer-logo-sub {
    font-weight: 400;
    font-size: 12px;
    color: var(--gold);
  }

  .footer-heading {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
  }

  .footer-links {
    list-style: none;
  }

  .footer-links a {
    color: #333333;
    font-size: 13px;
    text-decoration: none;
    transition: color var(--transition);
  }

  .footer-links a:hover {
    color: var(--gold);
  }

  .footer-contact-item {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: #333333;
    margin-bottom: 0.6rem;
  }

  .footer-contact-item i {
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* Leadership / Team Styling */
  .leadership-grid .cred-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .leadership-grid .cred-badge {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .leadership-grid .cred-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .leadership-grid .cred-status {
    display: inline-block;
    margin-bottom: 0.5rem;
  }

  .member-links {
    margin-top: 1.25rem;
    display: flex;
    gap: 1rem;
  }

  .member-links a {
    color: var(--gold);
    font-size: 1.25rem;
    transition: color var(--transition);
  }

  .member-links a:hover {
    color: var(--gold-dark);
  }

  /* About Page Specific Layouts */
  .about-timeline-wrap {
    margin-top: 4rem;
  }

  .about-timeline-wrap .section-title {
    margin-bottom: 2.5rem;
  }

  .about-values-grid {
    margin-top: 1.5rem;
  }

  .home-learn-more {
    margin-top: 1.25rem;
  }

  .footer-middle {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .footer-copy {
    font-size: 13px;
    color: #333333;
  }

  .footer-reg {
    font-size: 12px;
    color: #555555;
  }

  .footer-tagline {
    color: #333333;
    font-size: 0.95rem;
    margin-top: 0.75rem;
  }

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 68px;
    z-index: 999;
    background: var(--nav-bg);
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background var(--transition);
  }

  /* Services cards layout */
  .services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 80px;
    align-items: start;
    margin-top: 2.5rem;
    position: relative;
    padding: 2rem 0;
  }

  .services-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    z-index: 0;
    transform: translateX(-50%);
  }

  .service-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  @media (min-width: 901px) {
    .service-card {
      flex-direction: row;
      align-items: stretch;
      min-height: 420px;
      margin: 0;
    }

    .service-card:nth-child(odd) {
      grid-column: 1;
    }

    .service-card:nth-child(even) {
      grid-column: 2;
      flex-direction: row-reverse;
    }

    /* Timeline Connector Dot */
    .service-card::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 20px;
      height: 20px;
      background: var(--gold);
      border: 4px solid var(--card-bg);
      border-radius: 50%;
      z-index: 5;
      transform: translateY(-50%);
    }

    .service-card:nth-child(odd)::after {
      right: -50px;
    }

    .service-card:nth-child(even)::after {
      left: -50px;
    }

    .service-details {
      padding: 2.5rem;
      flex: 1;
    }
  }

  .service-image {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    background: var(--bg3);
  }

  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }

  .service-card:hover .service-image img {
    transform: scale(1.08);
  }

  .service-details {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold);
    opacity: 0.8;
    z-index: 3;
  }

  .service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.15);
  }

  .service-card .icon {
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .service-card .title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 0.75rem;
  }

  .service-card .desc {
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.6;
  }

  /* Health & Safety pills grid */
  .safety-pills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .safety-pill {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  }

  .safety-pill:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.12);
  }

  .safety-pill .icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(245, 166, 35, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: var(--gold);
  }

  .safety-pill .name {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 4px;
  }

  .safety-pill .desc {
    font-size: 0.9rem;
    color: var(--text2);
  }

  @media (max-width: 900px) {
    .nav-links {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    .about-grid,
    .hs-grid,
    .contact-grid,
    .mv-grid,
    .footer-grid,
    .human-grid,
    .human-grid.rev {
      grid-template-columns: 1fr;
    }

    .timeline::before {
      left: 24px;
    }

    .services-container {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .services-container::before {
      left: 24px;
      transform: none;
    }

    .tl-item,
    .tl-item:nth-child(odd) {
      flex-direction: row;
    }

    .tl-spacer {
      display: none;
    }

    .service-card {
      align-self: flex-start !important;
      margin-left: 48px !important;
      width: calc(100% - 48px) !important;
      min-height: auto;
    }

    .service-image {
      min-height: 240px;
    }

    .nav-inner {
      padding: 0 1rem;
    }

    .nav-logo-text {
      font-size: 13px;
    }

    .nav-logo-sub {
      font-size: 9px;
    }

    #home {
      aspect-ratio: auto;
      padding-top: 80px;
      min-height: 100vh;
    }

    .hero-content {
      padding: 1rem;
      width: 100%;
    }

    .hero-title {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .hero-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
      max-width: 300px;
      margin: 0 auto;
    }

    .btn-primary,
    .btn-outline {
      justify-content: center;
      width: 100%;
    }

    .featured-image-wide {
      height: 250px;
    }
  }

  /* Dark mode footer text adjustments */
  @media (prefers-color-scheme: dark) {
    .footer-links a {
      color: #e0e0e0;
    }

    .footer-contact-item {
      color: #e0e0e0;
    }

    .footer-copy {
      color: #e0e0e0;
    }

    .footer-reg {
      color: #c0c0c0;
    }

    .footer-tagline {
      color: #e0e0e0;
    }

    .footer-bottom {
      border-top-color: rgba(255, 255, 255, 0.1);
    }

    .alt-bg {
      background: var(--section-alt);
    }
  }