:root {
    --red: #b33831;
    --red-light: #dc554d;

    --dark: #07110f;
    --dark-2: #0a1715;
    --dark-3: #10211e;

    --cream: #f2f0e9;
    --cream-2: #e8e5dc;

    --white: #fff;
    --text: #111a18;
    --muted: #707673;

    --border: rgba(10, 25, 21, .13);
    --light-border: rgba(255, 255, 255, .11);

    --container: 1420px;
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hardware GPU Rendering Acceleration */
.hero, .hero-network, .tilt-card, .footer-circle, .contact-circle, .reveal, .reveal-left, .loader {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
}

section[id],
[id] {
    scroll-margin-top: 90px;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
    position: relative;
}

main {
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

body.loading,
body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: 0;
    outline: 0;
    background: none;
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 80px));
    margin-inline: auto;
}

.section {
    padding: 140px 0;
}

.dark-section {
    background: var(--dark);
    color: white;
}


/* ================= LOADER ================= */

.loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: grid;
    place-items: center;

    background: #050c0b;
    color: white;

    transition:
        transform 1s cubic-bezier(.76, 0, .24, 1),
        visibility 1s;
}

.loader.hide {
    transform: translateY(-101%);
    visibility: hidden;
}

.loader-wrap {
    width: min(900px, calc(100% - 50px));
}

.loader-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.loader-tagline {
    display: flex;
    flex-direction: column;
    padding-left: 24px;
    border-left: 2px solid rgba(255, 255, 255, 0.25);
}

.loader-tagline h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.4rem, 3.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.loader-tagline h2 span {
    color: var(--red-light);
}

.loader-tagline p {
    margin-top: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(0.55rem, 0.9vw, 0.72rem);
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
}

.brand-symbol {
    position: relative;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23b33831'%3E%3Cpath d='M 12 32 C 18 14, 42 6, 68 12 C 82 15, 88 24, 88 32 C 74 40, 50 26, 28 34 C 20 37, 14 35, 12 32 Z'/%3E%3Cpath d='M 2 54 C 2 44, 22 40, 54 46 C 80 51, 98 46, 98 54 C 98 66, 78 74, 46 68 C 22 63, 2 60, 2 54 Z'/%3E%3Cpath d='M 14 74 C 34 68, 64 74, 86 74 C 78 92, 48 96, 26 92 C 18 88, 14 80, 14 74 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 0;
    overflow: visible;
}

.brand-symbol span {
    display: none !important;
}

.loader-meta {
    margin-top: 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: .55rem;
    letter-spacing: .2em;

    color: rgba(255,255,255,.45);
}

.loader-meta strong {
    color: white;
    font-size: .75rem;
}

.loader-track {
    height: 1px;
    margin-top: 15px;

    overflow: hidden;

    background: rgba(255,255,255,.15);
}

.loader-track span {
    display: block;
    width: 0;
    height: 100%;
    background: white;
}


/* ================= HEADER ================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;

    color: white;

    opacity: 0;
    transform: translateY(-20px);

    transition:
        opacity .8s ease,
        transform .8s ease,
        background .4s ease,
        backdrop-filter .4s ease,
        -webkit-backdrop-filter .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

body.loaded .header {
    opacity: 1;
    transform: translateY(0);
}

.header.scrolled {
    background: rgba(7, 17, 15, 0.92);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    width: min(var(--container), calc(100% - 80px));
    height: 100px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid var(--light-border);
    transition: height .35s ease, border-color .4s ease;
}

.header.scrolled .header-inner {
    height: 74px;
}

.logo {
    width: max-content;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: height .35s ease, padding .35s ease;
}

.header.scrolled .site-logo {
    height: 40px;
    padding: 4px 10px;
}

.loader-logo {
    height: 68px;
    max-width: 300px;
    padding: 8px 18px;
    border-radius: 12px;
}

.footer-logo-img {
    height: 48px;
    padding: 6px 14px;
    border-radius: 10px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 40px);
}

.nav a {
    position: relative;
    padding: 40px 0;

    font-size: clamp(.68rem, .75vw, .75rem);
    letter-spacing: .02em;

    color: rgba(255,255,255,.65);

    transition: color .3s ease, padding .35s ease;
    white-space: nowrap;
}

.header.scrolled .nav a {
    padding: 26px 0;
}

.nav a:hover,
.nav a.active {
    color: white;
}

.nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 26px;

    width: 0;
    height: 2px;

    background: var(--red-light);

    transition: width .35s ease, bottom .35s ease;
}

.header.scrolled .nav a::after {
    bottom: 14px;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* ================= NAV DROPDOWN ================= */

.nav-item.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    
    min-width: 320px;
    padding: 12px 8px;
    
    display: flex;
    flex-direction: column;
    gap: 2px;
    
    background: rgba(11, 25, 22, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
        
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
    z-index: 1000;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    padding: 10px 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    border-radius: 10px;
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    white-space: normal !important;
    line-height: 1.35;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease !important;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a i {
    font-size: 0.95rem;
    color: var(--red-light);
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.25s ease;
}

.dropdown-menu a:hover {
    background: rgba(179, 56, 49, 0.22) !important;
    color: #ffffff !important;
    transform: translateX(4px);
}

.dropdown-menu a:hover i {
    color: #ffffff;
    transform: scale(1.15);
}

/* ================= MOBILE SUB SERVICES ================= */

.mobile-services-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--light-border);
}

.mobile-services-item > a {
    border-bottom: 0 !important;
}

.mobile-sub-services {
    display: flex;
    flex-direction: column;
    padding-left: 45px;
    padding-bottom: 15px;
    gap: 6px;
}

.mobile-sub-services a {
    min-height: auto !important;
    padding: 6px 0 !important;
    border: 0 !important;
    font-size: 0.88rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.mobile-sub-services a span {
    font-size: 0.55rem;
    color: var(--red-light);
    font-family: "DM Sans", sans-serif;
}

.mobile-sub-services a:hover {
    color: white !important;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: .72rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-contact span {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;

    transition: .35s ease;
}

.header-contact:hover span {
    background: white;
    color: #111;
    transform: rotate(45deg);
}


/* ================= MOBILE MENU ================= */

.menu-btn {
    display: none;

    position: relative;
    z-index: 1200;

    width: 45px;
    height: 45px;

    cursor: pointer;
}

.menu-btn span {
    position: absolute;
    left: 8px;

    width: 28px;
    height: 1px;

    background: white;

    transition: .4s ease;
}

.menu-btn span:first-child {
    top: 18px;
}

.menu-btn span:last-child {
    top: 27px;
}

.menu-btn.active span:first-child {
    top: 22px;
    transform: rotate(45deg);
}

.menu-btn.active span:last-child {
    top: 22px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 900;

    display: none;
    flex-direction: column;
    justify-content: space-between;

    padding: 115px 25px 30px;

    background: var(--dark);
    color: white;

    transform: translateY(-101%);

    transition: transform .75s cubic-bezier(.76,0,.24,1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-links {
    display: flex;
    flex-direction: column;
}

.mobile-links a {
    min-height: 75px;

    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;

    border-bottom: 1px solid var(--light-border);

    font-family: "Manrope";
    font-size: clamp(1.8rem, 9vw, 3.5rem);
    letter-spacing: -.05em;
}

.mobile-links small {
    font-family: "DM Sans";
    font-size: .5rem;
    color: rgba(255,255,255,.3);
}

.mobile-bottom {
    display: flex;
    justify-content: space-between;

    font-size: .5rem;
    letter-spacing: .18em;
    color: rgba(255,255,255,.35);
}


/* ================= HERO ================= */

.hero {
    position: relative;

    min-height: 780px;
    height: 100svh;
    max-height: 1000px;

    overflow: hidden;

    color: white;

    background:
        radial-gradient(circle at 80% 45%, #173b36 0%, #0b1c19 28%, #07110f 62%);
}

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);

    background-size: 150px 150px;

    mask-image: linear-gradient(90deg, black, rgba(0,0,0,.2));
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.orb-one {
    width: 600px;
    height: 600px;
    top: -350px;
    right: -100px;
    background: rgba(179,56,49,.15);
}

.orb-two {
    width: 500px;
    height: 500px;
    bottom: -300px;
    left: 30%;
    background: rgba(42,119,108,.13);
}


/* Hero network */

.hero-network {
    position: absolute;
    top: 50%;
    right: -90px;

    width: 580px;
    height: 580px;

    transform: translateY(-50%);

    opacity: .58;

    transition: transform .2s ease-out;
}

.network-circle {
    position: absolute;
    top: 50%;
    left: 50%;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;

    transform: translate(-50%,-50%);
}

.network-circle.c1 {
    width: 100%;
    height: 100%;
    animation: spin 35s linear infinite;
}

.network-circle.c2 {
    width: 72%;
    height: 72%;
    border-style: dashed;
    animation: reverseSpin 25s linear infinite;
}

.network-circle.c3 {
    width: 43%;
    height: 43%;
}

.network-core {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 120px;
    height: 120px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(179,56,49,.7);

    transform: translate(-50%,-50%);

    box-shadow: 0 0 0 30px rgba(179,56,49,.06);

    font-size: 34px;
}

.node,
.map-dot,
.who-node {
    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--red-light);

    box-shadow: 0 0 0 8px rgba(220,85,77,.08);
}

.n1 { top: 8%; left: 32%; }
.n2 { right: 1%; top: 47%; }
.n3 { left: 25%; bottom: 10%; }
.n4 { left: 4%; top: 40%; }

@keyframes spin {
    to {
        transform: translate(-50%,-50%) rotate(360deg);
    }
}

@keyframes reverseSpin {
    to {
        transform: translate(-50%,-50%) rotate(-360deg);
    }
}


/* Hero content */

.hero-container {
    position: relative;
    z-index: 10;

    width: min(var(--container), calc(100% - 80px));
    height: 100%;

    margin: auto;
    padding: 135px 0 80px;

    display: flex;
    flex-direction: column;
}

.hero-kicker {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-kicker > div {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: .58rem;
    letter-spacing: .2em;
    color: rgba(255,255,255,.58);
}

.hero-kicker > div > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: var(--red-light);

    box-shadow: 0 0 0 5px rgba(220,85,77,.1);
}

.hero-kicker p {
    font-size: .52rem;
    letter-spacing: .15em;
    color: rgba(255,255,255,.32);
}

.hero-layout {
    flex: 1;

    display: grid;
    grid-template-columns: minmax(0,1fr) 330px;
    align-items: center;
    gap: 80px;
}

.hero-content h1 {
    font-family: "Manrope";
    font-size: clamp(3.8rem, 6.4vw, 7rem);
    font-weight: 500;
    line-height: .9;
    letter-spacing: -.075em;
}

.title-mask {
    display: block;
    overflow: hidden;
    padding-bottom: .05em;
}

.title-mask > span {
    display: block;
    transform: translateY(115%);

    transition: transform 1.1s cubic-bezier(.16,1,.3,1);
}

body.loaded .title-mask:nth-child(1) > span {
    transform: translateY(0);
    transition-delay: .12s;
}

body.loaded .title-mask:nth-child(2) > span {
    transform: translateY(0);
    transition-delay: .24s;
}

body.loaded .title-mask:nth-child(3) > span {
    transform: translateY(0);
    transition-delay: .36s;
}

.title-mask.faded {
    color: rgba(255,255,255,.24);
}

.hero-copy {
    max-width: 720px;
    margin-top: 50px;

    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
}

.hero-copy > span {
    padding-top: 5px;
    font-size: .5rem;
    color: rgba(255,255,255,.3);
}

.hero-copy p {
    max-width: 600px;
    font-size: .98rem;
    line-height: 1.75;
    color: rgba(255,255,255,.58);
}

.hero-copy strong {
    color: white;
    font-weight: 500;
}

.hero-actions {
    margin-top: 28px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.primary-btn {
    min-height: 54px;
    padding: 0 8px 0 20px;

    display: inline-flex;
    align-items: center;
    gap: 25px;

    background: var(--red);

    font-size: .7rem;

    transition: .35s ease;
}

.primary-btn > span {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    background: rgba(255,255,255,.12);

    transition: .35s ease;
}

.primary-btn:hover {
    transform: translateY(-5px);
    background: #912a25;
}

.primary-btn:hover span {
    transform: rotate(45deg);
}

.text-btn {
    display: flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 5px;

    border-bottom: 1px solid rgba(255,255,255,.35);

    font-size: .7rem;
    color: rgba(255,255,255,.75);
}


/* capabilities */

.hero-capabilities {
    padding: 23px;

    background: rgba(5,15,13,.58);

    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(15px);
}

.cap-head {
    padding-bottom: 17px;

    display: flex;
    justify-content: space-between;

    font-size: .48rem;
    letter-spacing: .15em;
    color: rgba(255,255,255,.35);
}

.hero-capabilities a {
    min-height: 50px;

    display: grid;
    grid-template-columns: 28px 1fr 20px;
    align-items: center;

    border-top: 1px solid rgba(255,255,255,.09);

    font-size: .68rem;
    color: rgba(255,255,255,.6);

    transition: .3s ease;
}

.hero-capabilities small {
    color: var(--red-light);
    font-size: .46rem;
}

.hero-capabilities a > i {
    opacity: 0;
    transform: translate(-6px,6px);
    transition: .3s ease;
}

.hero-capabilities a:hover {
    padding-left: 5px;
    color: white;
}

.hero-capabilities a:hover > i {
    opacity: 1;
    transform: translate(0);
}

.hero-bottom {
    min-height: 65px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-top: 1px solid rgba(255,255,255,.1);

    font-size: .48rem;
    letter-spacing: .15em;
    color: rgba(255,255,255,.35);
}

.hero-bottom > a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.scroll-track {
    width: 45px;
    height: 1px;

    overflow: hidden;
    background: rgba(255,255,255,.15);
}

.scroll-track > span {
    display: block;
    width: 40%;
    height: 100%;
    background: white;
    animation: scrolling 2s infinite;
}

@keyframes scrolling {
    from { transform: translateX(-120%); }
    to { transform: translateX(350%); }
}


/* ================= COMMON ================= */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .2em;

    color: var(--red);
}

.eyebrow > span {
    width: 35px;
    height: 1px;
    background: currentColor;
}

.eyebrow.light {
    color: var(--red-light);
}

.section-title {
    margin-top: 22px;

    font-family: "Manrope";
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 500;

    line-height: .95;
    letter-spacing: -.065em;
}

.section-title > span {
    display: block;
    color: #9b9b96;
}

.light-title {
    color: white;
}

.light-title > span {
    color: rgba(255,255,255,.25);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr .55fr;
    align-items: end;
    gap: 80px;

    margin-bottom: 80px;
}

.heading-copy {
    max-width: 500px;

    font-size: .83rem;
    line-height: 1.8;

    color: rgba(255,255,255,.45);
}

.heading-copy.dark-copy {
    color: var(--muted);
}


/* ================= ABOUT ================= */

.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(400px,.85fr) minmax(500px,1fr);
    align-items: center;
    gap: 120px;
}

.about-art {
    position: relative;
    min-height: 650px;
}

.art-card {
    position: absolute;
    top: 0;
    left: 0;

    width: 78%;
    height: 540px;

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    color: white;

    background:
        radial-gradient(circle at center, #19423c, #0a1816 70%);
}

.art-label {
    font-size: .5rem;
    letter-spacing: .16em;
    color: rgba(255,255,255,.4);
}

.art-rings {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 350px;
    height: 350px;

    transform: translate(-50%,-50%);
}

.art-rings > span {
    position: absolute;
    top: 50%;
    left: 50%;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;

    transform: translate(-50%,-50%);
}

.art-rings > span:nth-child(1) {
    width: 100%;
    height: 100%;
    animation: spin 25s linear infinite;
}

.art-rings > span:nth-child(2) {
    width: 70%;
    height: 70%;
    border-style: dashed;
    animation: reverseSpin 18s linear infinite;
}

.art-rings > span:nth-child(3) {
    width: 42%;
    height: 42%;
}

.art-rings > div {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 105px;
    height: 105px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--red);

    transform: translate(-50%,-50%);

    font-size: 30px;
}

.art-footer {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;

    font-size: .5rem;
    letter-spacing: .15em;
}

.floating-card {
    position: absolute;
    right: 0;
    bottom: 0;

    z-index: 5;

    width: 52%;
    height: 250px;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: var(--red);
    color: white;

    box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

.floating-card > i {
    font-size: 35px;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-family: "Manrope";
    font-size: 2rem;
    font-weight: 500;
}

.floating-card span {
    margin-top: 5px;
    font-size: .58rem;
    color: rgba(255,255,255,.65);
}

.large-copy {
    max-width: 680px;
    margin-top: 32px;

    font-size: .95rem;
    line-height: 1.85;

    color: var(--muted);
}

.large-copy strong {
    color: var(--text);
}

.feature-list {
    margin-top: 40px;
    border-top: 1px solid var(--border);
}

.feature {
    min-height: 115px;

    display: grid;
    grid-template-columns: 35px 55px 1fr;
    align-items: center;
    gap: 18px;

    border-bottom: 1px solid var(--border);

    transition: padding-left .35s ease;
}

.feature:hover {
    padding-left: 10px;
}

.feature > small {
    color: #999;
    font-size: .48rem;
}

.round-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    transition: .35s ease;
}

.feature:hover .round-icon {
    background: var(--red);
    border-color: var(--red);
    color: white;

    transform: rotate(-10deg);
}

.feature h3 {
    font-family: "Manrope";
    font-size: .95rem;
}

.feature p {
    max-width: 500px;
    margin-top: 5px;

    font-size: .72rem;
    line-height: 1.6;

    color: var(--muted);
}


/* ================= SERVICES ================= */

.services {
    background: #07110f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    border-top: 1px solid var(--light-border);
    border-left: 1px solid var(--light-border);

    perspective: 1200px;
}

.service-card {
    position: relative;

    min-height: 390px;
    padding: 30px;

    overflow: hidden;

    border-right: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);

    transform-style: preserve-3d;

    transition:
        transform .2s ease,
        background .45s ease;
}

.service-card::before {
    content: "";

    position: absolute;
    inset: auto 0 0;

    height: 0;

    background: var(--red);

    transition: height .55s cubic-bezier(.16,1,.3,1);
}

.service-card:hover::before {
    height: 100%;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-head {
    display: flex;
    justify-content: space-between;
}

.service-head small {
    color: rgba(255,255,255,.3);
    font-size: .5rem;
}

.service-head i {
    font-size: 28px;
    color: var(--red-light);
}

.service-card:hover .service-head i {
    color: white;
}

.service-card h3 {
    margin-top: 80px;

    font-family: "Manrope";
    font-size: clamp(1.6rem, 2.2vw, 2.35rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.service-card p {
    max-width: 300px;
    margin-top: 20px;

    font-size: .73rem;
    line-height: 1.65;

    color: rgba(255,255,255,.45);
}

.service-link {
    position: absolute;
    left: 30px;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: .63rem;
    color: rgba(255,255,255,.7);
}


/* ================= IMPACT ================= */

.impact {
    position: relative;
    overflow: hidden;
    background: #0b1916;
}

.impact-word {
    position: absolute;
    top: -70px;
    right: -30px;

    font-family: "Manrope";
    font-size: clamp(10rem, 22vw, 24rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.1em;

    color: rgba(255,255,255,.018);

    pointer-events: none;
}

.stats-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(5,1fr);

    border-top: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
}

.stat-card {
    position: relative;
    min-height: 330px;

    padding: 25px;

    overflow: hidden;

    border-left: 1px solid var(--light-border);

    transition: transform .4s ease;
}

.stat-card:last-child {
    border-right: 1px solid var(--light-border);
}

.stat-card::before {
    content: "";

    position: absolute;
    inset: auto 0 0;

    height: 0;

    background: var(--red);

    transition: height .55s cubic-bezier(.16,1,.3,1);
}

.stat-card:hover::before {
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card > * {
    position: relative;
    z-index: 2;
}

.stat-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-head small {
    color: rgba(255,255,255,.3);
    font-size: .48rem;
}

.stat-head span {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;

    transition: .35s ease;
}

.stat-card:hover .stat-head span {
    background: white;
    color: #111;
    transform: rotate(-10deg);
}

.stat-number {
    margin-top: 70px;

    display: flex;

    font-family: "Manrope";
    font-size: clamp(3rem, 4vw, 5rem);
    line-height: 1;
    letter-spacing: -.07em;
}

.stat-number strong {
    font-weight: 500;
}

.stat-number sup {
    margin: 5px 0 0 5px;
    font-size: 1.2rem;
    color: var(--red-light);
}

.stat-card p {
    max-width: 180px;
    margin-top: 20px;

    font-size: .7rem;
    line-height: 1.5;

    color: rgba(255,255,255,.5);
}

.stat-card:hover p {
    color: white;
}


/* ================= NETWORK ================= */

.network-section {
    background: var(--cream);
}

.network-layout {
    display: grid;
    grid-template-columns: .9fr 1fr;
    align-items: center;
    gap: 110px;
}

.network-visual {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.map-badges-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    width: 100%;
    z-index: 10;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

/* ================= INDIA MAP SVG & MARKERS ================= */

.india-map-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.india-map-svg {
    width: 100%;
    height: 100%;
    max-width: 560px;
    max-height: 620px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.network-visual:hover .india-map-svg {
    transform: scale(1.03);
}

.india-shape-group path {
    fill: rgba(179, 56, 49, 0.08);
    stroke: var(--red);
    stroke-width: 1.5px;
    stroke-linejoin: round;
    stroke-linecap: round;
    transition: fill 0.4s ease, stroke 0.4s ease;
}

.network-visual:hover .india-shape-group path {
    fill: rgba(179, 56, 49, 0.15);
    stroke: var(--red-light);
}

.map-marker {
    cursor: pointer;
    pointer-events: auto;
}

.marker-dot {
    fill: var(--red);
    transition: transform 0.3s ease, fill 0.3s ease;
    transform-box: fill-box;
    transform-origin: center;
}

.marker-pulse {
    fill: rgba(179, 56, 49, 0.35);
    animation: mapPulse 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    transform-box: fill-box;
    transform-origin: center;
}

.ut-dot {
    fill: #d97706; /* Distinct Golden Amber for Union Territories */
    transition: transform 0.3s ease;
    transform-box: fill-box;
    transform-origin: center;
}

.ut-pulse {
    fill: rgba(217, 119, 6, 0.4);
    animation: mapPulse 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    transform-box: fill-box;
    transform-origin: center;
}

.map-marker:hover .marker-dot,
.map-marker:hover .ut-dot {
    transform: scale(1.8);
}

@keyframes mapPulse {
    0% {
        r: 3px;
        opacity: 0.95;
    }
    100% {
        r: 16px;
        opacity: 0;
    }
}

.map-ring {
    position: absolute;
    top: 50%;
    left: 50%;

    border: 1px solid rgba(10,25,21,.13);
    border-radius: 50%;

    transform: translate(-50%,-50%);
}

.map-ring.ring1 {
    width: 500px;
    height: 500px;
    animation: spin 30s linear infinite;
}

.map-ring.ring2 {
    width: 370px;
    height: 370px;
    border-style: dashed;
    animation: reverseSpin 22s linear infinite;
}

.map-ring.ring3 {
    width: 230px;
    height: 230px;
}

.map-core {
    position: relative;
    z-index: 5;

    width: 145px;
    height: 145px;

    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;

    border-radius: 50%;

    background: var(--dark);
    color: white;

    box-shadow:
        0 0 0 20px rgba(7,17,15,.04),
        0 30px 60px rgba(0,0,0,.12);
}

.map-core i {
    font-size: 30px;
    color: var(--red-light);
}

.map-core small {
    font-size: .48rem;
    letter-spacing: .2em;
}

.map-dot.d1 { top: 10%; left: 32%; }
.map-dot.d2 { right: 4%; top: 45%; }
.map-dot.d3 { bottom: 12%; left: 25%; }
.map-dot.d4 { top: 33%; left: 7%; }

.map-info {
    position: relative;
    z-index: 10;

    flex: 1;
    max-width: 230px;
    min-width: 170px;
    padding: 16px 20px;

    display: flex;
    align-items: center;
    gap: 16px;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;

    box-shadow: 
        0 12px 32px rgba(179, 56, 49, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.map-info:hover {
    box-shadow: 
        0 16px 40px rgba(179, 56, 49, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.map-info > i {
    font-size: 24px;
    color: var(--red);
    background: linear-gradient(135deg, rgba(179, 56, 49, 0.1), rgba(179, 56, 49, 0.02));
    padding: 14px;
    border-radius: 14px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.map-info > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.map-info strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--dark);
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.map-info small {
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--red-light);
    text-transform: uppercase;
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

.floating.delay {
    animation-delay: 1.2s;
}

@keyframes floating {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.network-intro {
    padding-bottom: 40px;

    font-size: .95rem;
    line-height: 1.85;

    color: var(--muted);

    border-bottom: 1px solid var(--border);
}

.network-intro strong {
    color: var(--text);
    font-weight: 500;
}

.network-item {
    min-height: 120px;

    display: grid;
    grid-template-columns: 35px 55px 1fr;
    align-items: center;
    gap: 18px;

    border-bottom: 1px solid var(--border);

    transition: padding-left .35s ease;
}

.network-item:hover {
    padding-left: 10px;
}

.network-item > small {
    font-size: .48rem;
    color: #999;
}

.network-item > span {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    transition: .35s ease;
}

.network-item:hover > span {
    background: var(--red);
    border-color: var(--red);
    color: white;

    transform: rotate(-10deg);
}

.network-item h3 {
    font-family: "Manrope";
    font-size: .95rem;
}

.network-item p {
    margin-top: 5px;
    font-size: .72rem;
    line-height: 1.6;
    color: var(--muted);
}


/* ================= STRENGTHS ================= */

.strength-section {
    position: relative;
    padding: 150px 0;

    overflow: hidden;

    background:
        radial-gradient(circle at 20% 50%, #173d37 0, #0a1a17 32%, #07110f 70%);

    color: white;
}

.strength-lines {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);

    background-size: 150px 100%;
}

.strength-lines::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(115deg,
            transparent 35%,
            rgba(255,255,255,.03) 35.1%,
            rgba(255,255,255,.03) 35.4%,
            transparent 35.5%,
            transparent 60%,
            rgba(255,255,255,.03) 60.1%,
            rgba(255,255,255,.03) 60.4%,
            transparent 60.5%
        );
}

.strength-glow {
    position: absolute;
    left: -250px;
    top: 50%;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background: rgba(179,56,49,.11);

    filter: blur(40px);

    transform: translateY(-50%);
}

.strength-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 130px;
}

.strength-heading {
    position: sticky;
    top: 120px;

    align-self: start;
}

.strength-title {
    margin-top: 25px;

    font-family: "Manrope";
    font-size: clamp(3.4rem, 5.8vw, 6.2rem);
    font-weight: 500;

    line-height: .92;
    letter-spacing: -.07em;
}

.strength-title span {
    display: block;
    color: rgba(255,255,255,.25);
}

.strength-heading > p {
    max-width: 500px;
    margin-top: 35px;

    font-size: .88rem;
    line-height: 1.8;

    color: rgba(255,255,255,.48);
}

.strength-decoration {
    margin-top: 70px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;

    color: rgba(255,255,255,.35);
}

.strength-decoration span {
    font-family: "Manrope";
    font-size: 2rem;
    color: var(--red-light);
}

.strength-decoration div {
    height: 1px;
    background: rgba(255,255,255,.15);
}

.strength-decoration small {
    font-size: .48rem;
    letter-spacing: .18em;
}

.strength-list {
    border-top: 1px solid var(--light-border);
}

.strength-item {
    position: relative;

    min-height: 145px;

    display: grid;
    grid-template-columns: 50px 70px 1fr 50px;
    align-items: center;
    gap: 20px;

    overflow: hidden;

    border-bottom: 1px solid var(--light-border);
    color: inherit;
    text-decoration: none;
    cursor: pointer;

    transition:
        padding .4s ease,
        color .4s ease;
}

.strength-item::before {
    content: "";

    position: absolute;
    inset: 0;

    background: var(--red);

    transform: scaleY(0);
    transform-origin: bottom;

    transition: transform .5s cubic-bezier(.16,1,.3,1);
}

.strength-item:hover::before {
    transform: scaleY(1);
}

.strength-item:hover {
    padding-inline: 15px;
}

.strength-item > * {
    position: relative;
    z-index: 2;
}

.strength-number {
    font-size: .48rem;
    color: rgba(255,255,255,.3);
}

.strength-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;

    font-size: 20px;

    transition: .35s ease;
}

.strength-item:hover .strength-icon {
    background: white;
    color: #111;
    border-color: white;

    transform: rotate(-10deg);
}

.strength-item h3 {
    font-family: "Manrope";
    font-size: 1.2rem;
    font-weight: 500;
}

.strength-item p {
    max-width: 480px;
    margin-top: 7px;

    font-size: .7rem;
    line-height: 1.6;

    color: rgba(255,255,255,.45);
}

.strength-item:hover p {
    color: rgba(255,255,255,.8);
}

.strength-arrow {
    justify-self: end;

    font-size: 20px;

    opacity: .35;

    transition: .35s ease;
}

.strength-item:hover .strength-arrow {
    opacity: 1;
    transform: rotate(45deg);
}


/* ================= WHO WE ARE ================= */

.who-section {
    background: var(--cream);
}

.who-layout {
    display: grid;
    grid-template-columns: .9fr 1fr;
    align-items: center;
    gap: 120px;
}

.who-visual {
    position: relative;
    min-height: 620px;
}

.who-card {
    position: absolute;
    inset: 0 60px 60px 0;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    background: var(--dark);
    color: white;
}

.who-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);

    background-size: 90px 90px;
}

.who-top,
.who-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;

    font-size: .48rem;
    letter-spacing: .15em;

    color: rgba(255,255,255,.4);
}

.who-bottom {
    justify-content: flex-start;
    gap: 30px;
}

.who-symbol {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 380px;
    height: 380px;

    transform: translate(-50%,-50%);
}

.who-ring {
    position: absolute;
    top: 50%;
    left: 50%;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;

    transform: translate(-50%,-50%);
}

.who-ring.r1 {
    width: 100%;
    height: 100%;
    animation: spin 30s linear infinite;
}

.who-ring.r2 {
    width: 65%;
    height: 65%;
    border-style: dashed;
    animation: reverseSpin 20s linear infinite;
}

.who-core {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 125px;
    height: 125px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--red);

    transform: translate(-50%,-50%);

    font-size: 35px;

    box-shadow: 0 0 0 25px rgba(179,56,49,.06);
}

.wn1 { top: 8%; left: 45%; }
.wn2 { right: 3%; top: 53%; }
.wn3 { left: 12%; bottom: 18%; }

.who-floating {
    position: absolute;
    z-index: 5;

    right: 0;
    bottom: 0;

    width: 200px;
    height: 180px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: var(--red);
    color: white;

    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.who-floating i {
    font-size: 28px;
}

.who-floating span {
    font-size: .7rem;
    line-height: 1.4;
}

.who-floating strong {
    font-family: "Manrope";
    font-size: 1.6rem;
    font-weight: 500;
}

.who-main-copy {
    max-width: 650px;
    margin-top: 35px;

    font-size: 1rem;
    line-height: 1.85;

    color: var(--muted);
}

.who-main-copy strong {
    color: var(--text);
    font-weight: 500;
}

.who-secondary {
    max-width: 650px;
    margin-top: 20px;

    font-size: .78rem;
    line-height: 1.8;

    color: var(--muted);
}

.who-values {
    margin-top: 45px;

    border-top: 1px solid var(--border);
}

.who-value {
    min-height: 100px;

    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;

    border-bottom: 1px solid var(--border);

    transition: padding-left .35s ease;
}

.who-value:hover {
    padding-left: 10px;
}

.who-value > span {
    font-size: .48rem;
    color: var(--red);
}

.who-value h3 {
    font-family: "Manrope";
    font-size: .95rem;
}

.who-value p {
    margin-top: 5px;
    font-size: .7rem;
    color: var(--muted);
}


/* ================= INDUSTRIES ================= */

.industries {
    padding-top: 80px;
    background: var(--cream);
}

.industry-list {
    border-top: 1px solid var(--border);
}

.industry {
    position: relative;

    min-height: 115px;

    display: grid;
    grid-template-columns: 70px 75px 1fr 50px;
    align-items: center;

    overflow: hidden;

    border-bottom: 1px solid var(--border);

    transition:
        padding .4s ease,
        color .4s ease;
}

.industry::before {
    content: "";

    position: absolute;
    inset: 0;

    background: var(--dark);

    transform: scaleY(0);
    transform-origin: bottom;

    transition: transform .5s cubic-bezier(.16,1,.3,1);
}

.industry:hover::before {
    transform: scaleY(1);
}

.industry:hover {
    padding-inline: 20px;
    color: white;
}

.industry > * {
    position: relative;
    z-index: 2;
}

.industry > small {
    font-size: .48rem;
    color: #999;
}

.industry > span {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    transition: .35s ease;
}

.industry:hover > span {
    background: var(--red);
    border-color: var(--red);

    transform: rotate(-10deg);
}

.industry h3 {
    font-family: "Manrope";
    font-size: clamp(1.5rem,2.3vw,2.35rem);
    font-weight: 500;
    letter-spacing: -.04em;
}

.industry > i {
    justify-self: end;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    transform: rotate(45deg);

    transition: .35s ease;
}

.industry:hover > i {
    background: white;
    border-color: white;
    color: #111;

    transform: rotate(0);
}


/* ================= CONTACT ================= */

.contact-section {
    position: relative;

    padding: 130px 0 40px;

    overflow: hidden;

    background: var(--dark);
    color: white;
}

.contact-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);

    background-size: 120px 120px;
}

.contact-orb {
    position: absolute;
    right: -200px;
    top: -200px;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background: rgba(179,56,49,.1);

    filter: blur(30px);
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-kicker {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-kicker > span {
    font-size: .48rem;
    letter-spacing: .18em;
    color: rgba(255,255,255,.35);
}

.contact-content {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.contact-content h2 {
    max-width: 1050px;

    font-family: "Manrope";
    font-size: clamp(4rem, 8vw, 9rem);
    font-weight: 500;

    line-height: .88;
    letter-spacing: -.075em;
}

.contact-content h2 span {
    display: block;
    color: rgba(255,255,255,.24);
}

.contact-circle {
    width: 170px;
    height: 170px;
    flex: 0 0 170px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-radius: 50%;

    background: var(--red);

    transition: .4s ease;
}

.contact-circle:hover {
    transform: rotate(-10deg) scale(1.06);
    background: #922b26;
}

.contact-circle span {
    font-size: .7rem;
}

.contact-circle i {
    align-self: flex-end;
    font-size: 25px;
}

.back-top {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: .6rem;
}


/* ================= ANIMATIONS ================= */

.reveal {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.16,1,.3,1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.16,1,.3,1);
}

.reveal.show,
.reveal-left.show {
    opacity: 1;
    transform: translate(0);
}

.intro-reveal {
    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

body.loaded .intro-reveal {
    opacity: 1;
    transform: translateY(0);
}

.hero-kicker.intro-reveal {
    transition-delay: .4s;
}

.hero-copy.intro-reveal {
    transition-delay: .55s;
}

.hero-capabilities.intro-reveal {
    transition-delay: .65s;
}

.hero-bottom.intro-reveal {
    transition-delay: .75s;
}


/* ================= FOOTER ================= */

.footer {
    position: relative;
    overflow: hidden;
    padding-top: 110px;
    background: #050c0b;
    color: white;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 150px 150px;
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 2;
    width: min(var(--container), calc(100% - 80px));
    margin-inline: auto;
}

.footer-cta {
    min-height: 350px;
    display: grid;
    grid-template-columns: 1fr 170px;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--light-border);
}

.footer-kicker {
    margin-bottom: 25px;
    font-size: .5rem;
    letter-spacing: .2em;
    color: rgba(255,255,255,.35);
}

.footer-cta h2 {
    max-width: 1000px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 500;
    line-height: .92;
    letter-spacing: -.07em;
}

.footer-cta h2 span {
    display: block;
    color: rgba(255,255,255,.22);
}

.footer-circle {
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    font-size: .58rem;
    letter-spacing: .14em;
    transition: .45s cubic-bezier(.16,1,.3,1);
}

.footer-circle i {
    font-size: 24px;
    transition: .4s ease;
}

.footer-circle:hover {
    transform: rotate(-7deg) scale(1.05);
    background: #912a25;
}

.footer-circle:hover i {
    transform: rotate(45deg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .7fr 1fr 1fr;
    gap: clamp(40px, 5vw, 90px);
    padding: 80px 0;
}

.footer-logo {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 28px;
    color: white;
}

.footer-logo .brand-symbol {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
}

.footer-logo-copy {
    display: flex;
    flex-direction: column;
    padding-left: 14px;
    border-left: 1.5px solid rgba(255, 255, 255, 0.4);
}

.footer-logo-copy strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
    color: white;
    letter-spacing: -0.02em;
}

.footer-logo-copy small {
    margin-top: 4px;
    font-family: "DM Sans", sans-serif;
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .03em;
    color: rgba(255,255,255,.75);
    text-transform: none;
}

.footer-brand > p {
    max-width: 330px;
    font-size: .72rem;
    line-height: 1.8;
    color: rgba(255,255,255,.45);
}

.footer-column-title {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--light-border);
    font-size: .5rem;
    letter-spacing: .18em;
    color: rgba(255,255,255,.4);
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    min-height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.055);
    font-size: .65rem;
    color: rgba(255,255,255,.55);
    transition: .35s ease;
}

.footer-links a i {
    opacity: 0;
    transform: translate(-5px,5px);
    transition: .35s ease;
}

.footer-links a:hover {
    padding-left: 5px;
    color: white;
}

.footer-links a:hover i {
    opacity: 1;
    transform: translate(0);
}

.footer-contact-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.055);
}

.footer-contact-item small {
    display: block;
    margin-bottom: 7px;
    font-size: .42rem;
    letter-spacing: .16em;
    color: rgba(255,255,255,.25);
}

.footer-contact-item span {
    font-size: .65rem;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
}

.footer-word-wrap {
    overflow: hidden;
    border-top: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
}

.footer-word {
    padding: 25px 0 10px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(7rem, 17vw, 16rem);
    font-weight: 600;
    line-height: .78;
    letter-spacing: -.09em;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.14);
    transition: transform .3s ease-out;
}

.footer-bottom {
    min-height: 90px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    font-size: .45rem;
    letter-spacing: .13em;
    color: rgba(255,255,255,.3);
}

.footer-bottom p:last-child {
    text-align: right;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {

    .container,
    .header-inner,
    .hero-container {
        width: calc(100% - 60px);
    }

    .header-inner {
        width: calc(100% - 60px);
    }

    .nav {
        gap: clamp(10px, 1.4vw, 22px);
    }

    .nav a {
        font-size: .68rem;
    }

    .hero-layout {
        gap: 45px;
    }

    .about-grid,
    .who-layout {
        gap: 70px;
    }

    .stats-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .stat-card:nth-child(n+4) {
        border-top: 1px solid var(--light-border);
    }

    .strength-layout {
        gap: 70px;
    }

    .network-layout {
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


@media (max-width: 950px) {

    section[id],
    [id] {
        scroll-margin-top: 75px;
    }

    .section {
        padding: 100px 0;
    }

    .container,
    .header-inner,
    .hero-container,
    .footer-container {
        width: calc(100% - 40px);
    }

    .footer {
        padding-top: 75px;
    }

    .footer-cta {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 45px;
        padding-bottom: 70px;
    }

    .footer-cta h2 {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }

    .footer-circle {
        width: 130px;
        height: 130px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 65px 0;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-word {
        font-size: 27vw;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 25px 0;
    }

    .footer-bottom p:nth-child(2) {
        display: none;
    }

    .footer-bottom p:last-child {
        text-align: left;
    }

    .header-inner {
        height: 76px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header.scrolled .header-inner {
        height: 64px;
    }

    .nav,
    .header-contact {
        display: none !important;
    }

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 990;

        display: flex;
        flex-direction: column;
        justify-content: space-between;

        padding: 95px 25px 30px;

        background: var(--dark);
        color: white;

        transform: translateY(-101%);
        transition: transform .6s cubic-bezier(.76,0,.24,1);
        overflow-y: auto;
    }

    .hero {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        padding-bottom: 60px !important;
    }

    .hero-container {
        width: calc(100% - 40px) !important;
        min-height: auto !important;
        padding: 110px 0 30px !important;
    }

    .hero-layout {
        display: flex !important;
        flex-direction: column !important;
        margin-top: 40px !important;
        gap: 40px !important;
        width: 100% !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
    }

    .title-mask {
        display: block !important;
        overflow: visible !important;
        width: 100% !important;
    }

    .title-mask > span {
        display: block !important;
        width: 100% !important;
        word-break: break-word !important;
    }

    .hero-content h1 {
        font-size: clamp(1.6rem, 7.5vw, 2.5rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.03em !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .hero-copy {
        display: block !important;
        margin-top: 25px !important;
        width: 100% !important;
    }

    .hero-copy > span {
        display: none !important;
    }

    .hero-copy p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
    }

    .hero-capabilities {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 20px !important;
        box-sizing: border-box !important;
    }

    .hero-network {
        display: none !important;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .about-art {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stat-card:nth-child(n+3) {
        border-top: 1px solid var(--light-border);
    }

    .network-layout {
        grid-template-columns: 1fr; overflow: visible;
    }

    
    


    .strength-section {
        padding: 100px 0;
        overflow: hidden;
    }
    

    .strength-layout {
        grid-template-columns: 1fr;
    }

    .strength-heading {
        position: relative;
        top: 0;
    }

    .who-layout {
        grid-template-columns: 1fr;
        overflow: hidden;
    }

    .who-visual {
        order: 2;
        max-width: 100%;
        overflow: hidden;
    }

    .who-copy {
        order: 1;
    }

    .contact-content {
        min-height: 450px;
    }

    .contact-circle {
        width: 140px;
        height: 140px;
        flex-basis: 140px;
    }

    h1, h2, h3, .section-title, .strength-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}


@media (max-width: 620px) {

    .section {
        padding: 80px 0;
    }

    .container,
    .header-inner,
    .hero-container {
        width: calc(100% - 32px) !important;
    }

    .loader-brand h1 {
        font-size: 3.6rem;
    }

    .loader-brand {
        gap: 15px;
    }

    .loader-brand .brand-symbol {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .hero-container {
        padding-top: 100px !important;
        padding-bottom: 30px !important;
    }

    .hero-kicker > p {
        display: none;
    }

    .hero-layout {
        margin-top: 30px !important;
    }

    .title-mask {
        overflow: visible !important;
    }

    .hero-content h1 {
        font-size: clamp(1.35rem, 6.8vw, 2rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.02em !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .hero-copy {
        display: block !important;
        margin-top: 25px !important;
    }

    .hero-copy > span {
        display: none !important;
    }

    .hero-copy p {
        font-size: .85rem !important;
        max-width: 100% !important;
    }

    .hero-bottom {
        margin-top: 30px !important;
    }

    .hero-network {
        width: 350px;
        height: 350px;
        right: -180px;
        top: 60px;
        opacity: .35;
    }

    .hero-bottom > span {
        display: none;
    }

    .section-title {
        font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .about-art {
        min-height: 500px;
    }

    .art-card {
        width: 88%;
        height: 400px;
    }

    .art-rings {
        width: 260px;
        height: 260px;
    }

    .floating-card {
        width: 60%;
        height: 210px;
    }

    .feature {
        grid-template-columns: 50px 1fr;
        padding: 18px 0;
    }

    .feature > small {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 340px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: 250px;

        border-right: 1px solid var(--light-border);
        border-top: 1px solid var(--light-border);
    }

    .stat-card:first-child {
        border-top: 0;
    }

    .stat-number {
        margin-top: 45px;
        font-size: 4rem;
    }

    .network-visual {
        min-height: 420px;
    }

    .map-ring.ring1 {
        width: 350px;
        height: 350px;
    }

    .map-ring.ring2 {
        width: 260px;
        height: 260px;
    }

    .map-ring.ring3 {
        width: 170px;
        height: 170px;
    }

    .map-core {
        width: 110px;
        height: 110px;
    }

    .map-badges-container {
        gap: 10px;
    }

    .map-info {
        min-width: 140px;
        padding: 12px 14px;
        max-width: none;
    }

    .network-item {
        grid-template-columns: 50px 1fr;
        padding: 18px 0;
    }

    .network-item > small {
        display: none;
    }

    .strength-title {
        font-size: clamp(3rem, 13vw, 4.5rem);
    }

    .strength-decoration {
        margin-top: 45px;
    }

    .strength-item {
        min-height: 135px;

        grid-template-columns: 55px 1fr 30px;
        gap: 15px;
    }

    .strength-number {
        display: none;
    }

    .strength-icon {
        width: 48px;
        height: 48px;
    }

    .strength-item h3 {
        font-size: 1rem;
    }

    .strength-item p {
        font-size: .65rem;
    }

    .who-visual {
        min-height: 500px;
    }

    .who-card {
        inset: 0 35px 50px 0;
        padding: 20px;
    }

    .who-symbol {
        width: 280px;
        height: 280px;
    }

    .who-core {
        width: 100px;
        height: 100px;
    }

    .who-floating {
        width: 150px;
        height: 145px;
        padding: 20px;
    }

    
    


    .industry {
        min-height: 85px;
        grid-template-columns: 30px 45px 1fr 30px;
        gap: 10px;
        padding-inline: 10px;
        box-sizing: border-box;
        max-width: 100%;
        overflow: hidden;
    }

    .industry > span {
        width: 42px;
        height: 42px;
    }

    .industry h3 {
        font-size: 1.25rem;
    }

    .industry > i {
        width: 34px;
        height: 34px;
    }

    .contact-section {
        padding: 80px 0 30px;
    }

    .contact-kicker > span {
        display: none;
    }

    .contact-content {
        min-height: 480px;

        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .contact-content h2 {
        font-size: clamp(3.4rem, 15vw, 5.5rem);
    }

    .contact-circle {
        width: 130px;
        height: 130px;
        flex-basis: 130px;
    }
}


@media (max-width: 380px) {

    .title-mask {
        overflow: visible;
    }

    .hero-content h1 {
        font-size: clamp(1.15rem, 6vw, 1.5rem);
        letter-spacing: -0.02em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .strength-title {
        font-size: 2.8rem;
    }

    .map-ring.ring1 {
        width: 300px;
        height: 300px;
    }

    .map-ring.ring2 {
        width: 220px;
        height: 220px;
    }
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


/* ==================== OUR EXPERIENCE & REACH ==================== */

.reach-state-box {
    margin-top: 50px;
    padding: 35px 40px;
    background: rgba(10, 23, 21, 0.75);
    border: 1px solid var(--light-border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.reach-state-header {
    margin-bottom: 24px;
}

.state-badge-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: var(--red-light);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.reach-state-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.state-pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.state-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    cursor: default;
}

.state-pill i {
    color: var(--red-light);
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.state-pill:hover {
    background: rgba(220, 85, 77, 0.15);
    border-color: var(--red-light);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 85, 77, 0.25);
}

.state-pill:hover i {
    transform: scale(1.25);
}

@media (max-width: 768px) {
    .reach-state-box {
        padding: 25px 20px;
        margin-top: 35px;
    }
    .state-pill {
        font-size: 0.76rem;
        padding: 7px 14px;
    }
}

.reach-container {
    position: relative;
    z-index: 2;
}

.reach-title {
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 50px;
}

.reach-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.reach-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 35px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.reach-card:hover {
    border-color: var(--red-light);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 12px 35px rgba(220, 85, 77, 0.18);
}

.reach-number {
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: baseline;
}

.reach-number sup {
    color: var(--red-light);
    font-size: 0.7em;
    margin-left: 2px;
}

.reach-label {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(0.85rem, 1.1vw, 1.05rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
}

.reach-footer-text {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

@media (max-width: 1024px) {
    .reach-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .reach-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    .reach-card {
        padding: 25px 15px;
    }
}


/* ==================== CLIENTS & PARTNERS MARQUEE ==================== */

.clients-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.clients-marquee-container {
    margin-top: 60px;
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;

    /* Soft edge fade mask */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: marqueeScroll 28s linear infinite;
    will-change: transform;
}

.marquee-content.reverse {
    animation: marqueeScrollReverse 28s linear infinite;
}

.clients-marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes marqueeScrollReverse {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.client-logo-card {
    width: 290px;
    height: 140px;
    padding: 16px 24px;
    background: #ffffff;
    border: 1px solid rgba(10, 25, 21, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.client-logo-card img {
    width: 100%;
    height: 100%;
    max-width: 240px;
    max-height: 105px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.85);
    transition: all 0.4s ease;
}

.client-logo-card:hover {
    border-color: var(--red);
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 16px 40px rgba(179, 56, 49, 0.16);
    background: #ffffff;
}

.client-logo-card:hover img {
    filter: grayscale(0%) opacity(1);
}

@media (max-width: 768px) {
    .clients-section {
        padding: 80px 0;
    }
    .clients-marquee-container {
        margin-top: 40px;
        gap: 18px;
    }
    .client-logo-card {
        width: 210px;
        height: 105px;
        padding: 12px 18px;
    }
    .client-logo-card img {
        max-width: 170px;
        max-height: 80px;
    }
    .marquee-content {
        gap: 18px;
        animation-duration: 22s;
    }
    .marquee-content.reverse {
        animation-duration: 22s;
    }
}


/* ==================== SKILLING CORE SERVICES SECTION ==================== */

.skilling-services-section {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 30%, #0a1b18 0%, #050c0b 100%);
    position: relative;
    border-top: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
}

.skilling-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 22px;
}

.skilling-services-grid-bottom {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.skilling-services-grid-bottom .skilling-service-card {
    width: calc(33.333% - 8px);
    max-width: 380px;
}

.skilling-service-card {
    position: relative;
    background: linear-gradient(180deg, rgba(14, 30, 26, 0.85) 0%, rgba(6, 15, 13, 0.95) 100%);
    border: 1px solid var(--light-border);
    border-top: 2.5px solid var(--red-light);
    border-radius: 14px;
    padding: 28px 22px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.skilling-card-step {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.1em;
}

.skilling-service-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(180deg, rgba(20, 42, 37, 0.95) 0%, rgba(8, 18, 16, 0.98) 100%);
    border-color: rgba(220, 85, 77, 0.45);
    border-top-color: var(--red-light);
    box-shadow: 0 14px 35px rgba(220, 85, 77, 0.18);
}

.skilling-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(220, 85, 77, 0.1);
    border: 1px solid rgba(220, 85, 77, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.35s ease;
}

.skilling-icon-wrap i {
    font-size: 1.5rem;
    color: var(--red-light);
    transition: transform 0.35s ease;
}

.skilling-service-card:hover .skilling-icon-wrap {
    background: var(--red-light);
    border-color: var(--red-light);
    box-shadow: 0 0 20px rgba(220, 85, 77, 0.45);
}

.skilling-service-card:hover .skilling-icon-wrap i {
    color: #ffffff;
    transform: scale(1.1);
}

.skilling-card-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.02rem, 1.3vw, 1.18rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.skilling-card-text {
    font-family: "DM Sans", sans-serif;
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

.skilling-service-card:hover .skilling-card-text {
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 992px) {
    .skilling-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .skilling-services-grid-bottom {
        flex-direction: column;
        align-items: center;
    }
    .skilling-services-grid-bottom .skilling-service-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .skilling-services-grid {
        grid-template-columns: 1fr;
    }
    .skilling-service-card {
        padding: 24px 18px 20px;
    }
}


/* ==================== OUR APPROACH PROCESS TIMELINE ==================== */

.approach-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, #091715 0%, #040908 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
}

.approach-timeline-wrap {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.approach-progress-line {
    position: absolute;
    top: 38px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(220, 85, 77, 0.15) 0%, 
        rgba(220, 85, 77, 0.8) 50%, 
        rgba(220, 85, 77, 0.15) 100%);
    z-index: 1;
}

.approach-steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.approach-step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.approach-step-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 22px;
}

.step-num {
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--red-light);
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    background: #040908;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(220, 85, 77, 0.2);
}

.step-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #081513;
    border: 2px solid var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(220, 85, 77, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.step-icon-circle i {
    font-size: 1.45rem;
    color: #ffffff;
    transition: transform 0.4s ease;
}

.approach-step-card:hover .step-icon-circle {
    background: var(--red-light);
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(220, 85, 77, 0.6);
}

.approach-step-card:hover .step-icon-circle i {
    color: #ffffff;
    transform: rotate(6deg);
}

.approach-card-body {
    background: rgba(10, 23, 21, 0.75);
    border: 1px solid var(--light-border);
    border-top: 2px solid var(--red-light);
    border-radius: 14px;
    padding: 22px 14px 18px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.approach-step-card:hover .approach-card-body {
    border-color: rgba(220, 85, 77, 0.4);
    border-top-color: var(--red-light);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(220, 85, 77, 0.15);
}

.approach-step-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(0.92rem, 1.1vw, 1.05rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 8px;
}

.approach-step-desc {
    font-family: "DM Sans", sans-serif;
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 400;
}

@media (max-width: 1100px) {
    .approach-progress-line {
        display: none;
    }
    .approach-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .approach-steps-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .approach-card-body {
        padding: 20px 16px;
    }
}


/* ==================== SECTOR SOLUTIONS SECTION (FORTUNE 500 DESIGN) ==================== */

.sector-solutions-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 40%, #0d2520 0%, #040a08 100%);
    position: relative;
    border-top: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
}

.sector-grid-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.sector-grid-bottom {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.sector-grid-bottom .sector-card {
    width: calc(25% - 6px);
    min-width: 270px;
}

.sector-card {
    position: relative;
    background: linear-gradient(145deg, rgba(16, 36, 32, 0.9) 0%, rgba(7, 16, 14, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-top: 2.5px solid var(--red-light);
    border-radius: 16px;
    padding: 32px 22px 26px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.sector-pill-tag {
    font-family: "Manrope", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ff766d;
    letter-spacing: 0.12em;
    background: rgba(220, 85, 77, 0.12);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(220, 85, 77, 0.28);
    margin-bottom: 20px;
}

.sector-corner-ribbon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 36px 36px;
    border-color: transparent transparent var(--red) transparent;
    transition: all 0.35s ease;
    opacity: 0.9;
}

.sector-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, rgba(24, 52, 46, 0.98) 0%, rgba(10, 22, 19, 0.98) 100%);
    border-color: rgba(220, 85, 77, 0.55);
    border-top-color: #ff554c;
    box-shadow: 0 20px 45px rgba(179, 56, 49, 0.25);
}

.sector-card:hover .sector-corner-ribbon {
    border-color: transparent transparent #ff554c transparent;
    border-width: 0 0 46px 46px;
    opacity: 1;
    filter: drop-shadow(-2px -2px 10px rgba(255, 85, 76, 0.6));
}

.sector-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(220, 85, 77, 0.22) 0%, rgba(179, 56, 49, 0.06) 100%);
    border: 1px solid rgba(220, 85, 77, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(220, 85, 77, 0.15);
}

.sector-icon-wrap i {
    font-size: 1.6rem;
    color: #ff766d;
    transition: all 0.35s ease;
}

.sector-card:hover .sector-icon-wrap {
    background: var(--red-light);
    border-color: var(--red-light);
    box-shadow: 0 0 25px rgba(220, 85, 77, 0.6);
}

.sector-card:hover .sector-icon-wrap i {
    color: #ffffff !important;
    transform: scale(1.15) rotate(4deg);
}

.sector-card-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.08rem, 1.35vw, 1.25rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.sector-card-text {
    font-family: "DM Sans", sans-serif;
    font-size: 0.84rem;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 400;
}

.sector-card:hover .sector-card-text {
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1100px) {
    .sector-grid-top {
        grid-template-columns: repeat(2, 1fr);
    }
    .sector-grid-bottom {
        flex-wrap: wrap;
    }
    .sector-grid-bottom .sector-card {
        width: calc(50% - 12px);
    }
}

@media (max-width: 640px) {
    .sector-grid-top {
        grid-template-columns: 1fr;
    }
    .sector-grid-bottom .sector-card {
        width: 100%;
    }
    .sector-card {
        padding: 26px 20px 22px;
    }
}


/* ==================== ALTERNATING LIGHT/DARK THEME FOR SKILL DEVELOPMENT ==================== */

/* 1. LIGHT CORE OFFERINGS SECTION (5 CARDS) */
.skilling-services-section.skilling-light {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.skilling-light .eyebrow.light {
    color: var(--dark);
}

.skilling-light .eyebrow.light span {
    background: var(--red);
}

.skilling-light .section-title.light-title {
    color: var(--dark);
}

.skilling-light .section-title.light-title span {
    color: rgba(7, 17, 15, 0.45) !important;
}

.skilling-light .skilling-service-card {
    background: #ffffff;
    border: 1px solid rgba(10, 25, 21, 0.09);
    border-top: 3px solid var(--red);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.skilling-light .skilling-card-step {
    color: rgba(7, 17, 15, 0.4);
}

.skilling-light .skilling-icon-wrap {
    background: rgba(179, 56, 49, 0.08);
    border-color: rgba(179, 56, 49, 0.2);
}

.skilling-light .skilling-icon-wrap i {
    color: var(--red);
}

.skilling-light .skilling-service-card:hover .skilling-icon-wrap {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(179, 56, 49, 0.4);
}

.skilling-light .skilling-service-card:hover .skilling-icon-wrap i {
    color: #ffffff;
}

.skilling-light .skilling-card-title {
    color: var(--dark);
}

.skilling-light .skilling-card-text {
    color: rgba(7, 17, 15, 0.7);
}

.skilling-light .skilling-service-card:hover {
    border-color: rgba(179, 56, 49, 0.3);
    border-top-color: var(--red);
    box-shadow: 0 14px 35px rgba(179, 56, 49, 0.12);
}

/* 2. LIGHT APPROACH SECTION (6-STEP TIMELINE) */
.approach-section.approach-light {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.approach-light .eyebrow.light {
    color: var(--dark);
}

.approach-light .eyebrow.light span {
    background: var(--red);
}

.approach-light .section-title.light-title {
    color: var(--dark);
}

.approach-light .heading-copy {
    color: rgba(7, 17, 15, 0.72) !important;
}

.approach-light .approach-progress-line {
    background: linear-gradient(90deg, 
        rgba(179, 56, 49, 0.15) 0%, 
        rgba(179, 56, 49, 0.6) 50%, 
        rgba(179, 56, 49, 0.15) 100%);
}

.approach-light .step-num {
    background: var(--cream);
    color: var(--red);
    border-color: rgba(179, 56, 49, 0.25);
}

.approach-light .step-icon-circle {
    background: #ffffff;
    border-color: var(--red);
    box-shadow: 0 4px 15px rgba(179, 56, 49, 0.15);
}

.approach-light .step-icon-circle i {
    color: var(--red);
}

.approach-light .approach-step-card:hover .step-icon-circle {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 25px rgba(179, 56, 49, 0.4);
}

.approach-light .approach-step-card:hover .step-icon-circle i {
    color: #ffffff;
}

.approach-light .approach-card-body {
    background: #ffffff;
    border: 1px solid rgba(10, 25, 21, 0.08);
    border-top: 2.5px solid var(--red);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.approach-light .approach-step-title {
    color: var(--dark);
}

.approach-light .approach-step-desc {
    color: rgba(7, 17, 15, 0.68);
}

.approach-light .approach-step-card:hover .approach-card-body {
    border-color: rgba(179, 56, 49, 0.3);
    border-top-color: var(--red);
    box-shadow: 0 12px 30px rgba(179, 56, 49, 0.12);
}

/* 3. LIGHT SECTOR SOLUTIONS SECTION (7 CARDS) */
.sector-solutions-section.sector-light {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.sector-light .eyebrow.light {
    color: var(--dark);
}

.sector-light .eyebrow.light span {
    background: var(--red);
}

.sector-light .section-title.light-title {
    color: var(--dark);
}

.sector-light .section-title.light-title span {
    color: rgba(7, 17, 15, 0.45) !important;
}

.sector-light .heading-copy {
    color: rgba(7, 17, 15, 0.72) !important;
}

.sector-light .sector-card {
    background: #ffffff;
    border: 1px solid rgba(10, 25, 21, 0.09);
    border-top: 2.5px solid var(--red);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.sector-light .sector-pill-tag {
    background: rgba(179, 56, 49, 0.08);
    color: var(--red);
    border-color: rgba(179, 56, 49, 0.2);
}

.sector-light .sector-icon-wrap {
    background: rgba(179, 56, 49, 0.08);
    border-color: rgba(179, 56, 49, 0.25);
    box-shadow: 0 4px 12px rgba(179, 56, 49, 0.1);
}

.sector-light .sector-icon-wrap i {
    color: var(--red);
}

.sector-light .sector-card:hover .sector-icon-wrap {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(179, 56, 49, 0.4);
}

.sector-light .sector-card:hover .sector-icon-wrap i {
    color: #ffffff !important;
}

.sector-light .sector-card-title {
    color: var(--dark);
}

.sector-light .sector-card-text {
    color: rgba(7, 17, 15, 0.7);
}

.sector-light .sector-card:hover {
    border-color: rgba(179, 56, 49, 0.3);
    border-top-color: var(--red);
    box-shadow: 0 16px 40px rgba(179, 56, 49, 0.14);
}






