/*
Theme Name: Astra Child
Theme URI: https://example.com/
Description: Child Theme for Astra
Author: Your Name
Template: astra
Version: 1.3.3
Text Domain: astra-child
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --blue: #0a68ee;
    --blue-mid: #4B93EE;
    --blue-dark: #003075;
    --blue-deep: #003f99;
    --blue-soft: rgba(26, 115, 232, 0.08);
    --orange: #003075;
    --orange-dark: #145DBB;
    --orange-soft: rgba(26, 115, 232, 0.12);
    --border: #E3EAF5;
    --ink: #0B1B33;
    --ink-muted: #5B6B85;
    --ink-faint: #93A0B8;
    --bg-soft: #0256c721;
    --shadow: 0 20px 45px -28px rgba(13, 43, 82, 0.28);
    --icon-grad: linear-gradient(135deg, rgba(26, 115, 232, 0.10), rgba(26, 115, 232, 0.18));
}

* {
    box-sizing: border-box;
}

html.custom-cursor * {
    cursor: none;
}

/* Over anything actually clickable -- links, buttons, form fields --
   restore the normal system cursor instead of the custom shield: nav/link
   hover is already communicated by the underline + color-shift in
   .nav-list a and friends, and a mouse-following icon sitting on top of a
   word or a small control only ever fights with the label instead of
   helping. The `* and *` variants matter because `html.custom-cursor *`
   above sets cursor:none on every element at equal specificity -- without
   also targeting descendants, an icon/span/svg nested inside a link (e.g.
   .fab-item's svg + label) would still render no cursor at all even
   though the link itself is fixed. */
html.custom-cursor a,
html.custom-cursor a *,
html.custom-cursor button,
html.custom-cursor button *,
html.custom-cursor input,
html.custom-cursor textarea,
html.custom-cursor select,
html.custom-cursor [role="button"],
html.custom-cursor [role="button"] *,
html.custom-cursor [onclick],
html.custom-cursor [onclick] * {
    cursor: pointer;
}

html.custom-cursor input,
html.custom-cursor textarea,
html.custom-cursor select {
    cursor: auto;
}

.site-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.15s ease;
}

.site-cursor svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    filter: drop-shadow(0 4px 8px rgba(13, 43, 82, 0.45));
}

.site-cursor .cur-shield {
    fill: var(--blue-dark);
    stroke: #fff;
    stroke-width: 1.4;
    stroke-linejoin: round;
    transform-origin: 12px 12px;
    transition: transform 0.2s ease, fill 0.2s ease;
}

.site-cursor .cur-check {
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Over any interactive element (links, buttons, form fields) the cursor
   hides entirely and the normal system pointer shows instead (see the
   `cursor: pointer` rules above) -- hover state there is communicated by
   each element's own styling, not by the mouse-following icon. Everywhere
   else the shield stays this same constant size -- no grow/shrink. */
.site-cursor.is-interactive {
    opacity: 0;
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 46px;
    height: 46px;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.4), rgba(26, 115, 232, 0) 70%);
    filter: blur(4px);
    opacity: 0.7;
    transition: opacity 0.15s ease;
}

/* Mirrors .site-cursor.is-interactive: hide the glow over links, buttons
   and form fields too, instead of blooming out over the label underneath. */
.cursor-glow.is-interactive {
    opacity: 0;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    z-index: 90;
    transition: width 0.08s linear;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section-head {
    max-width: 940px;
    margin: 0 0 clamp(2.4rem, 5vw, 3.4rem);
}

.accent-word {
    color: var(--blue)
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.2;
    margin-bottom: 0.9rem;
    color: var(--blue-dark);
}

.section-head p {
    font-size: 1.02rem;
    color: var(--ink-muted);
}

section {
    padding: clamp(4.5rem, 8vw, 8.5rem) 0;
}

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

.eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--blue);
    margin: 0 0 10px;
    display: block;
}


h1, h2, h3 {
    color: var(--blue-dark);
    font-weight: 700;
    text-wrap: balance;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

p {
    color: var(--ink-muted);
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 4px;
}

.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal {
    transform: translateY(18px);
}

.reveal-left {
    transform: translateX(-26px);
}

.reveal-right {
    transform: translateX(26px);
}

.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-stagger.is-visible>* {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top-wrap {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    width: 52px;
    height: 52px;
    z-index: 55;
    opacity: 0;
    transform: translateY(12px) scale(0.9);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.2s ease;
}

.back-to-top-wrap.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(var(--orange) calc(var(--scroll-pct, 0) * 1%), rgba(26, 115, 232, 0.18) 0);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
    transition: background 0.1s linear;
}

.back-to-top {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    border-radius: 50% !important;
    background: var(--blue-dark);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 30px -12px rgba(13, 43, 82, 0.6);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.back-to-top:hover,
.back-to-top:focus {
    background: var(--orange);
    transform: scale(1.08);
    box-shadow: 0 18px 34px -12px rgba(13, 43, 82, 0.65), 0 0 0 6px rgba(26, 115, 232, 0.32);
}

.back-to-top:active {
    transform: scale(1.02);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    transition: transform 0.25s ease;
    animation: backToTopBob 1.6s ease-in-out infinite;
}

.back-to-top:hover svg {
    animation-play-state: paused;
    transform: translateY(-3px);
}

@keyframes backToTopBob {
    0%, 100% {
        transform: translateY(1px);
    }

    50% {
        transform: translateY(-3px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top-wrap {
        transition: opacity 0.25s ease;
    }

    .back-to-top {
        transition: background 0.2s ease;
    }

    .back-to-top svg {
        animation: none;
    }

    .back-to-top:hover {
        transform: none;
    }

    .back-to-top:hover svg {
        transform: none;
    }
}

.fab-stack {
    position: fixed;
    right: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 56;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
}

.fab-item {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 42px;
}

.fab-icon {
    position: relative;
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue-dark);
    display: grid;
    place-items: center;
    z-index: 2;
    box-shadow: 0 14px 28px -12px rgba(13, 43, 82, 0.6), 0 0 0 4px rgba(26, 115, 232, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: fabGlowPulse 2.4s ease-in-out infinite;
}

.fab-item:hover .fab-icon {
    transform: scale(1.08);
    box-shadow: 0 14px 28px -12px rgba(13, 43, 82, 0.6), 0 0 0 6px rgba(26, 115, 232, 0.35);
}

.fab-item:hover {
    width: auto;
}

.fab-icon svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

@keyframes fabGlowPulse {
    0%, 100% {
        box-shadow: 0 14px 28px -12px rgba(13, 43, 82, 0.6), 0 0 0 4px rgba(26, 115, 232, 0.18);
    }

    50% {
        box-shadow: 0 14px 28px -12px rgba(13, 43, 82, 0.6), 0 0 0 7px rgba(26, 115, 232, 0.3);
    }
}

.fab-label {
    flex: none;
    display: flex;
    align-items: center;
    height: 42px;
    z-index: 1;
    background: var(--blue-dark);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 999px;
    padding: 0;
    margin-left: -21px;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.3s ease, opacity 0.2s ease;
}

.fab-item:hover .fab-label,
.fab-item:focus-visible .fab-label {
    max-width: 300px;
    padding: 0 1.1rem 0 2.6rem;
    opacity: 1;
    transition: max-width 0.3s ease, opacity 0.25s ease 0.12s;
}

@media (max-width: 1300px) {
    .fab-stack {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal, .reveal-left, .reveal-right, .reveal-stagger>* {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .fab-icon, .fab-label {
        transition: none;
        animation: none;
    }

    .btn:hover, .back-to-top:hover {
        transform: none;
    }
}

html {
    scroll-behavior: smooth;
}

/* Astra's built-in scroll-to-top button duplicates the child theme's custom #backToTop button and renders on top of it */
#ast-scroll-top {
    display: none !important;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
}

body, p, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

img, svg, canvas {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page {
    overflow-x: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px -20px rgba(11, 27, 51, 0.4);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.4rem clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: auto;
    font-weight: 800;
    color: var(--blue-dark);
    font-size: 1.05rem;
}

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

.brand img {
    height: auto;
    max-height: 74px;
    width: 100% !important;
    display: block;
    max-width: 240px !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    border-radius: 0 !important;
    flex-shrink: 0;
    background: transparent;
    border-color: transparent;
}

.nav-toggle:hover,
.nav-toggle:focus {
    background: transparent;
    border-color: transparent;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background: var(--blue-dark);
    border-radius: 2px;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 0.5rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
    border-top: 1px solid var(--border);
}

.nav-mobile a {
    padding: 0.85rem 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    color: var(--blue-dark);
}

.nav-mobile.is-open {
    display: flex;
}

/* Mobile submenu (e.g. Resources > Blog / Glossary): shown as an always-
   expanded, indented block under its parent — no accordion JS in this
   theme, so nested items just stay visible rather than toggling. */
.nav-mobile .sub-menu {
    padding-left: 1rem;
}

.nav-mobile .sub-menu a {
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--ink-muted);
}

.brand-light {
    color: #fff;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-list li {
    list-style: none;
}

.nav-list a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-muted);
    position: relative;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -4px;
    height: 2px;
    background: var(--orange);
    transition: right 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
    color: var(--blue-dark);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
    right: 0;
}

/* ---------- Desktop dropdown submenu (e.g. Resources > Blog / Glossary) ----------
   wp_nav_menu() wraps child items of a parent menu item in a nested
   <ul class="sub-menu">, and adds .menu-item-has-children to the parent
   <li> automatically — no extra markup needed, just style the defaults. */
.nav-list li.menu-item-has-children {
    position: relative;
}

.nav-list li.menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-list li.menu-item-has-children > a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.nav-list li.menu-item-has-children:hover > a::before,
.nav-list li.menu-item-has-children > a:focus-visible::before {
    transform: rotate(-135deg) translateY(1px);
}

.nav-list .sub-menu {
    /* top:100% with no gap and no translateY offset: the box's real
       (hoverable) geometry sits flush against the parent li, so
       :hover/:focus-within on the li never lapses while the pointer moves
       down into it. A gap (top: calc(100% + Npx)) or a transform offset
       (translateY) both leave a strip of dead space the pointer crosses
       without hovering anything, which closes the dropdown before a
       diagonal mouse move reaches it. The top padding below gives the
       same visual breathing room from *inside* the real hoverable box. */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    min-width: 190px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.6rem 0.5rem 0.5rem;
    box-shadow: 0 20px 40px -20px rgba(13, 43, 82, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s;
    z-index: 100;
}

.nav-list li.menu-item-has-children:hover > .sub-menu,
.nav-list li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-list .sub-menu li {
    list-style: none;
}

.nav-list .sub-menu a {
    display: block;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-muted);
    white-space: nowrap;
}

.nav-list .sub-menu a::after {
    content: none;
}

.nav-list .sub-menu a:hover,
.nav-list .sub-menu a:focus-visible {
    background: var(--blue-soft);
    color: var(--blue-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.94rem;
    padding: 0.85rem 1.6rem;
    border-radius: 10px;
    border: 1.5px solid transparent;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    will-change: transform;
}

.btn-sm {
    padding: 0.6rem 1.15rem;
    font-size: 0.86rem;
}

.btn-solid {
    background: var(--blue-dark);
    color: #fff;
    box-shadow: 0 12px 28px -14px rgba(26, 115, 232, 0.65);
    border-radius: 100px;
}

.btn-solid:hover,
.btn-solid:focus {
    background: var(--blue-deep);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -12px rgba(8, 29, 56, 0.8), 0 0 0 6px rgba(26, 115, 232, 0.16);
}

.btn-white {
    background: #fff;
    color: var(--orange);
    box-shadow: 0 12px 28px -14px rgba(0, 27, 70, 0.65);
    border-radius: 100px;
}

.btn-white:hover,
.btn-white:focus {
    background: #fff;
    color: var(--orange) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -12px rgba(26, 115, 232, 0.8), 0 0 0 6px rgba(26, 115, 232, 0.16);
}

.btn-outline {
    border-color: var(--blue-dark);
    color: var(--blue-dark);
    background: transparent;
    border-radius: 100px;
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--blue-soft);
    color: var(--blue-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 0 0 6px var(--blue-soft);
}

.btn-outline-light {
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    border-radius: 100px;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1);
}

.btn-dark {
    background: var(--blue-dark);
    color: #fff;
    border-radius: 999px;
}

.btn-dark svg {
    width: 16px;
    height: 16px;
}

.btn-dark:hover,
.btn-dark:focus {
    background: var(--blue-deep);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -12px rgba(13, 43, 82, 0.6);
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    }
}

main {
    min-height: 50vh;
    padding: 0;
}

.site-footer {
    background: #081D38;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #93A6D6;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.2rem 1.25rem 2.6rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.8fr;
    gap: 2.4rem;
}

.footer-services-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2.4rem;
}

.footer-about p {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    margin: 0rem 0 0.8rem;
    line-height: 1.5;
    max-width: 30ch;
    color: #93A6D6;
}

.footer-brand-logo-link {
    display: inline-flex;
}

.footer-brand-logo {
    height: 90px;
    width: auto;
    display: block;
}

.footer-column h4 {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links a,
.footer-services a,
.footer-contact a,
.footer-contact li {
    font-family: 'Poppins', Arial, sans-serif;
    color: #93A6D6;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.5;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
    /* var(--orange) is a dark navy (#003075) that works as a hover accent
       on light backgrounds, but the footer itself is dark navy (#081D38)
       -- using it here made hovered links nearly disappear into the
       background. --blue-mid is light enough to stay readable on dark. */
    color: var(--blue-mid);
}

.footer-links li,
.footer-services li,
.footer-contact li {
    padding: 0.3rem 0;
}

.footer-contact li {
    padding: 0.22rem 0;
    line-height: 1.4;
}

.social-row {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.1rem;
}

.social-row a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    place-items: center;
    color: #fff;
}

.social-row a:hover {
    background: rgba(26, 115, 232, 0.2);
    border-color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.3rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #7C8FC2;
    max-width: 1200px;
    margin: 0 auto;
}

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

    .header-actions .btn-sm {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .header-inner {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .nav-mobile .menu-item:not(:last-child) {
        margin-bottom: 5px;
    }

    .nav-mobile .menu-item a {
        padding: 5px 0;
        display: inline-block;
        line-height: 1;
        border: 0;

    }

    .hero .hero-actions a {
        min-width: 190px;
    }


    .hero .hero-actions .btn-solid {
        border: 1px solid var(--blue-dark);
    }












}

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

    .brand img {
        max-width: 200px !important;
    }

    .footer-about,
    .footer-column-services {
        grid-column: 1 / -1;
    }

    .footer-brand-logo {
        height: 70px;
    }

    .wcu-stats {
        order: 2;
        z-index: 2 !important;
    }

    .industries-copy {
        order: 1;
        padding: 0 !important;
    }

    .industries-grid-wrap {
        order: 2;

    }

    .section-head.center {
        text-align: left;
    }

    .industries-split::before {
        display: none;
    }

    .industries-split {
        background: var(--blue-dark) !important;
    }

    .industries-copy h2 {
        color: #fff !important;
    }

    .industries-copy h2 span {
        color: var(--blue-mid) !important;
    }

    .industries-copy p {
        color: #ffffffcc !important;
    }






}

@media (max-width: 520px) {
    .footer-grid {
        gap: 1.6rem 1.2rem;
        padding-top: 2.4rem;
    }

    .footer-services-cols {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-links li,
    .footer-services li,
    .footer-contact li {
        padding: 0.24rem 0;
    }

    .footer-about p {
        margin: 0.8rem 0 0.9rem;
    }

    .social-row {
        margin-top: 0.9rem;
    }

    .header-inner {
        gap: 1rem;
    }

    .btn-sm {
        padding: 0.65rem 0.95rem;
    }
}