:root {
    --header-height: 100px;
    --color-primary: #2f3567;
    --color-accent: #ff6f3f;
    --color-bg-white: #ffffff;
    --color-bg-light: #f8fafc;
    --color-border: #e2e8f0;
    --color-text-dark: #0f172a;
    --color-text-muted: #475569;
    --font-family-headings: "Poppins", sans-serif;
    --font-family-body: "Poppins", sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --box-shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.02);
    --box-shadow-card: 0 10px 30px rgba(47, 53, 103, 0.05);
    --box-shadow-hover: 0 15px 35px rgba(47, 53, 103, 0.1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
}

.main-scroll-container {
    padding: 0 2rem;

}

body {
    font-family: var(--font-family-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-family-headings);
    color: var(--color-accent);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.tech-features-title {

    font-family: var(--font-family-headings);
    color: var(--color-accent);
    font-weight: 500;
}

/* Scroll snaps for desktop */
/* @media (min-width: 1025px) {
    html {
        scroll-snap-type: y proximity;
    }

    .scroll-section {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        padding-top: 80px;
        
    }
}

.scroll-section {
    padding: 6rem 2rem 4rem 2rem;
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-bg-white);
    overflow: hidden;
} */

/* Alternating section backgrounds for differentiation (leaving hero unchanged) */
#future {
    background-color: #f8fafc !important;
    /* Soft light grey / slate tint */
}

#capabilities,
#technology,
#why-choose,
#partners {
    background-color: #f8fafc !important;
    /* Soft light grey / slate tint */
}


#about,
#framework,
#industries,
#impact,
#leadership,
#contact {
    background-color: var(--color-bg-white) !important;
}

.section-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .section-container {
        padding: 0 24px;
    }
.scroll-section
 { height: auto; min-height: auto; padding: 5rem 1.5rem 3rem 1.5rem; }
}

/* Mobile */
@media (max-width: 767px) {
    .section-container {
        padding: 0 16px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .section-container {
        padding: 0 12px;
    }
}

/* Common Eyebrow & Title Styles */
.eyebrow {
    font-family: var(--font-family-headings);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.8rem;
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--color-accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.2rem;
    font-family: var(--font-family-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow-subtle);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
}


.btn-secondary {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}


/* Sticky Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(47, 53, 103, 0.08);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

header.scrolled {
    height: 70px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.header-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    font-family: var(--font-family-headings);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-primary);
    font-family: "Poppins", sans-serif;

    position: relative;
    padding: 5px 0;
    transition: var(--transition-smooth);
}

.nav-link.active {
    color: var(--color-accent);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 30px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 4px 0;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block !important;
    width: 24px !important;
    height: 4px !important;
    background: #12173a !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/*=========================================
 HERO SECTION
=========================================*/

#hero {
    background: #ffffff;
    padding: calc(var(--header-height) + -21px) 0 30px;
    overflow: hidden;
}

#hero .section-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/*=========================================
 GRID
=========================================*/

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/*=========================================
 LEFT CONTENT
=========================================*/

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-primary);
    margin: 0 0 18px;
    max-width: 840px;
    letter-spacing: -1px;
}


.hero-desc {
    max-width: 470px;
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 19px 0 20px;
}

.hero-philosophy {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 30px;
}



/*=========================================
 BUTTON
=========================================*/

.hero-actions {
    display: flex;
    align-items: center;
}

.hero-actions .btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;


    text-decoration: none;
}

/*=========================================
 RIGHT IMAGE
=========================================*/

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-donut-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    object-fit: contain;
    animation: donutFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .12));
}

/*=========================================
 ANIMATION
=========================================*/

/*=========================================
 TABLET
=========================================*/

@media (max-width:1024px) {

    #hero {
        padding: calc(var(--header-height) + 10px) 0 20px;
    }

    #hero .section-container {
        padding: 0 30px;
    }

    .grid-2 {
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
        max-width: 100%;
    }

    .hero-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-philosophy {
        font-size: 1.1rem;
    }

    .hero-donut-img {
        max-width: 380px;
    }
}

/*=========================================
 MOBILE
=========================================*/

@media (max-width:767px) {

    #hero {
        padding: calc(var(--header-height) + 20px) 0 40px;
    }

    #hero .section-container {
        padding: 0 20px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-right {
        order: 1;
    }

    .hero-left {
        order: 2;
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 2rem;
        max-width: 100%;
    }

    .hero-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-philosophy {
        font-size: 1rem;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .hero-donut-img {
        max-width: 300px;
    }
}

/* Section 2: Future */
.future-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    /* align-items: center; */
    margin-bottom: 1rem;
}

.future-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-top: 1rem;
}

.future-map-frame {
    display: flex;
    justify-content: center;
}

.future-map-img {
    max-width: 100%;
    height: auto;
}

.future-highlights {
    border: 1.5px solid var(--color-border);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.highlight-card {
    display: flex;
    align-items: stretch;
}

.highlight-item {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    align-items: center; /* vertically center */
    gap: 1rem;
}
.highlight-item p {
    margin: 0;
    line-height: 1.6;
 /* text-align: center; */
}

.vertical-divider {
    width: 1px;
    border: none;
    background: var(--color-border);
    margin: 1rem 0;
    align-self: stretch;
    flex-shrink: 0;
}

.highlight-number {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-primary);
    /* optional */
    margin-bottom: 4px;
}

.highlight-icon-box {

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.highlight-icon-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform .35s ease;
}



.highlight-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    line-height: 1.5;
}

.future-footer-banner {
    /* background-color: rgba(255, 111, 63, 0.08); */
    /* border-left: 4px solid var(--color-accent); */
    padding: 1rem 1.5rem;
    /* border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0; */
    text-align: center;
}

.future-footer-banner p {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1rem;
}
/* =========================
   Tablet (768px - 1024px)
========================= */
@media (max-width: 1024px) {

    .highlight-card {
        flex-wrap: wrap;
    }

    .highlight-item {
        flex: 0 0 50%;
        box-sizing: border-box;
        padding: 1.25rem;
    }

    .vertical-divider {
        display: none;
    }

  .highlight-item:nth-child(n-2) {
        border-bottom: 1px solid var(--color-border);
    }

    .highlight-item:nth-child(n+2) {
        border-bottom: 1px solid var(--color-border);
    }

    .highlight-icon-box {
        width: 48px;
        height: 48px;
    }

    .highlight-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* =========================
   Mobile (767px & below)
========================= */
@media (max-width: 767px) {

    .future-highlights {
        border-radius: 14px;
    }

    .highlight-card {
        flex-direction: column;
    }

    .highlight-item {
        width: 100%;
        padding: 1.25rem;
        border-right: none !important;
        border-bottom: 1px solid var(--color-border);
    }

    .highlight-item:last-child {
        border-bottom: none;
    }

    .vertical-divider {
        display: none;
    }

    .highlight-icon-box {
        width: 42px;
        height: 42px;
    }

    .highlight-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}
/* Section 3: Intro */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.intro-col-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-col-text p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-top: 0.59rem;
}

.philosophy-highlight-card {
    background-color: rgba(47, 53, 103, 0.03);

    padding: 0 1.5rem;
    /* padding: 2.2rem 2rem; */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.philosophy-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
}

.philosophy-desc {
    font-size: 0.85rem;
    line-height: 1.6;
/* padding: 0.55rem 0; */
    color: var(--color-text-muted);
}

.title {
    font-size: 1.75rem;
    /* 28px */
    font-weight: 700;
    line-height: 1.3;

    text-align: left;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

/* Tablet */
@media (max-width: 768px) {
    .title {
        font-size: 1.5rem;
        /* 24px */
    }
}

/* Mobile */
@media (max-width: 480px) {
    .title {
        font-size: 1.25rem;
        /* 20px */
        line-height: 1.4;
        padding: 0 10px;
    }
}

/* .philosophy-quote {
    font-style: italic;
    font-weight: 700;
    color: var(--color-accent);
    border-left: 2px solid var(--color-accent);
    padding-left: 10px;
    font-size: 0.92rem;
} */

.intro-diff-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* justify-content: center; */
}

.diff-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
   /* padding: 0.55rem 0; */
}

.diff-icon {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.diff-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.diff-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.diff-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--color-text-muted);
}

.intro-footer-text {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    /* exactly as Netlify matching color */
}

/* Section 4: Capabilities */
.capabilities-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem auto;
}

.capabilities-header p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: -1.3px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: stretch;
}

.capability-subtitle {

    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.capability-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    display: flex;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    position: relative;
    text-align: left;
}


.cap-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-accent);
    background-color: rgba(255, 111, 63, 0.08);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.30rem;
}

.capability-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.capability-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.cap-icon {
    margin-top: auto;
    /* padding-top: 8px; */
    /* border-top: 1px solid var(--color-border); */
}

.cap-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.intro-footer-text-para {
    color: var(--color-accent);

}

.capabilities-bottom-banner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.92rem;
    /* color: var(--color-text-muted); */
}

/* Section 5: Framework */
.framework-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto -2rem auto;
}

.framework-header p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.8rem;
}

.timeline-outer {
    position: relative;
    margin: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 25px;
    left: 8%;
    width: 84%;
    height: 3px;
    background-color: var(--color-border);
    z-index: 1;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.timeline-step {
    width: 15.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    border: 3px solid var(--color-border);
    color: var(--color-text-muted);
    font-family: var(--font-family-headings);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}


.step-name {
    font-family: var(--font-family-headings);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.timeline-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    box-shadow: var(--box-shadow-card);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    min-height: auto;
    gap: 0.5rem;
}

.timeline-card p {
    font-size: 0.85rem;
    line-height: 1.45;
    text-align: center;
    color: var(--color-text-muted);
    margin: 0;
}

.framework-bottom-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* margin-top: 3rem; */
    font-weight: 400;
   font-size: 0.85rem;
    /* color: var(--color-text-muted); */
}

.framework-bottom-banner-title {
    color: var(--color-text-muted);

}

.banner-highlight {
    display: block;
    /* Moves span to the next line */
    margin-top: 8px;
    /* Optional spacing */
    font-weight: 700;
    color: var(--color-accent);
    /* Optional highlight color */
}

.capability-highlight-desc {
    display: block;
    /* Moves span to the next line */
    margin-top: 8px;
    /* Optional spacing */
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--color-text-muted);

}

.banner-highlight-desc {
    display: block;
    /* Moves span to the next line */
    margin-top: 4px;
    padding: 0px 10px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-primary);

}

/* Section 6: Technology */
.tech-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.tech-header p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-top: 0.8rem;
}

.tech-layout {
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 20px;
/* padding: 12px; */
    align-items: start;
}

.highlight-green {
    color: green;

}

/* .tech-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
} */

.tech-left {
    position: sticky;
    top: 100px;
}

.tech-left .eyebrow {
    margin-bottom: 0.5rem;
}



.tech-left .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.tech-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-left .btn {
    margin-bottom: 2rem;
}

.tech-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.tech-image-wrap::before {
    content: "";
    position: absolute;
    inset: -40px;

    background:
        radial-gradient(circle,
            rgba(255, 111, 63, .18),
            transparent 70%);

    z-index: 0;
}

.tech-mockup {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    border: none;

    /* filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .15)); */
}

.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tech-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
}

.tech-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.tech-card-icon img {
    /* width: 100%; */
    /* height: 100%; */
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.tech-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-align: center;
}

.tech-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin: 0;
    text-align: center;
}

/* Old tech section rules - keep for responsive fallbacks */
.tech-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.tech-feature-item {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 1.2rem;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}


.tech-icon-box {
    color: grey;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    /* background: rgba(255, 111, 63, 0.08); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.tech-feature-content h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.tech-feature-subtitle {
    font-size: 0.85rem;
    line-height: 1.45;
    font-weight: 500;
    color: #2f3567;
}

/* Section 7: Industries */
.industries-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem auto;
}

.industries-header p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-top: 0.8rem;
}


.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;

}

.industries-grid * {
    min-width: 140px;
    flex: 0 0 calc((100% - 4 * 0.8rem) / 5);
    max-width: calc((100% - 4 * 0.8rem) / 5);

}

.industry-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}


.industry-icon {
    color: var(--color-primary);
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.industry-icon .cap-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.industry-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-primary);
}
  
@media (max-width: 767px) {
    .industries-grid {
        gap: 0.7rem;
    }

    .industries-grid * {
        flex: 0 0 calc((100% - 0.7rem) / 2);
        max-width: calc((100% - 0.7rem) / 2);
       
    }

    .industry-card {
        padding: 1rem 0.7rem;
    }

    .industry-icon .cap-icon-img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .industry-card {
        flex: 0 0 calc(50% - 0.3rem);
        max-width: calc(50% - 0.3rem);
        min-width: unset;
        padding: 0.9rem 0.6rem;
    }

    .industry-icon .cap-icon-img {
        width: 50px;
        height: 50px;
    }
}
/* Section 8: Why Us */
.why-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem auto;
}

/* Why Section */
.why-grid {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.why-left-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-right-frame {
    flex: 0 0 380px;
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.why-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .why-grid {
        flex-direction: column;
    }

    .why-right-frame {
        flex: none;
        width: 100%;
        height: 100%;
    }
}

.why-bullet-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-check {
    flex-shrink: 0;
  
  
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2px;
}
.why-check-icon{
 align-items: center;
  width: 24px;
    height: 24px;

}
.why-bullet-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-bullet-content p {
    font-size: 0.85rem;
    line-height: 1.45;

    /* .why-right-img {
    width: 100%;
    height: auto;
    display: block;
} */
}

/* Section 9: Impact */
.impact-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem auto;
}

.impact-header p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.8rem;
}

.impact-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.40rem;
    margin-bottom: 1.5rem;
}

/* Small phones */
@media (max-width: 480px) {
    .impact-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
}
.impact-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}


.impact-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 5px;
}

.impact-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
}

.impact-bottom-banner {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Section 10: Trusted Partners */
.trusted-header {
    text-align: center;
    max-width: 900px;
    margin: 1rem auto 1rem auto;
}



.logo-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    /* last row center */
    align-items: center;
}

.logo-wall-item {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

    width: calc(16.66% - 1rem);
    /* 6 cards in one row */
    aspect-ratio: 16 / 9;

    box-shadow: var(--box-shadow-subtle);
}

.logo-wall-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%) opacity(0.8);
}
/* =========================
   Tablet View (768px - 1024px)
   ========================= */
@media (max-width: 1024px) {
    .logo-wall {
        gap: 0.8rem;
    }

    .logo-wall-item {
        width: calc(25% - 0.8rem); /* 4 items per row */
        padding: 0.8rem;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .logo-wall-item {
        width: calc(25% - 0.8rem); /* 4 per row */
    }
}

/* Mobile */
@media (max-width: 767px) {
    .logo-wall {
        gap: 0.8rem;
    }

    .logo-wall-item {
        width: calc(50% - 0.8rem); /* 2 per row */
        padding: 0.7rem;
    }

    .logo-wall-item img {
        max-width: 80%;
        max-height: 80%;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .logo-wall-item {
        width: calc(50% - 0.6rem); /* 2 per row */
        padding: 0.6rem;
    }

    .logo-wall-item img {
        max-width: 75%;
    }
}
/* Section 11: Leadership */
.leadership-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.leaders-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.leader-profile-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--box-shadow-subtle);
    transition: var(--transition-smooth);
}


.leader-photo-box {
    width: 110px;
    height: 110px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.leader-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.leader-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.leader-description {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.leader-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #0077b5;
}

.backing-section {
    text-align: center;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.backing-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--color-text-muted);
}

/* Investors Box */
.investors-box {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow-card);
    margin-top: 2rem;
}

.investors-title {
    font-family: var(--font-family-headings);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.investor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
    padding: 0.5rem 0;
}

.investor-logo {
    height: 60px;
    width: auto;
    min-width: 100px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.75);
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
}




footer {
    background-color: #12173a;
    /* Slate 900 block */
    color: #94a3b8;
    padding: 1rem 2rem 1.5rem 2rem;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 1rem;
}

.footer-col h3 {
    color: var(--color-bg-white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-logo-box {
    margin-bottom: 1.2rem;
}

.footer-logo-text {
    font-family: var(--font-family-headings);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-bg-white);
    letter-spacing: 0.1em;
}

.footer-logo-dot {
    color: var(--color-accent);
}

.footer-about-text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.footer-tagline {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}


.footer-contact-details {
    font-size: 0.85rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact-details a {
    /* color: var(--color-bg-white); */
    font-weight: 600;
}

@media (min-width: 300px) and (max-width: 767px) {

    .footer-grid {
        display: grid;
         grid-template-columns: 1fr 1fr !important;
        column-gap: 2rem;
        row-gap: 1.5rem;
    }

    .footer-col:nth-child(1),
    .footer-col:nth-child(4) {
        grid-column: 1 / -1;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-col h3 {
        text-align: left;
    }
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    transition: var(--transition-smooth);
}
@media (min-width: 300px) and (max-width: 767px) {

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    /* Logo section */
    .footer-col:nth-child(1) {
        grid-column: 1 / -1;
    }

    /* Quick Links */
    .footer-col:nth-child(2) {
        grid-column: 1;
    }

    /* Solutions */
    .footer-col:nth-child(3) {
        grid-column: 2;
    }

    /* Contact section */
    .footer-col:nth-child(4) {
        grid-column: 1 / -1;
    }

    .footer-col {
        width: auto !important;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-col h3 {
        margin-bottom: 0.75rem;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .scroll-section {
        padding: 5rem 1.5rem 3rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .scroll-section {
        padding: 3.5rem 1rem 2.5rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .scroll-section {
        padding: 2rem 0.8rem 2rem;
    }
}
/* Responsive adjustments */
@media (max-width: 1024px) {

    .grid-2,
    .future-top,
    .intro-grid,
    .tech-grid,
    .impact-metrics-grid,
    .leaders-cards-wrapper,
    .articles-grid,
    .cta-outer-block,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* .industries-grid {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
        gap: 0.8rem;
    } */

    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .tech-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-left {
        position: static;
    }

    .tech-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .logo-wall {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .scroll-section {
        height: auto;
        min-height: auto;
        /* padding: 5rem 1.5rem 3rem 1.5rem; */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .timeline-steps {
        flex-direction: column;
        gap: 1.5rem;
    }

    .timeline-step {
        width: 100%;
        align-items: center;
        text-align: left;
    }

    .timeline-card {
        min-height: auto;
        width: 70%;
        /* max-width: 500px; */
    }


    .timeline-line {
        display: none;
    }

    .step-circle {
        margin: 0 0 8px 0;
    }

    .leaders-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .leader-profile-card {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-bg-white);
        box-shadow: -10px 0 30px rgba(47, 53, 103, 0.1);
        flex-direction: column;
        padding: 6rem 2rem 2rem 2rem;
        gap: 1.5rem;
        transition: var(--transition-smooth);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }
}

@media (max-width: 600px) {
    .logo-wall {
        grid-template-columns: repeat(2, 1fr);
    }

    /* .footer-grid {
        grid-template-columns: 1fr;
    } */

    .hero-actions {
        margin-top: 0px;
        flex-direction: column;
    }
}


:root {
    /* Color Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card-light: #ffffff;
    --bg-dark: #0f172a;
    --bg-dark-card: #1e293b;
    --bg-tint-orange: #fff5f0;
    /* Light orange/coral tint for intro */

    --primary-orange: #ff6f3f;

    --primary-orange-hover: #e55b2b;
    --primary-orange-glow: rgba(255, 111, 63, 0.25);

    --text-primary: #0f172a;
    /* Slate 900 */
    --text-secondary: #475569;
    /* Slate 600 */
    --text-muted: #64748b;
    /* Slate 500 */
    --text-on-dark: #f8fafc;
    /* Slate 50 */
    --text-on-dark-muted: #94a3b8;
    /* Slate 400 */

    --border-light: #e2e8f0;
    --border-dark: #334155;

    /* Typography */
    --font-heading: 'Poppins', 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 0 20px rgba(255, 111, 63, 0.15);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --max-width: 1280px;

    /* --header-height: 80px; */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #2f3567;
    font-weight: 600;
    line-height: 1.25;
}

.nav-menu a {
    cursor: pointer;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* .highlight {
    color: #ff6b35;
    font-weight: 700;
} */

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 42px;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--bg-dark);
    margin-left: 0.5rem;
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
}

.logo-dot {
    color: var(--primary-orange);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
    border: 1px solid var(--primary-orange);

    /* Box Shadow */
    box-shadow: 0 8px 24px rgba(255, 111, 63, 0.25);
}


.btn-secondary {
    background-color: #fff;
    color: #2f3567;
    border: 1px solid var(--border-light);

    /* Shadow */
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}


.btn-dark {
    background-color: var(--bg-dark);
    color: white;
    border: 1px solid var(--bg-dark);
}


.btn-icon {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}


/* ==========================
   HEADER RESPONSIVE
========================== */

@media (max-width:992px) {

    .mobile-nav-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .blog-toc-header {
        position: static !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        transition: none !important;
        z-index: auto !important;
    }

}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Sections */
section {
    padding: 1rem 0;
    position: relative;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.section-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin-bottom: 3.5rem;
}

.section-header-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}
.center-title {
    text-align: center;
   text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem auto;
font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    /* margin-bottom: 1.5rem; */
    max-width: 800px;
}
.section-header-center .section-title {
    margin-left: auto;

    margin-right: auto;
}

.section-header-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* HERO SECTION */
.hero {

    width: 100%;
    min-height: auto;
    /* padding-top: 100px; */
    padding-bottom: 40px;
    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;

    background: linear-gradient(135deg,
            #fff 0%,
            #fff8f4 35%,
            #fef2eb 70%,
            #fff 100%);

}

.hero-particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 30%,
            rgba(255, 107, 53, 0.14) 0%,
            transparent 45%),

        radial-gradient(circle at 20% 80%,
            rgba(47, 53, 109, 0.08) 0%,
            transparent 45%);

    pointer-events: none;
    z-index: 2;
}


.hero .container {
    position: relative;
    z-index: 3;
}

/* Hero two-column layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    max-width: 620px;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Hero Right Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-donut-wrapper {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1;
    height: auto;
}

.hero-donut-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    animation: donutFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(255, 111, 63, 0.45));
    will-change: transform;
    transform-origin: center center;
    backface-visibility: hidden;
}




/* @keyframes donutFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -8px, 0) rotate(4deg);
    }
} */

/* Animated decorative rings */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 111, 63, 0.25);
    pointer-events: none;
    animation: ringPulse 4s ease-out infinite;
}

.hero-ring-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.hero-ring-2 {
    width: 130%;
    height: 130%;
    border-color: rgba(255, 111, 63, 0.12);
    animation-delay: 1.2s;
}

.hero-ring-3 {
    width: 160%;
    height: 160%;
    border-color: rgba(255, 111, 63, 0.06);
    animation-delay: 2.4s;
}


.hero .section-title {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: #2f356d;
}

.hero .section-desc {
    color: var(--text-on-dark-muted);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    /* margin-top: 5rem; */
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    /* padding: 40px; */
    /* background-color: color(rgb(197, 50, 50) green blue); */
}

.hero-actions .btn-secondary {
    color: #2f3567;
    border-color: rgba(255, 255, 255, 0.25);
}


.hero-trust {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.hero-trust-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-on-dark-muted);
    margin-bottom: 1.5rem;
}

.hero-logos-track {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    opacity: 0.6;
}

.hero-logo {
    height: 24px;
    filter: brightness(0) invert(1);
    object-fit: contain;
    transition: opacity var(--transition-fast);
}


.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-on-dark-muted);
    text-decoration: none;
    z-index: 3;
    transition: var(--transition-fast);
}


.scroll-cue-arrow {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    animation: bounce 2s infinite;
}






.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.stat-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-orange);
    transform: scaleY(0);
    transition: var(--transition-fast);
    transform-origin: bottom;
}



.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    font-family: var(--font-heading);
}

.stat-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2f3567;
    margin-bottom: 0.75rem;
}

.stat-desc {
    font-size: 0.95rem;
    color: #2f3567;
    opacity: 0.7;
}

/* SECTION 2.2 - CHALLENGES */
.challenges {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.challenge-card {
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition-medium);
}


.challenge-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-color: var(--bg-secondary);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.challenge-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2f3567;
    margin-bottom: 0.75rem;
}

.challenge-desc {
    font-size: 0.95rem;
    color: #2f3567;
    opacity: 0.8;
}

.about-intro {
    padding: 100px 0;
    background: #fff;
}

.about-intro .section-title {

    max-width: 760px;
    margin: 15px auto;
    text-align: center;
}

.about-intro .section-desc {

    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
    color: #667085;
    line-height: 1.9;
}

/* GRID */

.feature-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;
}

/* CARD */

.feature-card {

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 22px;

    padding: 35px;

    transition: .35s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    position: relative;

    overflow: hidden;
}

.feature-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: #ff6b35;

    transform: scaleX(0);

    transition: .35s;
}



.feature-icon {

    width: 65px;

    height: 65px;

    border-radius: 18px;

    background-color: var(--bg-secondary);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ff6b35;

    font-size: 28px;

    margin-bottom: 24px;
}

.section-eyebrow-about {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-bottom: 14px;

    color: #ff6b35;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
}

.feature-card h3 {

    color: #22306b;

    margin-bottom: 15px;

    font-size: 24px;
}

.feature-card p {

    color: #667085;

    line-height: 1.8;
}

/* Philosophy */

.philosophy-card {

    margin-top: 70px;

    background: linear-gradient(135deg, #fff, #fff8f4);

    border: 1px solid #ffe2d5;

    border-radius: 24px;

    padding: 55px;

    text-align: center;

    position: relative;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.quote-icon {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #ff6b35;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    margin: 0 auto 25px;
}

.philosophy-card h3 {

    color: #22306b;

    font-size: 34px;

    margin-bottom: 20px;
}

.philosophy-card p {

    max-width: 850px;

    margin: auto;

    line-height: 1.9;

    color: #667085;
}

.quote {

    margin-top: 30px;

    font-size: 22px;

    color: #ff6b35;

    font-weight: 600;

    font-style: italic;
}

/* Responsive */

@media(max-width:992px) {

    .feature-grid {

        grid-template-columns: 1fr;

    }

    .philosophy-card {

        padding: 35px 25px;

    }

    .philosophy-card h3 {

        font-size: 28px;

    }

}

.philosophy-card {
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 111, 63, 0.1);
}

.philosophy-title {
    font-size: 1.8rem;
    font-weight: 700;
    /* margin-bottom: 1rem; */
    color: #2f3567;
}

/* .philosophy-quote {
    font-style: italic;
    border-left: 3px solid var(--primary-orange);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: #2f3567;
    opacity: 0.75;
    font-size: 1.05rem;
} */

.diff-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2f3567;
    margin-bottom: 2rem;
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diff-item {
    display: flex;
    gap: 1.25rem;
}

.diff-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.diff-item-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: #2f3567;
    margin-bottom: 0.25rem;
}

.diff-item-desc {
    font-size: 0.95rem;
    color: #2f3567;
    opacity: 0.8;
}

/* SECTION 4 - CAPABILITIES */
.capabilities {
    background-color: var(--bg-primary);
}

.capabilities .section-title {
    color: #2f3567;
}

.capabilities .section-desc {
    color: #2f3567;
    opacity: 0.85;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cap-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 380px;
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
}

.cap-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 111, 63, 0.04) 0%, rgba(255, 111, 63, 0) 100%);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: -1;
}



.cap-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    font-size: 1.25rem;
    font-weight: 700;

    color: var(--primary-orange);

    background-color: var(--bg-secondary);


    border-radius: 14px;
}

.cap-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.cap-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.cap-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2f3567;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.cap-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2f3567;
    opacity: 0.65;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

.cap-desc {
    font-size: 0.95rem;
    color: #2f3567;
    opacity: 0.8;
}

.cap-bottom {
    margin-top: auto;
}

.cap-bottom-statement {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2f3567;
    opacity: 0.85;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cap-bottom-statement strong {
    color: var(--primary-orange);
}



/* SECTION 6 - TECHNOLOGY PLATFORM */
.tech-platform {
    background-color: var(--bg-secondary);
}

.tech-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-nav-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    color: #2f3567;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.tech-nav-item.active {
    border-color: var(--primary-orange);
    background-color: white;
    box-shadow: var(--shadow-md);
}

.tech-nav-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2f3567;
}

.tech-nav-item.active .tech-nav-title {
    color: var(--primary-orange);
}

.tech-nav-icon {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.tech-nav-item.active .tech-nav-icon {
    color: var(--primary-orange);
    transform: translateX(4px);
}

.tech-display-box {

    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 3.5rem;
    display: flex;
    /* box-shadow: inset; */
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #fff;

    box-shadow: 0 10px 30px rgba(47, 53, 103, 0.08);
}

.tech-pane {
    display: none;
}

.tech-pane.active {
    display: block;
    animation: fadeIn var(--transition-medium) forwards;
}

.tech-pane-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.tech-pane-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tech-pane-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tech-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    gap: 1rem;
}

.tech-feature-item {
    display: flex;
    align-items: center;
    /* gap: 0.75rem; */
    margin-top: 5px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2f3567;
}

.tech-feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-orange);
}

@media (max-width:768px) {

    .tech-grid {
        display: block;
    }

    .tech-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tech-display-box {
        display: none;
    }

    .tech-pane {
        margin: 0 0 18px;
        padding: 24px;
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    }

    .tech-nav {
        gap: 12px;
    }

}

/* SECTION 7 - INDUSTRIES SERVED */
.industries {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.industry-card {
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
}


.industry-icon-box {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    background-color: var(--bg-secondary);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.industry-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2f3567;
}

/* SECTION 8 - WHY FUEVATION */
.why-us {
    background-color: var(--bg-secondary);
}

/* 



.why-card {
    display: flex;
    gap: 1.25rem;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(47, 53, 103, 0.08);
}


.why-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.why-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* SECTION 9 - IMPACT METRICS */
.impact {
    /* background-color: #12173a; */
    background-color: var(--bg-secondary);

}

.impact .section-title {
    color: #2f3567;
}

.impact .section-desc {
    color: var(--text-on-dark-muted);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.impact-card {
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    /* box-shadow: var(--shadow-glow); */
    transition: var(--transition-medium);
}


.impact-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.impact-label {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 500;
}

.impact-footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.1rem;
    color: var(--text-on-dark-muted);
}

.impact-footer strong {
    color: white;
}

/* SECTION 10 - TRUSTED BY (LOGOS) */
.trusted {
    background: white;
    padding: 6rem 0;
}





@media (max-width: 992px) {
    .logo-wall-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-wall-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo-wall-grid {
        grid-template-columns: 1fr;
    }
}

.partner-logo {
    max-width: 130px;
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.65);
    transition: var(--transition-fast);
}


/* SECTION 11 - LEADERSHIP */
.leadership {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.leaders-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.leader-card {
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: var(--transition-medium);
}


.leader-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
    background-color: var(--bg-secondary);
}

.leader-info {
    flex: 1;
}

.leader-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

.leader-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: #22306b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

.leader-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.leader-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.leader-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}


.investors-box {
    background-color: white;
    border: none;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.investors-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.investor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    padding: 0.5rem 0;
}

.investor-logo {
    height: 60px;
    width: auto;
    min-width: 80px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.75);
    transition: var(--transition-fast);
    flex-shrink: 0;
}


.investor-text-fallback {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* SECTION 12 - INSIGHTS */


/* SECTION 13 - FINAL CALL TO ACTION */
/* .cta-section {
    background-color: #12173a;
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
} */



/* @media (min-width: 768px) and (max-width: 1224px) {  */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    /* margin-bottom: 4rem; */
}
/* } */


/* FOOTER */
.footer {
    background-color: #12173a;
    color: var(--text-on-dark-muted);
    border-top: 1px solid var(--border-dark);
    padding: 6rem 0 3rem 0;
}


.footer-col-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-logo-img {
    height: 38px;
    object-fit: contain;
}

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-philosophy {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-orange);
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    text-decoration: none;
    color: var(--text-on-dark-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}


.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.95rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-contact-icon {
    color: var(--primary-orange);
    margin-top: 0.2rem;
}





.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Scroll Animations using JS and CSS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES
   ===================================================== */

/* --- Large tablets / small desktops --- */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }

    /* .timeline-line {
        left: 8%;
        width: 84%;
    } */

    .section-title {
        font-size: 1.8rem;
    }

    .hero .section-title {
        font-size: 2.75rem;
    }

    .philosophy-card h3 {
        font-size: 1.5rem;
    }

    .philosophy-card .quote {
        font-size: 1.15rem;
    }
}

/* --- Tablets landscape --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-layout {
        gap: 2rem;
    }

    .hero-donut-wrapper {
        width: 340px;
        height: 340px;
    }

    .hero .section-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.75rem;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cap-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cap-card {
        height: auto;
        min-height: 300px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-display-box {
        padding: 2rem;
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    /* .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    } */

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .leaders-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .leader-card {
        padding: 2rem;
    }

    .logo-wall-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .logo-wall-grid img {
        width: 160px;
        height: 80px;
        padding: 12px;
    }

    /* .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    } */

    /* .cta-section .section-title {
        font-size: 2.25rem;
    } */

    .framework {
        padding: 60px 0;
    }

    .timeline-content-box {
        padding: 2.5rem;
    }

    .timeline-detail-title {
        font-size: 1.75rem;
    }

    .timeline-detail-right p {
        font-size: 1rem;
    }

    .timeline-detail-num {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    /* Timeline shifts to vertical list on tablet */
    .timeline-line {
        display: none;
    }

    .timeline-track {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .timeline-node {
        flex-direction: row;
        text-align: left;
        padding: 0.5rem 1rem;
        background-color: white;
        border: 1px solid var(--border-light);
        border-radius: 12px;
    }

    .timeline-point {
        margin-bottom: 0;
        margin-right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .timeline-node-info {
        display: flex;
        flex-direction: column;
    }

    .timeline-detail-pane.active {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-detail-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #edf1f7;
        padding-top: 2rem;
    }

    .about-intro {
        padding: 60px 0;
    }

    .philosophy-card {
        padding: 2rem;
    }

    .philosophy-card h3 {
        font-size: 1.4rem;
    }

    .philosophy-card .quote {
        font-size: 1.1rem;
    }

    /* .cta-section {
        padding: 5rem 0;
    } */

    /* .cta-section .section-title {
        font-size: 2rem;
    } */
}

/* --- Tablets portrait --- */
@media (max-width: 900px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card {
        flex-direction: column;
    }
}

/* --- Mobile landscape / small tablets --- */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-desc {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .section-header-center {
        margin-bottom: 2.5rem;
    }

    .future-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-card {
        padding: 1.2rem;
        gap: 12px;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tech-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 0.6rem;
    }

    .industry-card {
        padding: 1rem;
    }

    /* .industry-card h3 {
        font-size: 18px;
        font-weight: 500px;
    } */


    .mobile-nav-toggle {
        display: flex;
    }

    .highlight {
        color: #ff6f3f;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        height: calc(100dvh - 64px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        padding-bottom: 2rem;
        gap: 1.5rem;
        transition: var(--transition-medium);
        border-top: 1px solid var(--border-light);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-actions {
        display: none;
    }

    .nav-actions .btn {
        display: none;
    }

    .nav-mobile-cta {
        display: block !important;
        margin-top: 0.5rem;
    }

    .nav-mobile-cta .btn {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        /* padding-top: calc(64px + 2.5rem); */
        padding-bottom: 4rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-donut-wrapper {
        width: 240px;
        height: 240px;
    }

    .hero .section-title {
        font-size: 2rem;
        max-width: 100%;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 0;
    }

    .hero-actions .btn {
        width: 100%;
        /* max-width: 320px; */
        padding: 0.85rem 1.25rem;
    }

    .scroll-cue {
        display: none;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .challenge-card {
        padding: 1.75rem 1.5rem;
    }

    .cap-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cap-card {
        height: auto;
        min-height: auto;
        padding: 2rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-nav {
        gap: 0.5rem;
    }

    .tech-nav-item {
        padding: 1rem 1.25rem;
    }

    .tech-nav-title {
        font-size: 1rem;
    }

    .tech-display-box {
        padding: 1.75rem;
    }

    .tech-pane-title {
        font-size: 1.35rem;
    }

    .tech-features-list {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .industry-card {
        padding: 1.25rem;
    }

    .why-card {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .impact-card {
        padding: 1.75rem 1.25rem;
    }

    .impact-number {
        font-size: 1.75rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .leaders-container {
        gap: 1.25rem;
    }

    .leader-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.75rem;
        gap: 1.25rem;
    }

    .leader-avatar {
        margin-bottom: 0.5rem;
        width: 90px;
        height: 90px;
    }

    .investors-box {
        padding: 2rem;
    }

    /* .investor-logos {
        flex-wrap: wrap;
    } */

    .investor-text-fallback {
        font-size: 1rem;
    }

    .logo-wall-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .logo-wall-grid img {
        width: 120px;
        height: 60px;
        padding: 8px;
    }

    .framework {
        padding: 40px 0;
    }

    .timeline-outer {
        margin-top: 40px;
    }

    .timeline-content-box {
        padding: 1.5rem;
        margin-top: 1.5rem;
        border-radius: 16px;
    }

    .timeline-detail-num {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 1rem;
    }

    .timeline-detail-title {
        font-size: 1.35rem;
    }

    .timeline-detail-left p {
        font-size: 0.9rem;
    }

    .timeline-detail-right p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .timeline-detail-tag {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .about-intro {
        padding: 40px 0;
    }

    .feature-grid {
        gap: 1rem;
    }

    .feature-card {
        padding: 1.75rem;
        border-radius: 16px;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        border-radius: 14px;
        margin-bottom: 1rem;
    }

    .philosophy-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .philosophy-card h3 {
        font-size: 1.25rem;
    }

    .philosophy-card p {
        font-size: 0.9rem;
    }

    .philosophy-card .quote {
        font-size: 1rem;
    }

    /* .cta-section {
        padding: 4rem 0;
    } */

    /* .cta-section .section-title {
        font-size: 1.75rem;
    }

    .cta-section .section-desc {
        font-size: 0.95rem;
    } */

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    /* .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    } */

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .opportunity {
        padding: 4rem 0;
    }

    .challenges {
        padding: 4rem 0;
    }

    .industries {
        padding: 4rem 0;
    }

    .why-us {
        padding: 4rem 0;
    }

    .impact {
        padding: 4rem 0;
    }

    .trusted {
        padding: 4rem 0;
    }

    .insights {
        padding: 4rem 0;
    }

    .leadership {
        padding: 4rem 0;
    }
}

/* --- Mobile portrait --- */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero {
        padding-top: calc(64px + 2rem);
        padding-bottom: 3rem;
    }

    .hero .section-title {
        font-size: 1.75rem;
    }

    .hero-donut-wrapper {
        width: 200px;
        height: 200px;
    }

    @media (max-width:1100px) {

        .hero-layout {

            grid-template-columns: 1fr;

            text-align: center;

            gap: 50px;

        }

        .hero-content {

            max-width: 700px;

            margin: auto;

        }

        .hero-actions {

            justify-content: center;

        }

        .hero-visual {

            order: -1;

        }

        .hero-donut-wrapper {

            width: 330px;
            height: 330px;

        }

    }

    .stat-number {
        font-size: 2rem;
    }

    .logo-wall-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .logo-wall-grid img {
        width: 100px;
        height: 50px;
        padding: 6px;
    }

    /* .cta-section .section-title {
        font-size: 1.5rem;
    } */

    /* .cta-section {
        padding: 3rem 0;
    } */

    .timeline-node {
        padding: 6px 10px;
    }

    .timeline-point {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .timeline-node-title {
        font-size: 0.65rem;
    }

    .investor-text-fallback {
        font-size: 0.85rem;
    }

    .leader-name {
        font-size: 1.15rem;
    }

    .leader-role {
        font-size: 0.8rem;
    }

    .leader-bio {
        font-size: 0.85rem;
    }

    .leader-contact {
        font-size: 0.8rem;
    }

    .cap-bottom-statement {
        font-size: 0.95rem;
    }

    .philosophy-card h3 {
        font-size: 1.1rem;
    }

    .philosophy-card .quote {
        font-size: 0.95rem;
    }
}

.challenge-icon {
    width: 62px;
    height: 62px;
    object-fit: contain;
    display: block;
}

.cap-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Main Section future */
.future-section {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    /* padding: 2rem; */
padding-top: 2rem;
    /* background: #f8fafc; */
    box-sizing: border-box;
}

/* Left & Right Images */
.future-left,
.future-right {
    flex: 0 0 25%;
    position: relative;
    overflow: hidden;
}

.future-left img,
.future-right img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
}


/* Fade Effect */
.future-left::after,
.future-right::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.future-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 90%,
            /* rgba(255, 255, 255, 0.15) 72%, */
            rgba(255, 255, 255, 0.35) 95%,
            /* rgba(255, 255, 255, 0.6) 95%, */
            #fff 100%);
}

/* Right Fade */
.future-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 90%,
            /* rgba(255, 255, 255, 0.15) 72%, */
            rgba(255, 255, 255, 0.35) 95%,
            /* rgba(255, 255, 255, 0.6) 95%, */
            #fff 100%);
}

/* Center Content */
.future-content {
    flex: 1;
    /* display: flex; */
    flex-direction: column;
    align-items: left;
background-color: #fff;
    text-align: left;
    padding: 12px;
    max-width: 700px;
    box-sizing: border-box;
    z-index: 2;
}


.future-content h2 {
    width: 100%;
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    /* margin-bottom: 15px; */
    padding: 0 12px;
}
.future-link {
    color: var(--color-accent);
    font-weight: 600;
    padding: 22px;
}

.future-buttons {
    display: flex;
    justify-content: left;
}
.future-buttons .btn {
  
    border-radius: 6px;
    margin-top: 5px;
    margin-left: 12px;
}


/* Tablet */
@media(max-width:992px) {

    .future-section {
        flex-direction: column;
    }


    .future-left,
    .future-right {
        flex: none;
        width: 100%;
        height: 320px;
    }


    .future-left img,
    .future-right img {
        min-height: 220px;
    }


    .future-left::after,
    .future-right::after {
        display: none;
    }


    .future-content {
        padding: 35px 25px;
        max-width: 100%;
    }

}


/* Mobile */
@media(max-width:576px) {

    .future-content h2 {
        font-size: 22px;
    }


    .future-content {
        padding: 25px 15px;
    }

}