/* ============================================================
   DUCTUS — MAIN STYLESHEET
   ============================================================ */

/* ── Local fonts: Archivo ── */
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-Bold.eot');
    src: url('../fonts/Archivo-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Archivo-Bold.woff2') format('woff2'),
         url('../fonts/Archivo-Bold.woff') format('woff'),
         url('../fonts/Archivo-Bold.ttf') format('truetype'),
         url('../fonts/Archivo-Bold.svg#Archivo-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-BoldItalic.eot');
    src: url('../fonts/Archivo-BoldItalic.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Archivo-BoldItalic.woff2') format('woff2'),
         url('../fonts/Archivo-BoldItalic.woff') format('woff'),
         url('../fonts/Archivo-BoldItalic.ttf') format('truetype'),
         url('../fonts/Archivo-BoldItalic.svg#Archivo-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-Medium.eot');
    src: url('../fonts/Archivo-Medium.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Archivo-Medium.woff2') format('woff2'),
         url('../fonts/Archivo-Medium.woff') format('woff'),
         url('../fonts/Archivo-Medium.ttf') format('truetype'),
         url('../fonts/Archivo-Medium.svg#Archivo-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-Italic.eot');
    src: url('../fonts/Archivo-Italic.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Archivo-Italic.woff2') format('woff2'),
         url('../fonts/Archivo-Italic.woff') format('woff'),
         url('../fonts/Archivo-Italic.ttf') format('truetype'),
         url('../fonts/Archivo-Italic.svg#Archivo-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-Regular.eot');
    src: url('../fonts/Archivo-Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Archivo-Regular.woff2') format('woff2'),
         url('../fonts/Archivo-Regular.woff') format('woff'),
         url('../fonts/Archivo-Regular.ttf') format('truetype'),
         url('../fonts/Archivo-Regular.svg#Archivo-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-MediumItalic.eot');
    src: url('../fonts/Archivo-MediumItalic.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Archivo-MediumItalic.woff2') format('woff2'),
         url('../fonts/Archivo-MediumItalic.woff') format('woff'),
         url('../fonts/Archivo-MediumItalic.ttf') format('truetype'),
         url('../fonts/Archivo-MediumItalic.svg#Archivo-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-SemiBold.eot');
    src: url('../fonts/Archivo-SemiBold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Archivo-SemiBold.woff2') format('woff2'),
         url('../fonts/Archivo-SemiBold.woff') format('woff'),
         url('../fonts/Archivo-SemiBold.ttf') format('truetype'),
         url('../fonts/Archivo-SemiBold.svg#Archivo-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-SemiBoldItalic.eot');
    src: url('../fonts/Archivo-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Archivo-SemiBoldItalic.woff2') format('woff2'),
         url('../fonts/Archivo-SemiBoldItalic.woff') format('woff'),
         url('../fonts/Archivo-SemiBoldItalic.ttf') format('truetype'),
         url('../fonts/Archivo-SemiBoldItalic.svg#Archivo-SemiBoldItalic') format('svg');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-Thin.eot');
    src: url('../fonts/Archivo-Thin.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Archivo-Thin.woff2') format('woff2'),
        url('../fonts/Archivo-Thin.woff') format('woff'),
        url('../fonts/Archivo-Thin.ttf') format('truetype'),
        url('Archivo-Thin.svg#Archivo-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
/* ── Variables ── */
:root {
    --clr-bg:       #000;
    --clr-bg-2:     #000;
    --clr-bg-card:  #161616;
    --clr-accent:   #FF9800;
    --clr-accent-d: #cc7a00;
    --clr-white:    #ffffff;
    --clr-muted:    #888888;
    --clr-border:   rgba(255,255,255,0.08);
    --ff:           'Archivo', sans-serif;
    --ff-google:    'Google Sans', sans-serif;
    --max-w:        1280px;
    --pad-x:        clamp(1.25rem, 2vw, 3rem);
    --transition:   0.28s ease;
    --radius:       4px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff);
    background: var(--clr-bg);
    color: var(--clr-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* Push all page content below the fixed header */
/* body { padding-top: 68px; } */

/* ── Layout ── */
.container {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--pad-x);
}
.section-pad { padding-block: clamp(4rem, 5vw, 7rem); }

/* ── Typography helpers ── */
.text-accent { color: var(--clr-accent); }

.section-tag {
    display: block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}
.section-tag.text-accent { color: var(--clr-accent); }

.section-heading {
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.4rem;
    font-size: 0.82rem;
    font-weight: 500;
    font-family: var(--ff);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
}
.btn-outline {
    border-color: rgba(255,255,255,0.35);
    color: var(--clr-white);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--clr-white);
    background: rgba(255,255,255,0.06);
}
.btn-outline-accent {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: transparent;
}
.btn-outline-accent:hover { background: rgba(255,152,0,0.1); }
.btn-accent {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #000;
    font-weight: 600;
}
.btn-accent:hover { background: var(--clr-accent-d); border-color: var(--clr-accent-d); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.78rem; }

/* ── Hero CTA — left→right amber fill (matches nav pill style) ── */
.btn-cta {
   position: relative;
    display: inline-block;
    align-items: center;
    padding: 0.72rem 1.6rem;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--ff);
    color: #fff;
    border: 1.5px solid #fff;
    background: transparent;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    z-index: 0;
    transition: color 0.38s ease, border-color 0.38s ease;
    width: auto;
    text-align: center;
    border-radius: 40px;
}
/* Amber fill slab — slides in from left on hover */
.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--clr-accent);
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.btn-cta:hover::before { transform: translateX(0); }
.btn-cta:hover {
    color: #000;
    border-color: var(--clr-accent);
}

/* ── Reveal animation ── */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Reveal variants (set via data-reveal="…") */
.reveal-fade-up    { transform: translateY(24px); }
.reveal-fade-in    { transform: none; }
.reveal-fade-left  { transform: translateX(-28px); }
.reveal-fade-right { transform: translateX(28px); }
.reveal-zoom       { transform: scale(0.94); }
.reveal.is-visible[class*="reveal-"] { transform: none; }

/* Stagger helper: children of a [data-reveal-children] container ease in in sequence */
[data-reveal-children] > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal-children].is-visible > * { opacity: 1; transform: none; }
[data-reveal-children].is-visible > *:nth-child(1) { transition-delay: 0.00s; }
[data-reveal-children].is-visible > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal-children].is-visible > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-children].is-visible > *:nth-child(4) { transition-delay: 0.24s; }
[data-reveal-children].is-visible > *:nth-child(5) { transition-delay: 0.32s; }
[data-reveal-children].is-visible > *:nth-child(6) { transition-delay: 0.40s; }

/* Subtle hover lift on cards (reuses the motion token) */
.vertical-card,
.diff-card,
.industry-card,
.logo-item,
.cap-card, .cy-card, .ag-card, .vrt-card, .elec-card, .cc-card {
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.vertical-card:hover,
.diff-card:hover,
.industry-card:hover,
.cap-card:hover, .cy-card:hover, .ag-card:hover, .vrt-card:hover, .elec-card:hover, .cc-card:hover {
    transform: translateY(0px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    
}

/* Accessibility: honor reduced-motion — no reveals, no keyframe/hover motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal,
    [data-reveal-children] > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    /* Hero scroll indicator is an intentional motion cue — keep it auto-scrolling */
    .hero-scroll-arrows svg { animation: scroll-chevron 1.8s ease-in-out infinite !important; }
    .hero-scroll-arrows svg:nth-child(1) { animation-delay: 0s !important; }
    .hero-scroll-arrows svg:nth-child(2) { animation-delay: 0.28s !important; }
    .hero-scroll-arrows svg:nth-child(3) { animation-delay: 0.56s !important; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition), border-color var(--transition);
}
.site-header.scrolled {
    background: rgba(10,10,10,0.98);
    border-bottom-color: rgba(255,255,255,0.12);
}
.header-inner {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 1.5rem;
}
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { width: auto; }

/* Primary nav */
.primary-nav { flex: 1; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
}
.nav-list li a {
    display: block;
    padding: 0.4rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
    white-space: nowrap;
    line-height: 100%;
    font-family: 'Google Sans', sans-serif;
}
.nav-list li a:hover,
.nav-list li.current-menu-item > a,
.nav-list li.current-menu-parent > a { color: var(--clr-white); }
.nav-arrow { font-size: 0.6rem; margin-left: 2px; opacity: 0.6; }

/* ── Dropdown ── */
.nav-list li {
    position: relative;
}
.nav-list li .sub-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 220px;
    background: rgba(18,18,18,0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    padding: 0.5rem 0;
    z-index: 2000;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.nav-list li:hover > .sub-menu,
.nav-list li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}
/* Small triangle pointer */
.nav-list li .sub-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 9px;
    height: 9px;
    background: rgba(18,18,18,0.97);
    border-left: 1px solid var(--clr-border);
    border-top: 1px solid var(--clr-border);
}
.nav-list li .sub-menu li {
    position: static;
}
.nav-list li .sub-menu li a {
    display: block;
    padding: 0.65rem 1.25rem;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
}
.nav-list li .sub-menu li a:hover {
    color: var(--clr-white);
    background: rgba(255,255,255,0.05);
}
/* Caret on parent link */
.nav-list li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 5px;
    vertical-align: middle;
    opacity: 0.6;
    transition: transform 0.22s ease;
}
.nav-list li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
    opacity: 1;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: auto;
    flex-shrink: 0;
}

/* Make an enquiry — pill button with left→right fill */
.btn-enquiry {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.4rem;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--ff);
    color: var(--clr-white);
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.75);
    border-radius: 100px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 0;
    transition: color 0.38s ease, border-color 0.38s ease;
}
/* Amber fill slab — starts fully off-screen to the left */
.btn-enquiry::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--clr-accent);
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: inherit;
}
.btn-enquiry:hover::before { transform: translateX(0); }
.btn-enquiry:hover {
    color: #fff;
    border-color: var(--clr-accent);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px 2px;
    width: 30px;
}
.nav-toggle span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--clr-white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
/* .hero-section:after{
    background: url('../images/Ellipse-bg.png') right bottom / contain no-repeat;
    content: '';
    width: 919px;
    height: 2076px;
    position: absolute;
    right: 0;
    z-index: 2;
} */
/* Video background */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.hero-section {
    position: relative;
    min-height: calc(100vh);
    background: var(--clr-bg) center / cover no-repeat;
    display: flex;
    flex-direction: column;
    
    padding-bottom: 0rem;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(270.09deg, rgba(0, 0, 0, 0.4) 22.2%, rgba(0, 0, 0, 0.7) 62.66%),
linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
linear-gradient(180deg, rgba(0, 0, 0, 0) 91.85%, #000000 100%);

    z-index: 2;
}
.hero-overlay::before{
    content: '';
    background: url('../images/effect1.png') no-repeat;
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
}
.hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.5fr 0.6fr;
    gap: 2.2rem;
    align-items: self-start;
    padding-top: 8rem;
}
.hero-heading {
    font-size: clamp(2.4rem, 4.4vw, 4.5rem);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0em;
        padding-top: 2rem;
}
.hero-heading span{
    font-weight: 700;
}
.hero-aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 0.25rem;
    padding-top: 6rem;
}
.hero-subtext {
    font-size: 1.25rem;
    line-height: 1.875rem;
    color: #999999;
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: var(--pad-x);
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}
.hero-scroll-label {
    font-size: 1rem;
    letter-spacing: 0.18em;
    font-weight: 500;
    color: #CCCCCC;
    text-transform: uppercase;
}
/* Cascading downward chevrons */
.hero-scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-left: 2px;
    height: 20px;
    /* overflow: auto; */
    width: 20px;
    display: block;
    overflow: hidden;
}
.hero-scroll-arrows svg {
    display: block;
    color: #fff;
    opacity: 0;
    animation: scroll-chevron 1.8s ease-in-out infinite;
}
.hero-scroll-arrows svg:nth-child(1) { animation-delay: 0s; }
.hero-scroll-arrows svg:nth-child(2) { animation-delay: 0.28s; }
.hero-scroll-arrows svg:nth-child(3) { animation-delay: 0.56s; }

@keyframes scroll-chevron {
    0%   { opacity: 0;   transform: translateY(-6px); }
    30%  { opacity: 0.7; }
    60%  { opacity: 0.7; transform: translateY(2px); }
    100% { opacity: 0;   transform: translateY(6px); }
}

/* ── Fill-reveal button ── */
.btn-fill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.83rem;
    font-weight: 500;
    font-family: var(--ff);
    color: var(--clr-white);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: var(--radius);
    background: transparent;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.35s ease, border-color 0.35s ease;
}
/* Amber fill that slides up from bottom */
.btn-fill-bg {
    position: absolute;
    inset: 0;
    background: var(--clr-accent);
    transform: translateY(102%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
.btn-fill:hover .btn-fill-bg { transform: translateY(0); }
.btn-fill:hover {
    color: #000;
    border-color: var(--clr-accent);
}
.btn-fill-text,
.btn-fill-arrow {
    position: relative;
    z-index: 1;
}
.btn-fill-arrow {
    display: flex;
    align-items: center;
    transform: translateX(0);
    transition: transform 0.28s ease;
}
.btn-fill:hover .btn-fill-arrow { transform: translateX(4px); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
    position: relative;
    background: var(--clr-bg-2) center / cover no-repeat;
    overflow: hidden;
    height: 100vh;
}

/* Video / image background */
.about-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.about-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}
.about-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.about-overlay {
    position: absolute;
    inset: 0;
        background: linear-gradient(90.37deg, rgba(0, 0, 0, 0.9) 12.08%, rgba(0, 0, 0, 0.5) 102.2%), linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 12.52%);
    z-index: 1;
}

.about-overlay::before{
    content: '';
    background: url('../images/effect2.png') no-repeat;
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
}
.about-content {
    position: relative;
    z-index: 2;
}

/* Single left-aligned column — background shows through on right */
.about-col {
    max-width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
/* About-section tag — 18px, amber */
.about-section .section-tag {
    font-size: 18px;
    color: var(--clr-accent);
    margin-bottom: 0;
}
.about-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.28;
    margin-bottom: 0;
    color: #CCCCCC;
}
.about-body {
    font-size: 20px;
    line-height: 1.85;
    color: #999999;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .about-col { max-width: 100%; }
}
@media (max-width: 600px) {
    .about-heading { font-size: 30px; }
    .about-body    { font-size: 17px; }
}

/* ============================================================
   TECH SOLUTION LOGOS
   ============================================================ */
.tech-section {
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
}
.tech-label {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 2.5rem;
}
.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem 1.5rem;
    align-items: center;
}
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    opacity: 0.45;
    filter: grayscale(1) brightness(1.4);
    transition: opacity var(--transition), filter var(--transition);
}
.logo-item:hover { opacity: 0.85; filter: grayscale(0) brightness(1); }
.logo-item img { max-height: 26px; width: auto; }
.logo-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* ============================================================
   CORE VERTICALS
   ============================================================ */
.verticals-section {
    background: var(--clr-bg-2);
    border-top: 1px solid var(--clr-border);
}
.verticals-section .section-heading {
 font-family: 'Archivo';   
     font-weight: 100;    
    font-size:  clamp(36px, 5vw, 64px);
}
/* 2-column grid — third card spans full width */
.verticals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.vertical-card:nth-child(3) {
    grid-column: 1 / -1;
    background: url('../images/large-box-bg.png') center / cover no-repeat;
}
.vertical-card {
    background: #1a0e00;
background: url('../images/small-box.png') center / cover no-repeat;
    border-radius: 14px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    transition: background var(--transition);
}
/* .vertical-card:hover { background: #211200; } */
.vertical-icon {
    width: 61px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
}
.vertical-icon svg { width: 38px; height: 38px; stroke-width: 1.5; }
.vertical-title {
    font-size: 2.05rem;
    line-height: 1.25;
    color: var(--clr-white);
    font-family: 'Archivo';   
     font-weight: 100;  
}
.vertical-desc {
    font-size: 20px;
    color: #93969F;
    line-height: 30px;
    flex: 1;
}
.vertical-link {
    font-size: 20px;
    color: var(--clr-accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap var(--transition);
    font-family: 'Google Sans', sans-serif;
    line-height: 30px;
}
.vertical-link:hover { gap: 0.5rem; }

/* ============================================================
   DIFFERENTIATORS
   ============================================================ */
.diff-section {
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
    overflow: hidden;
}
.diff-section .section-heading{
       font-family: 'Archivo';   
     font-weight: 100;  
     font-size:  clamp(36px, 5vw, 64px); 
}
.diff-eyebrow {
    font-size: 1.2rem;
    color: #FF9800;
    margin-bottom: 0.15rem;
}

/* ── Marquee container ── */
.diff-marquee-outer {
    margin-top: 2.5rem;
    overflow: hidden;
    /* Fade edges so cards dissolve at viewport edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.diff-track {
    display: flex;
    width: max-content;
    /* No gap here — margin-right on each card ensures trailing space
       is included in the total width so -50% lands exactly at the seam */
    animation: diff-marquee 35s linear infinite;
}
.diff-track:hover { animation-play-state: paused; }

@keyframes diff-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Diff card ── */
.diff-card {
    position: relative;
    flex: 0 0 340px;
    height: 420px;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    /* Spacing lives here so -50% translateX lands exactly at the seam */
    margin-right: 1.25rem;
}

/* Image layer */
.diff-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.diff-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.65s ease;
}
.diff-card:hover .diff-img-wrap img { transform: scale(1.06); }
.diff-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #181818, #252525);
}

/* Dark gradient — always visible, keeps text readable */
.diff-overlay-dark {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.80) 0%,
        rgba(0,0,0,0.30) 45%,
        transparent      100%
    );
    transition: opacity 0.45s ease;
}
.diff-card:hover .diff-overlay-dark { opacity: 0; }

/* Amber gradient overlay — hidden at rest, floods in on hover */
.diff-overlay-amber {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(190, 90, 0, 0.95) 0%,
        rgba(215, 120, 0, 0.70) 30%,
        rgba(170, 70, 0, 0.25) 60%,
        transparent             100%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
}
.diff-card:hover .diff-overlay-amber { opacity: 1; }

/* Content block — pinned to bottom */
.diff-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.5rem;
}

/* Normal: amber title. Hover: white title */
.diff-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--clr-accent);
    margin-bottom: 0;
    transition: color 0.35s ease, margin-bottom 0.35s ease;
}
.diff-card:hover .diff-card-title {
    color: var(--clr-white);
    margin-bottom: 0.5rem;
}

/* Description — hidden at rest, slides up on hover */
.diff-card-desc {
    font-size: 0.8rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    transition: max-height 0.4s ease, opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}
.diff-card:hover .diff-card-desc {
    max-height: 100px;
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   CAPABILITY SPOTLIGHT
   ============================================================ */
/* Spotlight video / image background */
.spot-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.spot-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}
.spot-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.spotlight-section {
    position: relative;
    background: #0d0d0d center / cover no-repeat;
    padding-block: 6rem;
    overflow: hidden;
    border-top: 1px solid var(--clr-border);
    height: 100vh;
}
.spotlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,10,10,0.88) 0%,
        rgba(10,10,10,0.5) 55%,
        rgba(10,10,10,0.4) 100%
    );
    z-index: 1;
}
.spotlight-overlay::before {
    content: '';
    background: url(../images/effect1.png) no-repeat;
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
}
.spotlight-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2.5rem;
    height: 100%;
}
.spotlight-heading {
    font-size: clamp(1.6rem, 4vw, 4rem);
    font-weight: 100;
    line-height: 1.2;
    margin-top: 0.4rem;
}
.spotlight-content + a.btn.btn-enquiry {
    font-size: 18px;
    color: #FFFFFF;
}
/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section {
    background: var(--clr-bg-2);
    border-top: 1px solid var(--clr-border);
}
.industries-section::before {
    content: '';
    background: url(../images/effect1.png) no-repeat;
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
}
.industries-heading {
    font-size: clamp(1.2rem, 4vw, 4rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 100;
    margin-bottom: 2.5rem;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
        gap: 42px;
        padding-bottom: 10px;
}
.industry-card {
    padding: 2rem 1.5rem;
    border: 1px solid #FF9800;
    border-radius: 16px;
    transition: background var(--transition);
}

.industry-card:hover { background: rgba(255,152,0,0.04); }
.industry-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 0.75rem;
}
.industry-desc {
    font-size: 1.13rem;
    color: #fff;
    line-height: 1.75;
}

/* ============================================================
   CAREERS TEASER
   ============================================================ */
.careers-section {
    position: relative;
    background: #080808 center / cover no-repeat;
    padding-block: 8rem;
    border-top: 1px solid var(--clr-border);
    text-align: center;
}
.careers-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,8,8,0.72);
    z-index: 1;
}
.careers-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.careers-heading {
    font-size: clamp(1.9rem, 4vw, 4rem);
    font-weight: 100;
    line-height: 1.1;
    letter-spacing: -0.025em;
    
}
.careers-subtext {
    font-size: 1.12rem;
    color: #fff;
}
.careers-count {
    font-weight: 700;
    color: var(--clr-white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #000;
    border-top: 1px solid var(--clr-border);
}

/* Grid: brand spans both rows; contact row spans caps+company cols */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 4rem;
    row-gap: 0;
    padding-block: 5rem 0;
}
.footer-brand {
    grid-column: 1;
    grid-row: 1 / 3;
    padding-bottom: 4rem;
}
.footer-nav-col {
    grid-row: 1;
    padding-bottom: 3rem;
}
.footer-contact-row {
    grid-column: 2 / 4;
    grid-row: 2;
    padding-block: 2.5rem;
    border-top: 1px solid var(--clr-border);
}

/* Brand */
.footer-logo { margin-bottom: 1.5rem; display: block; }
.footer-logo img { width: auto; }
.footer-tagline {
    font-size: 1rem;
    color: var(--clr-white);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 340px;
    font-weight: 400;
    font-family: 'Google Sans', sans-serif;
}

/* Newsletter — bottom-border only input */
.newsletter-wrap {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding-bottom: 0.65rem;
    margin-bottom: 1rem;
}
.newsletter-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 1rem;
    color: #808080;
    font-family: var(--ff);
    outline: none;
    min-width: 0;
    font-size: 27px;
    font-weight: 100;
    line-height: 38px;
}
.newsletter-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-wrap button {
    background: none;
    padding: 0;
    color: var(--clr-white);
    display: flex;
    align-items: center;
    transition: color var(--transition);
    flex-shrink: 0;
}
.newsletter-wrap button:hover { color: var(--clr-accent); }
.newsletter-consent {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    line-height: 19px;
    max-width: 340px;
    font-family: 'Google Sans', sans-serif;
}
.newsletter-consent a {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.newsletter-consent a:hover { color: var(--clr-white); }

/* Column headings */
.footer-col-title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Google Sans', sans-serif;
    color: var(--clr-accent);
    margin-bottom: 1.75rem;
}

/* Nav links */
.footer-nav-list { display: flex; flex-direction: column; gap: 1.1rem; }
.footer-nav-list a {
    font-size:18px;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
    font-family: 'Google Sans', sans-serif;
}
.footer-nav-list a:hover { color: var(--clr-white); }

/* Contact row — inline items */
.footer-contact-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 2.5rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
}
.footer-contact-items a {
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
}
.footer-contact-items a:hover { color: var(--clr-white); }

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 1.5rem;
    border-top: 1px solid var(--clr-border);
}
.footer-copyright { font-size: 18px; color: #fff; }
.footer-copyright-right { display: block; }
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-accent);
    color: #000;
    border-radius: 50%;
    font-size: 1.1rem;
    line-height: 1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--clr-accent-d);
}

/* ============================================================
   VERTICAL PAGE — SECURE INFRASTRUCTURE
   ============================================================ */

/* ── Hero: reuses .cap-hero — just ensure min-height ── */
.vrt-hero { min-height: 75vh; }

/* ── Vertical Overview ── */
.vrt-overview {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 6rem;
    overflow: hidden;
    background: var(--clr-bg);
}
.vrt-ov-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.vrt-ov-media video,
.vrt-ov-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}
.vrt-ov-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.8) 100%); */
    z-index: 1;
}
.vrt-ov-content {
    position: relative;
    z-index: 2;
        width: 100%;
}
.vrt-ov-heading {
    font-size:  clamp(36px, 5vw, 64px);
    font-weight: 100;
    line-height: 140%;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}
.vrt-ov-desc {
    font-size: 1rem;
    line-height: 140%;
    color: #999999;
    max-width: 688px;
}

/* ── Shared vertical section heading ── */
.vrt-section-heading {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 100;
    color: var(--clr-white);
    margin-bottom: 2.5rem;
    line-height: 140%;
}

/* ── Capability Grid ── */
.vrt-cap-section { background: var(--clr-bg); }
.vrt-cap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.vrt-cap-card {
    background: #000;
    border: 1px solid var(--clr-accent);
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
     background: url('../images/card-bg-4.png') right bottom / contain no-repeat;  background-size: cover;
}

.ag-use-section .vrt-cap-card, .ag-op-section .vrt-cap-card{ background: url('../images/module-bg.png') right bottom / contain no-repeat;  background-size: cover;}
.vrt-cap-icon { color: var(--clr-white); flex-shrink: 0; }
.vrt-cap-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-white);
    line-height: 100%;
}
.vrt-cap-desc {
    font-size: 14px;
    line-height: 140%;
    color: #999999;
    margin: 0;
}

/* ── Deployment Scenarios ── */
.vrt-deploy-section {
    background: var(--clr-bg);
}
.vrt-deploy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.vrt-deploy-card {

    background: #0E0E1099;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #232327;
    padding: 16px;
}
.vrt-deploy-img-wrap { flex-shrink: 0; border-radius: 10spx; overflow: hidden; }
.vrt-deploy-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.65s ease;
}    
.vrt-deploy-card:hover .vrt-deploy-img-wrap img
{transform: scale(1.06);}
.vrt-deploy-img-placeholder {
    width: 100%;
    height: 200px;
    background: #1a1a1a;
}
.vrt-deploy-body { padding: 0; flex: 1;     margin-top: 16px;}
.vrt-deploy-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom:10px;
    line-height: 100%;
}
.vrt-deploy-desc {
    font-size: 14px;
    line-height: 140%;
    color: #999999;
    margin: 0;
}
.vrt-deploy-tags {
    font-size: 11px;
    color: #737373;
    letter-spacing: 0.02em;
    font-weight: 400;
}

/* ── Related Capabilities ── */
.vrt-related-section {
    background: var(--clr-bg-2);
    
}
.vrt-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.vrt-related-card {
    background: url('../images/card-bg.png') right bottom / contain no-repeat;
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: border-color var(--transition);
    border: 1px solid transparent;
}
.vrt-related-card--linked { cursor: pointer; }
.vrt-related-card--linked:hover { border-color: var(--clr-border); }
.vrt-related-link {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    color: inherit;
    text-decoration: none;
}
.vrt-related-icon { color: var(--clr-white); }
.vrt-related-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-white);
    line-height: 100%;
}
.vrt-related-desc {
    font-size: 14px;
    line-height: 140%;
    color: #999999;
    margin: 0;
}

/* ── Vertical page responsive ── */
@media (max-width: 1100px) {
    .vrt-cap-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .vrt-ov-content { max-width: 100%; }
    .vrt-cap-grid { grid-template-columns: repeat(2, 1fr); }
    .vrt-deploy-grid { grid-template-columns: 1fr 1fr; }
    .vrt-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .vrt-cap-grid { grid-template-columns: 1fr; }
    .vrt-deploy-grid { grid-template-columns: 1fr; }
    .vrt-related-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ELECTRONICS ENGINEERING PAGE
   ============================================================ */

/* ── Hero override: content top-left, not bottom ── */
.elec-hero {
    min-height: 100vh !important;
    padding-top: clamp(6rem, 18vh, 12rem);
    padding-bottom: 5rem;
}

/* .elec-hero .cap-hero-overlay {
    background: linear-gradient(to right, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.15) 100%);
} */

/* ── Labs Overview ── */
.elec-overview {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-bottom: 2rem;
    overflow: hidden;
    background: var(--clr-bg);
}
.elec-ov-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.elec-ov-media video,
.elec-ov-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}
.elec-ov-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.82) 100%);
    z-index: 1;
}
.elec-ov-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.elec-section-tag {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 1.25rem;
}
.elec-story .elec-ov-heading {
    font-size: 32px;
    font-weight: 100;
    line-height: 48px;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    width: 40%;
}
.elec-ov-heading {
    font-size:  clamp(36px, 5vw, 64px);
    font-weight: 100;
    line-height: 140%;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}
.elec-ov-desc {
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    color: #999999;
        max-width: 745px;
}

/* ── Transformation Story ── */
.elec-story {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    padding-block: 6rem;
    overflow: hidden;
    background: var(--clr-bg);
}
.elec-story:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(180deg, #000000 -6.84%, rgba(0, 0, 0, 0) 47.61%, rgba(0, 0, 0, 0.826304) 76.23%, #000000 100%);
    position: absolute;
}
.elec-story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.3) 100%);
    z-index: 1;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .elec-ov-content { max-width: 100%; }
}

/* ============================================================
   AIR-GAPPED INFRASTRUCTURE PAGE
   ============================================================ */

/* ── Hero ── */
.airgap-hero {
    align-items: center !important;
    padding-top: clamp(8rem, 18vh, 14rem) !important;
    padding-bottom: 5rem;
}
.airgap-hero .cap-hero-overlay {
    background: linear-gradient(to right, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.6) 50%, rgba(5,5,5,0.1) 100%);
}

/* ── Threat Rationale ── */
.ag-threat {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg);
}
.ag-threat-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ag-threat-media video { width: 100%; height: 100%; object-fit: cover; }
.ag-threat-media-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.ag-threat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.55) 55%, rgba(5,5,5,0.1) 100%);
    z-index: 1;
}
.ag-threat-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: 5rem;
}
.ag-threat-heading {
    font-size:  clamp(36px, 5vw, 64px);
    font-weight: 100;
    line-height: 140%;
    color: var(--clr-white);
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
}
.ag-threat-desc {
    font-size: 1rem;
    color: var(--clr-muted);
    line-height: 140%;
    max-width: 677px;
    color: #999999;
}

/* ── Shared section heading ── */
.ag-section-heading {
    font-size:  clamp(36px, 5vw, 64px);
    font-weight: 100;
    line-height: 140%;
    color: var(--clr-white);
    margin-bottom: 2rem;
}

/* ── Use Cases (4-col) ── */
.ag-use-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* ── Operating Model (2-col, 3rd card offset to right column) ── */
.ag-op-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}
.ag-op-grid > *:nth-child(3) { grid-column: 3; }

/* ── Air-Gapped responsive ── */
@media (max-width: 1100px) {
    .ag-use-grid { grid-template-columns: repeat(2, 1fr); }
    .ag-threat-content { max-width: 70%; }
}
@media (max-width: 900px) {
    .airgap-hero .cap-hero-inner { max-width: 90%; }
    .ag-use-grid { grid-template-columns: 1fr 1fr; }
    .ag-op-grid { grid-template-columns: 1fr; }
    .ag-op-grid > *:nth-child(3) { grid-column: 1; }
    .ag-threat-content { max-width: 90%; }
}
@media (max-width: 500px) {
    .ag-use-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CYBERSECURITY & DIGITAL TRUST PAGE
   ============================================================ */

/* ── Hero ── */
.cy-hero {
    align-items: center !important;
    padding-top: clamp(8rem, 18vh, 14rem) !important;
    padding-bottom: 5rem;
}
.cy-hero .cap-hero-overlay {
    background: linear-gradient(to right, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.6) 50%, rgba(5,5,5,0.1) 100%);
}

/* ── Overview (reuses elec-ov-* media stack, just needs section wrapper) ── */
.cy-overview {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--clr-bg);
}
.cy-overview .elec-ov-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.1) 100%);
}
.cy-overview .elec-ov-content { padding-block: 5rem; }

/* ── Section headings ── */
.cy-overview .elec-ov-heading {
max-width: 58%;
}
.cy-section-heading {
    font-size:  clamp(36px, 5vw, 64px);
    font-weight: 100;
    color: var(--clr-white);
    margin-bottom: 2rem;
    line-height: 140%;
}
.cy-section-desc {
    font-size: 22px;
    color: var(--clr-muted);
    line-height: 140%;
    font-weight: 100;
    max-width: 83ch;
    margin-bottom: 2.5rem;
}

/* ── Security Solutions – 4-col ── */
.cy-sol-section { background: var(--clr-bg); }
.cy-sol-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* ── Integrated – 3-col ── */
.cy-infra-section { background: var(--clr-bg); }
.cy-infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.cy-infra-section .vrt-cap-card {
        border: 1px solid #232327;
}
/* ── Responsive ── */
@media (max-width: 1100px) {
    .cy-sol-grid   { grid-template-columns: repeat(2, 1fr); }
    .cy-infra-grid { grid-template-columns: repeat(2, 1fr); }
    .cy-overview .elec-ov-content { max-width: 75%; }
}
@media (max-width: 700px) {
    .cy-sol-grid   { grid-template-columns: 1fr; }
    .cy-infra-grid { grid-template-columns: 1fr; }
    .cy-overview .elec-ov-content { max-width: 100%; }
}

/* ============================================================
   COMMAND & CONTROL CENTER PAGE
   ============================================================ */

/* ── Hero ── */
.cc-hero {
    align-items: center !important;
    padding-top: clamp(8rem, 18vh, 14rem) !important;
    padding-bottom: 5rem;
}
.cc-hero .cap-hero-overlay {
    background: linear-gradient(to right, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.6) 50%, rgba(5,5,5,0.1) 100%);
}

/* ── System of Systems ── */
.cc-sos {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg);
}
.cc-sos-media { position: absolute; inset: 0; z-index: 0; }
.cc-sos-media video { width: 100%; height: 100%; object-fit: cover; }
.cc-sos-media-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.cc-sos-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.55) 55%, rgba(5,5,5,0.1) 100%);
    z-index: 1;
}
.cc-sos-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: 5rem;
}
.cc-sos-heading {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--clr-white);
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
}
.cc-sos-desc {
    font-size: 16px;
    color: var(--clr-muted);
    line-height: l40%;
    max-width: 706px;
    color: #999999;
}

/* ── Deployment Scenarios ── */
.cc-deploy-section { background: var(--clr-bg); }
.cc-deploy-heading {
    font-size:  clamp(36px, 5vw, 64px);
    font-weight: 100;
    line-height: 140%;
    color: var(--clr-white);
    margin-bottom: 2rem;
}
.cc-deploy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.cc-deploy-card {
    background: url('../images/card-bg-2.png') right bottom / contain no-repeat;
    border: 1px solid rgba(255,152,0,0.18);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-size: cover;
}
.cc-deploy-icon { color: var(--clr-white); }
.cc-deploy-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.3;
}
.cc-deploy-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

/* ── C&C responsive ── */
@media (max-width: 1100px) {
    .cc-deploy-grid { grid-template-columns: repeat(2, 1fr); }
    .cc-sos-content { max-width: 70%; }
}
@media (max-width: 900px) {
    .cc-hero .cap-hero-inner { max-width: 90%; }
    .cc-sos-content { max-width: 90%; }
}
@media (max-width: 500px) {
    .cc-deploy-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CORE CAPABILITIES PAGE
   ============================================================ */

/* ── Shared section padding ── */
.section-pad { padding-block: 3rem; }

/* ── CAP HERO ── */
.cap-hero {
position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-bottom: 3rem;
    overflow: hidden;
    background: var(--clr-bg);
    padding-top: 6rem;
}
.cap-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cap-hero-media video,
.cap-hero-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}
.cap-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.72) 100%);
    z-index: 1;
}
.cap-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}
.cap-hero-content {
    max-width: 55%;
}
.cap-hero-heading {
    font-size: clamp(2.4rem, 4.4vw, 4.5rem); /* responsive — matches home .hero-heading */
    font-weight: 700;
    line-height: 100%;
    color: var(--clr-white);
    max-width: 70%;
}
.cap-hero .cap-hero-heading {
    max-width: 100%;
}
.cap-hero-desc {
    font-size: 20px;
    line-height: 140%;
    color: #FFFFFF;
    max-width: 70%;
    font-weight: 400;
}

/* ── CAP FRAMEWORK ── */
.cap-framework {
    position: relative;
    overflow: hidden;
    background: var(--clr-bg-2);
    padding-block: 10rem;
}
.cap-fw-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cap-fw-media video,
.cap-fw-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}
.cap-fw-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(10,10,10,0.75); */
    z-index: 1;
}
.cap-fw-content {
    position: relative;
    z-index: 2;    
}
.cap-fw-heading {
    font-size: clamp(2rem, 3.5vw, 2.55rem);
    font-weight: 400;
    color: var(--clr-white);
    margin-bottom: 15px;
    line-height: 140%;
}
.cap-fw-desc {
font-size: 1rem;
    line-height: 140%;
    color: #999999;
    max-width: 60%;
}

/* ── CAP VERTICALS ── */
.cap-verticals { background: var(--clr-bg); }
.cap-vert-row {
    display: grid;
    grid-template-columns: 2fr 1.6fr;
    gap: 4rem;
    align-items: center;
    padding-block: 3rem;
    border-top: 1px solid #FFFFFF26;
}
.cap-vert-row .cap-vert-image {
    overflow: hidden;
}
.cap-vert-row .cap-vert-image{
    transition: transform 0.65s ease;
}
.cap-vert-row:hover .cap-vert-image img{
    transform: scale(1.06);
}
.cap-vert-row--first { border-top: none; padding-top: 0; }
.cap-vert-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 1rem;
    font-family: 'Google Sans', sans-serif;
}
.cap-vert-title {
    font-size: 40px;
    font-weight: 100;
    color: #fff;
    line-height: 48px;
    margin-bottom: 1rem;
}
.cap-vert-desc {
    font-size: 1rem;
    line-height: 140%;
    color: #fff;
    margin-bottom: 1.5rem;
}
.cap-vert-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.cap-vert-img-placeholder {
    width: 100%;
    height: 360px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid var(--clr-border);
}

/* ── CAP SERVICES ── */
.cap-services { background:#000000; border-top: 1px solid var(--clr-border); }
.cap-services-heading {
    font-size:  clamp(36px, 5vw, 64px);
    font-weight: 100;
    color: var(--clr-white);
    margin-bottom: 35px;
    line-height: 140%;
}
.cap-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.cap-services-grid .cap-service-card:nth-child(3) {
    grid-column: 1 / -1;
}
.cap-service-card {
    background: #1a0e00;
    border-radius: 14px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cap-service-icon {
    color: var(--clr-accent);
    flex-shrink: 0;
}
.cap-service-title {
    font-size: 2rem;
    font-weight: 100;
    color: var(--clr-white);
    line-height: 48px;
}
.cap-service-desc {
    font-size: 20px;
    line-height: 30px;
    color: #93969F;
    margin: 0;
    font-weight: 400;
        font-family: 'Google Sans', sans-serif;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .logos-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; column-gap: 2rem; }
    .footer-brand { grid-column: 1 / 3; grid-row: auto; padding-bottom: 2rem; }
    .footer-nav-col { grid-row: auto; }
    .footer-contact-row { grid-column: 1 / 3; grid-row: auto; }
}

@media (max-width: 900px) {
    .cap-hero-inner   { max-width: 100%; }
    .cap-hero-content { max-width: 100%; }
    .cap-hero-desc    { max-width: 100%; }
    .cap-fw-content { max-width: 100%; }
    .cap-vert-row   { grid-template-columns: 1fr; gap: 2rem; }
    .cap-services-grid { grid-template-columns: 1fr; }
    .cap-services-grid .cap-service-card:nth-child(3) { grid-column: auto; }
    .hero-inner  { grid-template-columns: 1fr; gap: 2rem; }
    .about-grid  { grid-template-columns: 1fr; gap: 2rem; }
    .about-overlay { background: rgba(10,10,10,0.88); }
    .verticals-grid { grid-template-columns: 1fr; }
    .vertical-card:nth-child(3) { grid-column: auto; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    /* .industry-card:nth-child(2) { border-right: none; }
    .industry-card:nth-child(3) { border-top: 1px solid var(--clr-border); }
    .industry-card:nth-child(4) { border-top: 1px solid var(--clr-border); border-right: none; } */
    .spotlight-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .btn-enquiry { display: none; }
    .primary-nav {
        position: fixed;
        top: 68px; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,10,0.98);
        padding: 2rem var(--pad-x);
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        height: 100vh;
        z-index: 999;
    }
    .primary-nav.is-open { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
    .nav-list li a { font-size: 1.1rem; padding: 0.7rem 0; }
    .nav-list li { border-bottom: 1px solid var(--clr-border); width: 100%; }
    /* Mobile dropdown: always visible, indented */
    .nav-list li .sub-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0.5rem 1rem;
        box-shadow: none;
        min-width: 0;
        transition: none;
    }
    .nav-list li .sub-menu::before { display: none; }
    .nav-list li .sub-menu li { border-bottom: none; }
    .nav-list li .sub-menu li a {
        font-size: 0.95rem;
        padding: 0.45rem 0;
        color: rgba(255,255,255,0.55);
    }
    .nav-list li.menu-item-has-children > a::after { display: none; }
    .logos-grid { grid-template-columns: repeat(3, 1fr); }
    .nav-list li:hover > .sub-menu, .nav-list li:focus-within > .sub-menu {
            transform: translateX(0%) translateY(0);
    }
}

@media (max-width: 560px) {
    .industries-grid { grid-template-columns: 1fr; }
    /* .industry-card { border-top: 1px solid var(--clr-border); } */
    /* .industry-card:first-child { border-top: none; } */
    .logos-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand { grid-column: 1; }
    .footer-contact-row { grid-column: 1; }
    .footer-contact-items { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .hero-section { min-height: calc(100svh - 68px); padding-bottom: 4rem; }
}

/* ============================================================
   OPERATIONAL DOMAIN PAGE
   ============================================================ */

/* ── Hero ── */
.od-hero {
    min-height: 100vh !important;
    align-items: center !important;
    padding-top: clamp(6rem, 14vh, 10rem) !important;
    padding-bottom: clamp(3rem, 6vh, 5rem);
}
.od-hero-overlay {
    background: linear-gradient(135deg,
        rgba(18,9,0,0.92) 0%,
        rgba(12,6,0,0.72) 40%,
        rgba(0,0,0,0.18) 100%
    );
}
.od-hero-heading {
    font-size:  clamp(36px, 5vw, 64px);
    max-width: 62% !important;
    line-height: 1.08 !important;
}
.od-hero-desc {
    max-width: 65% !important;

    font-size: 20px !important;
    line-height: 140%;
}

/* ── Domain Selector Grid ── */
.od-grid-section {
    background: linear-gradient(180deg, #100800 0%, #070400 65%, #000 100%);
    padding-block: clamp(4rem, 6vw, 7rem);
}
.od-grid-heading {
    font-size:  clamp(36px, 5vw, 64px);
    font-weight: 300;
    color: var(--clr-white);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}
.od-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}
.od-grid-card {
    background: #0d0b06;
    border: 1px solid var(--clr-accent);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.od-grid-icon {
    color: var(--clr-white);
    display: flex;
    align-items: center;
}
.od-grid-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.3;
}
.od-grid-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin: 0;
}

/* ── Domain Detail Rows ── */
.od-domains-section { background: var(--clr-bg); }
.od-domain-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: center;
    padding-block: clamp(3.5rem, 5vw, 6rem);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.od-domain-row:last-child { border-bottom: none; }

/* Reverse: flip column ratio so text (order:2) still gets the wider slot */
.od-domain-row--reverse {
    grid-template-columns: 1fr 1.5fr;
}
.od-domain-row--reverse .od-domain-text  { order: 2; }
.od-domain-row--reverse .od-domain-image { order: 1; }

.od-domain-title {
    font-size: 40px;
    line-height: 48px;
    font-weight: 100;
    color: var(--clr-white);
    margin-bottom: 1.25rem;
}
.od-domain-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #FFFFFF;
}
.od-domain-image {
    height: clamp(240px, 32vh, 400px);
    overflow: hidden;
}
.od-domain-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.od-domain-img-placeholder {
    width: 100%;
    height: 100%;
    background: #0d0d0d;
}

/* ── Operational Domain responsive ── */
@media (max-width: 1100px) {
    .od-grid { grid-template-columns: repeat(3, 1fr); }
    .od-hero-heading { max-width: 80% !important; }
    .od-hero-desc    { max-width: 70% !important; }
}
@media (max-width: 860px) {
    .od-grid { grid-template-columns: repeat(2, 1fr); }
    .od-domain-row,
    .od-domain-row--reverse {
        grid-template-columns: 1fr;
    }
    .od-domain-row--reverse .od-domain-text  { order: 1; }
    .od-domain-row--reverse .od-domain-image { order: 2; }
    .od-domain-title { font-size: 28px; line-height: 36px; }
    .od-hero-heading { max-width: 100% !important; }
    .od-hero-desc    { max-width: 100% !important; }
}
@media (max-width: 560px) {
    .od-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ECOSYSTEM PAGE
   ============================================================ */

/* ── Hero ── */

.eco-hero-overlay {
    background: linear-gradient(to right,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.55) 45%,
        rgba(0,0,0,0.08) 100%
    );
}
.eco-hero-heading {
    font-size:  clamp(36px, 5vw, 64px) !important;
    max-width: 62% !important;
    font-weight: 700 !important;
    line-height: 100% !important;
}
.eco-hero-desc {
    max-width: 52% !important;
    font-size: 1.05rem !important;
}

/* ── Ecosystem Philosophy ── */
.eco-phil-section { background: var(--clr-bg); }
.eco-phil-heading {
    font-size:  clamp(36px, 5vw, 64px);
    font-weight: 100;
    color: var(--clr-white);
    line-height: 140%;
    margin-bottom: clamp(2rem, 3.5vw, 3rem);
}
.eco-phil-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.eco-phil-card {
    background: url('../images/card-bg-3.png') no-repeat right bottom;
    border: 1px solid #232327;
    border-radius: 12px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-size: cover;
}
.eco-phil-icon {
    color: var(--clr-white);
    display: flex;
    align-items: center;
}
.eco-phil-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-white);
    line-height: 100%;
}
.eco-phil-desc {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    line-height: 140%;
}

/* ── Feature Rows ── */
.eco-features-section { background: var(--clr-bg); padding-top: 0; }
.eco-feature-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: center;
    padding-block: clamp(3.5rem, 5vw, 6rem);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.eco-feature-row:last-child { border-bottom: none; }
.eco-feature-row--reverse {
    grid-template-columns: 1fr 1.5fr;
}
.eco-feature-row--reverse .eco-feature-text  { order: 2; }
.eco-feature-row--reverse .eco-feature-image { order: 1; }
.eco-feature-title {
    font-size: 40px;
    line-height: 48px;
    font-weight: 100;
    color: var(--clr-white);
    margin-bottom: 1.25rem;
}
.eco-feature-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #FFFFFF;
}
.eco-feature-image {
    height: clamp(240px, 32vh, 400px);
    overflow: hidden;
}
.eco-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.eco-feature-img-placeholder {
    width: 100%;
    height: 100%;
    background: #0d0d0d;
}

/* ── Ecosystem responsive ── */
@media (max-width: 900px) {
    .eco-phil-grid { grid-template-columns: 1fr; }
    .eco-hero-heading { max-width: 80% !important; }
    .eco-hero-desc    { max-width: 70% !important; }
}
@media (max-width: 860px) {
    .eco-feature-row,
    .eco-feature-row--reverse {
        grid-template-columns: 1fr;
    }
    .eco-feature-row--reverse .eco-feature-text  { order: 1; }
    .eco-feature-row--reverse .eco-feature-image { order: 2; }
    .eco-feature-title { font-size: 28px; line-height: 36px; }
    .eco-hero-heading { max-width: 100% !important; }
    .eco-hero-desc    { max-width: 100% !important; }
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */

/* ── Hero ── */

.car-hero-overlay {
    background: linear-gradient(to right,
        rgba(0,0,0,0.80) 0%,
        rgba(0,0,0,0.55) 45%,
        rgba(0,0,0,0.08) 100%
    );
}
.car-hero-heading {
    max-width: 58% !important;
}


/* ── Shared section heading (Why / Life / Growth) ── */
.car-section-heading {
    font-size:  clamp(36px, 5vw, 64px);
    font-weight: 100;
    color: var(--clr-white);
    line-height: 140%;
    margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

/* ── Why Ductus ── */
.car-why-section {
    background: linear-gradient(180deg, #100800 0%, #070400 65%, #000 100%);
}

/* ── 4-col icon card grid (shared by Why + Growth) ── */
.car-4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.car-icon-card {
    
    border: 1px solid var(--clr-accent);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.car-icon-wrap {
    color: var(--clr-white);
    display: flex;
    align-items: center;
}
.car-icon-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-white);
    line-height: 1.35;
}
.car-icon-desc {
    font-size: 14px;
    color: #999999;
    line-height: 140%;
    margin: 0;
}

/* ── Life at Ductus ── */
.car-life-section { background: var(--clr-bg); }
.car-life-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.car-life-card {
    background: #0E0E1099;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid #232327;
}
.car-life-image {
    overflow: hidden;
    background: #1a1a1a;
}
.car-life-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.car-life-img-placeholder {
    width: 100%;
    height: 100%;
    background: #1c1c1c;
}
.car-life-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.car-life-title {
     font-size: 16px;
    font-weight: 700;
    color: var(--clr-white);
    line-height: 140%;
}
.car-life-desc {
    font-size: 14px;
    color: #FFFFFFCC;
    line-height: 140%;
    margin: 0;
}

/* ── Career Development ── */
.car-growth-section { background: var(--clr-bg); }

/* ── Careers responsive ── */
@media (max-width: 1100px) {
    .car-4-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .car-life-grid { grid-template-columns: repeat(2, 1fr); }
    .car-hero-heading { max-width: 80% !important; }
    .car-hero-desc    { max-width: 70% !important; }
}
@media (max-width: 560px) {
    .car-4-grid    { grid-template-columns: 1fr; }
    .car-life-grid { grid-template-columns: 1fr; }
    .car-hero-heading { max-width: 100% !important; }
    .car-hero-desc    { max-width: 100% !important; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── Hero ── */
.con-hero {
    min-height: 75vh !important;
    align-items: center !important;
}
.con-hero-overlay {
    background: linear-gradient(to right,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.58) 45%,
        rgba(0,0,0,0.1) 100%
    );
}
.con-hero-heading {
   
    max-width: 60% !important;

}
.con-hero-tag {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    line-height: 1.5;
    max-width: 50%;
}

/* ── Contact Info + Form ── */
.con-contact-section { background: var(--clr-bg); }
.con-contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: start;
}

/* Left: Channels */
.con-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.con-channel {
    background: #0e0e0e;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.con-channel-label {
    font-size:11px;
    font-weight: 600;
    letter-spacing: 8%;
    text-transform: uppercase;
    color: var(--clr-white);
    font-family:var(--ff-google)
}
.con-channel-contact {
    font-size:13px;
    color: #FFFFFFCC;
    line-height: 100%;
    font-weight: 400;
}
.con-channel-contact a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.con-channel-contact a:hover { color: var(--clr-accent); }
.con-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-accent);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--ff);
    transition: opacity 0.2s;
    width: fit-content;
}
.con-copy-btn:hover { opacity: 0.75; }
.con-copy-btn.copied { color: #4caf50; }

/* Right: Form panel */
.con-form-panel {
    background: #0000004D;
    border-radius: 12px;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border: 1px solid #1E1E1E;
}

/* Native form (fallback + CF7 overrides) */
.con-form-row,
.wpcf7 .con-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.con-field,
.wpcf7 p { margin-bottom: 0; }
.con-field--full { grid-column: 1 / -1; }
.con-label,
.wpcf7 label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #737373;
    margin-bottom: 6px;
    font-family: var(--ff-google);
}
.con-label + br, .wpcf7 label + br {
    display: none;
}
.con-input,
.con-textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #A6640033;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-family: var(--ff);
    font-size: 0.9rem;
    color: var(--clr-white);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.con-input:focus,
.con-textarea:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: var(--clr-accent);
}
.con-input::placeholder,
.con-textarea::placeholder,
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { color: rgba(255,255,255,0.2); }
.con-textarea,
.wpcf7 textarea { resize: vertical; min-height: 130px; }

.con-consent,
.wpcf7 .con-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 11px;
    color: #737373;
    font-family: var(--ff-google);
    font-weight: 400;
    cursor: pointer;
}
.con-consent input[type="checkbox"],
.wpcf7 input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--clr-accent);
    margin-top: 2px;
}

.con-submit-btn,
.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--clr-accent);
    color: #fff;
    font-family: var(--ff-google);
    font-size: 13px;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 0px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
}
.con-submit-btn:hover,
.wpcf7 input[type="submit"]:hover { background: var(--clr-accent-d); }

.con-form-note,
.wpcf7 .wpcf7-response-output {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
}
.wpcf7 .wpcf7-response-output { border: none !important; padding: 0 !important; }

/* ── Map ── */
.con-map-section { background: var(--clr-bg); padding-top: 0; }
.con-map-heading {
    font-size:  clamp(36px, 5vw, 64px);
    font-weight: 100;
    color: var(--clr-white);
    line-height: 140%;
    margin-bottom: 2rem;
}
.con-map-wrap {
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}
.con-map-wrap iframe {
    width: 100%;
    height: clamp(320px, 45vh, 520px);
    border: none;
    display: block;
}
.con-map-placeholder {
    background: #111;
    border-radius: 10px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* ── Contact responsive ── */
@media (max-width: 860px) {
    .con-contact-grid { grid-template-columns: 1fr; }
    .con-hero-heading { max-width: 80% !important; }
    .con-hero-tag     { max-width: 80%; }
}
@media (max-width: 560px) {
    .con-form-row,
    .wpcf7 .con-form-row { grid-template-columns: 1fr; }
    .con-hero-heading { max-width: 100% !important; }
    .con-hero-tag     { max-width: 100%; }
}
.page-template-page-vertical  .vrt-cap-card{
    background: #000;
}
.page-template-page-electronics .cap-hero-heading, 
.page-template-page-airgapped .cap-hero-heading
{
    max-width: 70%;
}
.page-template-page-command-control .cap-hero-heading,
.page-template-page-cybersecurity .cap-hero-heading {
    max-width: 60%; 
}
/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* ── Hero (reuses .cap-hero) ── */
.about-hero { min-height: 100vh; }
.about-hero .cap-hero-heading {
    max-width: 60%;
}
/* .about-hero .cap-hero-inner { max-width: 100%; } */
.about-hero-heading { max-width: 60%; }
.about-hero-desc { max-width: 53%; color: rgba(255,255,255,0.9); }
.container-full-width {
    width: 100%;
}
/* ── Company Overview ── */
.about-overview {
    position: relative;
    overflow: hidden;
    background: var(--clr-bg);
}
.about-overview-media { position: absolute; inset: 0; z-index: 0; }
.about-overview-media-img {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
}
.about-overview-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.72) 55%, rgba(0,0,0,0.35) 100%);
}
.about-overview-inner { position: relative; z-index: 2; }
.about-overview-heading {
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}
.about-overview-body {
    max-width: 66%;
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.75;
}
.about-overview-body p { margin-bottom: 1.25rem; }
.about-overview-body p:last-child { margin-bottom: 0; }

.about-pullquote { margin-top: 2.25rem; max-width: 66%; }
.about-pullquote-label {
    display: inline-block;
    padding: 0.7rem 1.7rem;
    border: 1px solid var(--clr-border);
    border-radius: 40px;
    color: var(--clr-white);
    font-size: 15px;
    margin-bottom: 1rem;
    transition: border-color var(--transition), color var(--transition);
}
.about-pullquote-label:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.about-pullquote-text {
    font-style: italic;
    color: var(--clr-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ── Vision & Mission ── */
.about-vm { background: var(--clr-bg); }
.about-vm-heading {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 100;
    color: var(--clr-white);
    margin-bottom: 2rem;
}
.about-vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2vw, 1.75rem);
}
.about-vm-card {
    position: relative;
    padding: clamp(1.5rem, 2.5vw, 2.5rem);
    border: 1px solid var(--clr-border);
    border-radius: 14px;
    overflow: hidden;
    background: url('../images/Frame-vision.png') center no-repeat;
    background-size: cover;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.about-vm-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,152,0,0.35);
    box-shadow: 0 14px 34px rgba(0,0,0,0.3);
}
.about-vm-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.1rem; }
.about-vm-icon { display: inline-flex; color: var(--clr-white); }
.about-vm-title { font-size: 24px; font-weight: 700; color: var(--clr-white); }
.about-vm-subtitle { font-size: 20px; line-height: 1.35; color: var(--clr-white); margin-bottom: 0.9rem; }
.about-vm-desc { font-size: 15px; line-height: 1.6; color: var(--clr-muted); }

/* ── Transformation Story (slider) ── */
.about-story {
    position: relative;
    overflow: hidden;
    background: var(--clr-bg);
    padding-block: clamp(3rem, 4vw, 5rem);
}
.about-story-eyebrow {
    display: inline-block;
    color: var(--clr-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.about-story-slider { position: relative; }
.about-story-viewport { overflow: hidden; }
.about-story-track {
    display: flex;
    gap: 0px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    
    justify-content: center;
}
.about-story-card {
    position: relative;
    flex: 0 0 clamp(220px, 20vw, 288px);
    aspect-ratio: 288 / 490;
    overflow: hidden;
    background: var(--clr-bg-card);
}
.about-story-media,
.about-story-media img,
.about-story-media-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-story-media img { object-fit: cover; transition: transform 0.5s ease; }
.about-story-card:hover .about-story-media img { transform: scale(1.05); }
.about-story-media-placeholder {
    background: linear-gradient(160deg, #1c1c1c 0%, #101010 100%);
}
.about-story-card::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0) 100%);
}
.about-story-label {
    position: absolute;
    left: 1.25rem; bottom: 2.5rem; z-index: 2;
    max-width: 82%;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--clr-white);
    transition: color var(--transition);
}
/* Amber underline — animates in on active AND on hover */
.about-story-card::before {
    content: '';
    position: absolute; left: 0; bottom: 0; z-index: 3;
    width: 100%; height: 4px;
    background: var(--clr-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.about-story-card.is-active::before,
.about-story-card:hover::before { transform: scaleX(1); }
.about-story-card.is-active .about-story-label,
.about-story-card:hover .about-story-label { color: var(--clr-accent); }

.about-story-arrow {
    position: absolute; top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px; height: 48px;
    border-radius: 50%;
    display: none; place-items: center;
    background: rgba(0,0,0,0.55);
    border: 1px solid var(--clr-border);
    color: var(--clr-white);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}
/* Arrows are revealed by JS only when there are more slides than fit the base row */
.about-story.has-arrows .about-story-arrow { display: grid; }
.about-story-arrow:hover { background: var(--clr-accent); border-color: var(--clr-accent); color: #000; }
.about-story-arrow--prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.about-story-arrow--next { right: clamp(0.5rem, 2vw, 1.5rem); }
.about-story-arrow[disabled] { opacity: 0.3; cursor: default; pointer-events: none; }

.about-story-tabs {
    display: flex; flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 2.5rem);
    margin-top: 2rem;
}
.about-story-tab {
    background: none; border: none;
    padding: 0.25rem 0;
    font-family: inherit; font-size: 15px;
    color: var(--clr-muted);
    cursor: pointer;
    transition: color var(--transition);
}
.about-story-tab:hover { color: var(--clr-white); }
.about-story-tab.is-active { color: var(--clr-accent); font-weight: 600; }

.about-story-dots {
    display: flex; justify-content: center; gap: 0.5rem;
    margin-top: 1.25rem;
}
.about-story-dot {
    width: 9px; height: 9px; padding: 0;
    border: none; border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}
.about-story-dot.is-active { background: var(--clr-accent); transform: scale(1.15); }

/* ── About Us — responsive ── */
@media (max-width: 900px) {
    .about-hero-heading,
    .about-hero-desc { max-width: 100%; }
    .about-overview-body,
    .about-pullquote { max-width: 100%; }
    .about-vm-grid { grid-template-columns: 1fr; }
    .about-story-card { flex: 0 0 70vw; aspect-ratio: 3 / 4; }
}
@media (max-width: 560px) {
    .about-story-card { flex: 0 0 82vw; }
    .about-story-arrow { width: 40px; height: 40px; }
    .about-story-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    .about-story-tab { white-space: nowrap; }
}

/* ── Engineering Principal ── */
.about-principles { background: var(--clr-bg); }
.about-principles-heading {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 100;
    color: var(--clr-white);
    margin-bottom: 2.5rem;
}
.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(0.75rem, 1.2vw, 1rem);
}
.about-principle-card {
    padding: clamp(1.25rem, 1.6vw, 1.75rem);
    border: 1px solid rgba(255,152,0,0.45);
    border-radius: 12px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.about-principle-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-accent);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.about-principle-icon {
    display: inline-flex;
    color: var(--clr-white);
    margin-bottom: 1.1rem;
}
.about-principle-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 0.6rem;
}
.about-principle-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--clr-muted);
}
@media (max-width: 1100px) { .about-principles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .about-principles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .about-principles-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ANIMATED CARD BORDER — bordered cards only
   A soft amber light travels around the border on hover.
   (Applied to every card that already has a real border.)
   ============================================================ */
@property --ductus-bdr-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
@keyframes ductus-border-travel { to { --ductus-bdr-angle: 360deg; } }

.industry-card,
.vrt-cap-card,
.vrt-deploy-card,
.vrt-related-card,
.cc-deploy-card,
.od-grid-card,
.eco-phil-card,
.car-icon-card,
.car-life-card,
.about-vm-card,
.about-principle-card {
    position: relative;
}

.industry-card::after,
.vrt-cap-card::after,
.vrt-deploy-card::after,
.vrt-related-card::after,
.cc-deploy-card::after,
.od-grid-card::after,
.eco-phil-card::after,
.car-icon-card::after,
.car-life-card::after,
.about-vm-card::after,
.about-principle-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    padding: 1.5px;                 /* = animated border thickness */
    background: conic-gradient(from var(--ductus-bdr-angle),
        rgba(255,152,0,0)   0deg,
        rgba(255,152,0,0) 250deg,
        var(--clr-accent)  315deg,
        #ffd089           340deg,
        rgba(255,152,0,0) 360deg);
    /* Show only the 1.5px ring: subtract the inner content-box */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.industry-card:hover::after,
.vrt-cap-card:hover::after,
.vrt-deploy-card:hover::after,
.vrt-related-card:hover::after,
.cc-deploy-card:hover::after,
.od-grid-card:hover::after,
.eco-phil-card:hover::after,
.car-icon-card:hover::after,
.car-life-card:hover::after,
.about-vm-card:hover::after,
.about-principle-card:hover::after {
    opacity: 1;
    animation: ductus-border-travel 2.6s linear infinite;
}
.page-template-page-capabilities .cap-hero-heading, .page-template-page-vertical-php .cap-hero-heading{
    font-size: clamp(2.4rem, 3.6vw, 4.5rem);
}
/* .page-template-page-vertical-php .cap-hero-overlay {
    background: linear-gradient(to bottom, rgb(10 10 10 / 12%) 0%, rgb(10 10 10 / 32%) 100%);
} */
@media (max-width: 768px) {
    .elec-story .elec-ov-heading{
        width: 100%;
    }
    .page-template-page-electronics .cap-hero-heading, 
    .page-template-page-airgapped .cap-hero-heading,
    .page-template-page-command-control .cap-hero-heading, 
    .page-template-page-cybersecurity .cap-hero-heading {
    max-width: 100%;
}
.cap-fw-desc {
    max-width: 100%;
}
.cy-overview .elec-ov-heading{
        max-width: 100%;
}
.about-hero .cap-hero-heading {
    max-width: 100%;
}
.diff-track {
 overflow-x: scroll;
    animation: none;
    overflow-y: hidden;
    width: 100%;
}
.diff-marquee-outer{
 -webkit-mask-image: none;
        mask-image: none;   
}
.hero-aside {
    padding-top: 0rem;
}
.hero-inner {
    padding-top: 5rem;
}
a.btn-cta {
    margin: 15px 0px 15px 0px;
}
.hero-scroll{
    position: relative;
    bottom: -14px;
    left: unset;
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}
.about-section {
    height: 90vh;
}
.footer-contact-row {
    padding: 0;
}
}
.cap-hero.vrt-hero .cap-hero-overlay,
.cap-hero.airgap-hero .cap-hero-overlay,
.cap-hero.cc-hero .cap-hero-overlay,
.cap-hero.elec-hero .cap-hero-overlay { background: linear-gradient(270.09deg, rgba(0, 0, 0, 0.4) 22.2%, rgba(0, 0, 0, 0.7) 62.66%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(180deg, rgba(0, 0, 0, 0) 91.85%, #000000 100%); }


.cap-hero.vrt-hero .cap-hero-overlay:before,
.cap-hero.airgap-hero .cap-hero-overlay:before,
.cap-hero.cc-hero .cap-hero-overlay:before,
.cap-hero.elec-hero .cap-hero-overlay:before { content: ''; background: url('../images/effect1.png') no-repeat; background-size: auto; width: 100%; height: 100%; display: block; background-size: cover; }


.vrt-overview .vrt-ov-overlay,
.elec-overview .elec-ov-overlay { background: linear-gradient(90.37deg, rgba(0, 0, 0, 0.9) 12.08%, rgba(0, 0, 0, 0.5) 102.2%), linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 12.52%); }

.vrt-overview .vrt-ov-overlay:before,
.elec-overview .elec-ov-overlay:before { content: ''; background: url('../images/effect2.png') no-repeat; background-size: auto; width: 100%; height: 100%; display: block; background-size: cover;}

.defsvc-overview .vrt-cap-card {
        flex-direction: row;
}
section.vrt-overview.defsvc-overview {
    height: 100vh;
}
.vrt-cap-grid.defsvc-list-grid {
    margin-top: 25px;
}
section.vrt-overview.defsvc-overview h2.vrt-ov-heading {
    max-width: 60%;
}
.vrt-cap-grid.defsvc-list-grid .vrt-cap-card.vrt-cap-card--check {
    flex-direction: row;
}
.defsvc-media-section { position: relative; overflow: hidden; }
.defsvc-section-media, .defsvc-section-media-img { position: absolute; inset: 0; z-index: 0; }
.defsvc-section-media video, .defsvc-section-media-img { width: 100%; height: 100%; object-fit: cover; background-size: cover; background-position: center; }
.defsvc-section-overlay { position: absolute; inset: 0; z-index: 1;    background: linear-gradient(90.37deg, rgba(0, 0, 0, 0.9) 12.08%, rgba(0, 0, 0, 0.5) 102.2%), linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 12.52%); }
.defsvc-media-section .container { position: relative; z-index: 2; }