﻿:root {
    --bg: #f6faf1;
    --bg2: #eef7e6;
    --panel: #ffffff;
    --panel-border: rgba(20,40,15,0.10);
    --text: #16241a;
    --muted: #5c6b5e;
    --lime: #8CC63F;
    --lime-dim: #6fa82e;
    --blue: #3E7BFA;
    --blue-dark: #1B3F8F;
    --amber: #F5A623;
    --purple: #A855F7;
    --shadow: 0 20px 50px -30px rgba(20,50,15,0.3);
}

html[data-theme="dark"] {
    --bg: #070b12;
    --bg2: #0b1120;
    --panel: #0d1424;
    --panel-border: rgba(255,255,255,0.09);
    --text: #eef1f8;
    --muted: #8b93a7;
    --shadow: 0 20px 50px -25px rgba(0,0,0,0.7);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(ellipse 900px 600px at 18% -10%, rgba(140,198,63,0.14), transparent 60%), radial-gradient(ellipse 900px 700px at 85% 6%, rgba(62,123,250,0.09), transparent 55%), var(--bg);
    color: var(--text);
    font-family: 'Inter',sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    transition: background .3s, color .3s;
}

h1, h2, h3, h4, .brand {
    font-family: 'Sora',sans-serif;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

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

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

button {
    font-family: inherit;
}

/* ============ Loading screen ============ */
#loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s;
}

    #loader.hide {
        opacity: 0;
        visibility: hidden;
    }

.loader-mark {
    width: 46px;
    height: 46px;
    border: 3px solid var(--panel-border);
    border-top-color: var(--lime);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============ Scroll progress ============ */
#scrollbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg,var(--lime),var(--blue));
    width: 0%;
    z-index: 1000;
    transition: width .05s;
}

/* ============ Reveal ============ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}

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

.reveal-delay-1 {
    transition-delay: .08s;
}

.reveal-delay-2 {
    transition-delay: .16s;
}

.reveal-delay-3 {
    transition-delay: .24s;
}

.reveal-delay-4 {
    transition-delay: .32s;
}

.reveal-delay-5 {
    transition-delay: .4s;
}

.reveal-delay-6 {
    transition-delay: .48s;
}

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

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

@keyframes floatBlob {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(24px,-26px) scale(1.07);
    }
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(140,198,63,.55);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(140,198,63,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(140,198,63,0);
    }
}

/* ============ Sticky Nav ============ */
header.topbar {
    position: sticky;
    top: 0;
    z-index: 500;
    padding: 18px 0;
    background: rgba(246,250,241,0.75);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, padding .3s, background .3s;
}

html[data-theme="dark"] header.topbar {
    background: rgba(7,11,18,0.75);
}

header.topbar.scrolled {
    padding: 12px 0;
    border-color: var(--panel-border);
}

.brandbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 10px;
}

.roof {
    width: 22px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
}

    .roof::before, .roof::after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 14px;
        height: 4px;
        border-radius: 2px;
    }

    .roof::before {
        left: 0;
        background: var(--lime);
        transform: rotate(28deg);
        transform-origin: bottom left;
    }

    .roof::after {
        right: 0;
        background: var(--blue);
        transform: rotate(-28deg);
        transform-origin: bottom right;
    }

.brand {
    font-weight: 800;
    font-size: 18px;
}

    .brand span {
        color: var(--lime-dim);
    }

    .brand small {
        display: block;
        font-family: 'Inter',sans-serif;
        font-weight: 600;
        font-size: 9.5px;
        color: var(--muted);
        letter-spacing: 2px;
    }

nav.toplinks {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
}

    nav.toplinks a {
        transition: color .15s;
    }

        nav.toplinks a:hover {
            color: var(--blue-dark);
        }

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--panel-border);
    background: var(--panel);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
}

@media (max-width:900px) {
    nav.toplinks a:not(.theme-toggle-wrap) {
        display: none;
    }
}

/* ============ Buttons ============ */
.btn {
    position: relative;
    overflow: hidden;
    padding: 14px 26px;
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .15s, box-shadow .15s;
    border: none;
}

    .btn:hover {
        transform: translateY(-2px);
    }

    .btn.primary {
        background: linear-gradient(135deg,var(--lime),var(--lime-dim));
        color: #0e1e08;
        box-shadow: 0 14px 30px -12px rgba(140,198,63,0.55);
    }

    .btn.ghost {
        background: var(--panel);
        border: 1.5px solid var(--panel-border);
        color: var(--text);
    }

    .btn.on-dark {
        background: #fff;
        color: var(--blue-dark);
    }

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    transform: scale(0);
    animation: rip .6s ease-out;
    pointer-events: none;
}

@keyframes rip {
    to {
        transform: scale(3.2);
        opacity: 0;
    }
}

/* ============ Hero ============ */
.hero {
    position: relative;
    padding: 70px 0 40px;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .35;
    pointer-events: none;
    z-index: 0;
}

.blob1 {
    width: 380px;
    height: 380px;
    background: var(--lime);
    top: -80px;
    right: 4%;
    animation: floatBlob 9s ease-in-out infinite;
}

.blob2 {
    width: 300px;
    height: 300px;
    background: var(--blue);
    top: 160px;
    left: 0%;
    animation: floatBlob 11s ease-in-out infinite reverse;
}

.blob3 {
    width: 220px;
    height: 220px;
    background: var(--purple);
    bottom: -40px;
    right: 30%;
    animation: floatBlob 13s ease-in-out infinite;
    opacity: .18;
}

.particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
    opacity: .5;
}

.eyebrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--lime-dim);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp .6s ease .05s forwards;
}

    .eyebrow::before, .eyebrow::after {
        content: "";
        width: 46px;
        height: 1px;
        background: linear-gradient(90deg,transparent,var(--lime));
    }

    .eyebrow::after {
        background: linear-gradient(90deg,var(--lime),transparent);
    }

h1.title {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 54px;
    line-height: 1.12;
    font-weight: 800;
    margin: 0 auto 18px;
    letter-spacing: -.5px;
    max-width: 900px;
    opacity: 0;
    animation: fadeUp .6s ease .1s forwards;
}

    h1.title .grad {
        background: linear-gradient(90deg,var(--blue-dark),var(--lime-dim));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-sub {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--muted);
    font-size: 16.5px;
    max-width: 720px;
    margin: 0 auto 34px;
    line-height: 1.75;
    opacity: 0;
    animation: fadeUp .6s ease .16s forwards;
}

.hero-cta {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp .6s ease .22s forwards;
}

.floatcards {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 980px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp .6s ease .3s forwards;
}

.fcard {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    animation: floatBlob 6s ease-in-out infinite;
}

    .fcard:nth-child(2) {
        animation-delay: .6s;
    }

    .fcard:nth-child(3) {
        animation-delay: 1.2s;
    }

    .fcard:nth-child(4) {
        animation-delay: 1.8s;
    }

    .fcard:nth-child(5) {
        animation-delay: 2.4s;
    }

    .fcard .ic {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        flex-shrink: 0;
    }

    .fcard b {
        font-size: 13px;
        display: block;
    }

    .fcard span {
        font-size: 11px;
        color: var(--muted);
    }

/* ============ Section shell ============ */
section {
    padding: 80px 0;
    position: relative;
}

.sec-head {
    max-width: 660px;
    margin: 0 auto 46px;
    text-align: center;
}

.intro-section {
    padding: 80px 20px;
    background: #fff;
}

.intro-container {
    max-width: 950px;
    margin: 0 auto;
}

.intro-text {
    text-align: center;
}

.sec-tag {
    display: inline-block;
    background: #f4f6f8;
    color: #0d6efd;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .intro-text h2 {
        font-size: 30px;
    }

    .intro-text p {
        font-size: 16px;
        text-align: left;
    }
}

.sec-tag {
    color: var(--lime-dim);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align:center;
}

.sec-title {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -.3px;
}

.sec-sub {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.tint {
    background: var(--bg2);
}

.wave {
    display: block;
    width: 100%;
    height: 60px;
}

/* ============ Intro split ============ */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 54px;
    align-items: center;
}

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

.intro-img {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg,var(--blue-dark),var(--blue) 45%,var(--lime));
    box-shadow: var(--shadow);
}

    .intro-img .grid-pattern {
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px);
        background-size: 34px 34px;
    }

    .intro-img .mark {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #37b34a;
    }

        .intro-img .mark i {
            font-size: 70px;
            color: rgba(255,255,255,.85);
        }

.gcard {
    position: absolute;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 14px;
    padding: 14px 16px;
    color: #fff;
}

    .gcard.g1 {
        top: 20px;
        left: 20px;
    }

    .gcard.g2 {
        bottom: 20px;
        right: 20px;
        text-align: right;
    }

    .gcard b {
        display: block;
        font-family: 'Sora',sans-serif;
        font-size: 20px;
    }

    .gcard span {
        font-size: 11px;
        opacity: .85;
    }

.intro-text h2 {
    font-size: 30px;
    margin: 0 0 16px;
}

.intro-text p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
    margin: 0 0 14px;
}

.intro-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}

.ipoint {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
}

    .ipoint i {
        color: var(--lime-dim);
        margin-top: 2px;
    }

/* ============ Timeline ============ */
.timeline {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    padding-left: 38px;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 6px;
        top: 6px;
        bottom: 6px;
        width: 2px;
        background: var(--panel-border);
    }

.tl-progress {
    position: absolute;
    left: 6px;
    top: 6px;
    width: 2px;
    height: 0%;
    background: linear-gradient(180deg,var(--lime),var(--blue));
}

.tl-item {
    position: relative;
    padding-bottom: 40px;
}

    .tl-item:last-child {
        padding-bottom: 0;
    }

.tl-dot {
    position: absolute;
    left: -38px;
    top: 2px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--panel);
    border: 3px solid var(--lime);
    box-shadow: 0 0 0 4px var(--bg);
}

.tl-item.active .tl-dot {
    background: var(--lime);
}

.tl-yr {
    font-family: 'Sora',sans-serif;
    font-weight: 800;
    color: var(--blue-dark);
    font-size: 14px;
}

.tl-item h4 {
    margin: 6px 0 6px;
    font-size: 17.5px;
}

.tl-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ============ MVV cards ============ */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

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

.mvv-card {
    position: relative;
    background: var(--panel);
    border-radius: 20px;
    padding: 2px;
    box-shadow: var(--shadow);
}

    .mvv-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 2px;
        background: linear-gradient(135deg,var(--lime),var(--blue));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity .3s;
    }

    .mvv-card:hover::before {
        opacity: 1;
    }

.mvv-inner {
    background: var(--panel);
    border-radius: 18px;
    padding: 32px;
    height: 100%;
    transition: transform .35s;
    transform-style: preserve-3d;
}

.mvv-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #fff;
    font-size: 22px;
}

.mvv-inner h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.mvv-inner p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
}

/* ============ Feature grid (why choose) ============ */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

@media (max-width:1000px) {
    .feat-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:700px) {
    .feat-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

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

.feat-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 22px 18px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

    .feat-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        border-color: rgba(140,198,63,0.4);
    }

.feat-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--lime-dim);
    font-size: 18px;
}

.feat-card h4 {
    font-size: 14.5px;
    margin: 0 0 6px;
}

.feat-card p {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ============ Process ============ */
.process-flow {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
}

.proc-step {
    scroll-snap-align: start;
    flex: 0 0 190px;
    text-align: center;
    padding: 0 14px;
    position: relative;
}

    .proc-step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 26px;
        left: 60%;
        width: 100%;
        height: 2px;
        background: repeating-linear-gradient(90deg,var(--panel-border) 0 6px,transparent 6px 12px);
    }

.proc-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--panel);
    border: 2px solid var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Sora',sans-serif;
    font-weight: 800;
    color: var(--blue-dark);
    font-size: 17px;
    position: relative;
    z-index: 1;
}

.proc-step h4 {
    font-size: 13.5px;
    margin: 0 0 6px;
}

.proc-step p {
    font-size: 11.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

/* ============ Stats ============ */
.stats-band {
    background: linear-gradient(135deg,var(--blue-dark),#245bd6);
    border-radius: 26px;
    padding: 52px 40px;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 18px;
    text-align: center;
}

@media (max-width:900px) {
    .stats-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:520px) {
    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

.stat-n {
    font-family: 'Sora',sans-serif;
    font-weight: 800;
    font-size: 30px;
}

.stat-l {
    font-size: 11.5px;
    opacity: .85;
    margin-top: 4px;
}

/* ============ Leadership ============ */
.lead-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

@media (max-width:900px) {
    .lead-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

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

.lead-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 26px 20px;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}

    .lead-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

.lead-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Sora',sans-serif;
    font-weight: 800;
    font-size: 24px;
}

.lead-card h4 {
    margin: 0 0 4px;
    font-size: 15.5px;
}

.lead-card .role {
    font-size: 12px;
    color: var(--lime-dim);
    font-weight: 600;
    margin-bottom: 12px;
}

.lead-socials {
    display: flex;
    gap: 8px;
    justify-content: center;
}

    .lead-socials a {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--bg2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12.5px;
        color: var(--blue-dark);
        transition: background .15s,color .15s;
    }

        .lead-socials a:hover {
            background: var(--blue);
            color: #fff;
        }

/* ============ Culture ============ */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

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

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

.culture-card {
    background: linear-gradient(180deg,var(--panel),var(--bg2));
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 26px 22px;
}

    .culture-card i {
        font-size: 24px;
        color: var(--lime-dim);
        margin-bottom: 12px;
        display: block;
    }

    .culture-card h4 {
        margin: 0 0 8px;
        font-size: 16px;
    }

    .culture-card p {
        margin: 0;
        font-size: 13.5px;
        color: var(--muted);
        line-height: 1.7;
    }

/* ============ Industries ============ */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 16px;
}

@media (max-width:900px) {
    .ind-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:560px) {
    .ind-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

.ind-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    padding: 22px 12px;
    text-align: center;
    transition: transform .2s,border-color .2s;
}

    .ind-card:hover {
        transform: translateY(-4px);
        border-color: rgba(62,123,250,0.4);
    }

    .ind-card i {
        font-size: 22px;
        color: var(--blue);
        margin-bottom: 10px;
        display: block;
    }

    .ind-card span {
        font-size: 12.5px;
        font-weight: 600;
    }

/* ============ Certifications ============ */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 18px;
}

@media (max-width:900px) {
    .cert-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:560px) {
    .cert-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

.cert-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 24px 14px;
    text-align: center;
}

.cert-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--lime),var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #fff;
    font-size: 22px;
    animation: pulseDot 2.4s infinite;
}

.cert-card span {
    font-size: 12px;
    font-weight: 700;
}

/* ============ Awards marquee ============ */
.marquee-wrap {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
    mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 26s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

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

.award-card {
    flex: 0 0 260px;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: center;
}

    .award-card i {
        font-size: 26px;
        color: var(--amber);
    }

    .award-card b {
        display: block;
        font-size: 14px;
    }

    .award-card span {
        font-size: 11.5px;
        color: var(--muted);
    }

/* ============ Video ============ */
.video-box {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 21/9;
    background: linear-gradient(135deg,var(--blue-dark),#0e1e08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

    .video-box .grid-pattern {
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
        background-size: 40px 40px;
        background-color: #3e3e7a;
    }

.play-btn {
    position: relative;
    z-index: 1;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255,255,255,.5);
    animation: pulseDot 2.4s infinite;
}

    .play-btn i {
        color: var(--blue-dark);
        font-size: 24px;
        margin-left: 4px;
    }

.video-caption {
    position: absolute;
    bottom: 24px;
    left: 28px;
    color: #fff;
    z-index: 1;
}

    .video-caption b {
        font-family: 'Sora',sans-serif;
        font-size: 18px;
    }

    .video-caption span {
        font-size: 12.5px;
        opacity: .85;
    }

.modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(6,10,7,0.75);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .modal-bg.show {
        display: flex;
    }

.modal-box {
    background: #000;
    border-radius: 16px;
    width: 100%;
    max-width: 860px;
    aspect-ratio: 16/9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* ============ Testimonials ============ */
.testi-wrap {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.testi-slide {
    display: none;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow);
}

    .testi-slide.show {
        display: block;
        animation: fadeUp .5s ease;
    }

.testi-stars {
    color: var(--amber);
    margin-bottom: 14px;
    font-size: 14px;
}

.testi-slide p.quote {
    font-size: 16.5px;
    line-height: 1.75;
    margin: 0 0 20px;
    color: var(--text);
}

.testi-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.testi-person b {
    display: block;
    font-size: 13.5px;
}

.testi-person span {
    font-size: 11.5px;
    color: var(--muted);
}

.testi-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

    .testi-dots i {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--panel-border);
        cursor: pointer;
    }

        .testi-dots i.on {
            background: var(--lime);
            width: 22px;
            border-radius: 5px;
        }

/* ============ CSR ============ */
.csr-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 16px;
}

@media (max-width:900px) {
    .csr-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:560px) {
    .csr-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

.csr-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    color: #fff;
    transition: transform .25s;
}

    .csr-card:hover {
        transform: translateY(-6px);
    }

    .csr-card::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .92;
    }

    .csr-card b {
        position: relative;
        z-index: 1;
        font-size: 13px;
        line-height: 1.35;
    }

/* ============ Team ============ */
.team-toolbar {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.team-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 10px 16px;
    width: 100%;
    max-width: 360px;
}

    .team-search input {
        border: none;
        outline: none;
        background: transparent;
        font-size: 13.5px;
        width: 100%;
        color: var(--text);
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

@media (max-width:900px) {
    .team-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

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

.team-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    transition: opacity .2s, transform .2s;
}

    .team-card:hover {
        transform: translateY(-4px);
    }

.team-avatar {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Sora',sans-serif;
    font-weight: 800;
}

.team-card h4 {
    margin: 0 0 3px;
    font-size: 14px;
}

.team-card span {
    font-size: 11.5px;
    color: var(--muted);
}

.team-card.hide {
    display: none;
}

/* ============ Map ============ */
.map-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 22px;
    padding: 26px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    background: #8f9397;
}

    .map-card svg {
        width: 100%;
        max-width: 380px;
        display: block;
        margin: 0 auto;
    }

.gp-state {
    fill: var(--bg2);
    stroke: var(--panel-border);
    stroke-width: 1;
}

.gp-pin {
    cursor: pointer;
}

    .gp-pin circle.core {
        fill: var(--lime);
        stroke: #fff;
        stroke-width: 1.6;
    }

    .gp-pin circle.pulse {
        fill: none;
        stroke: var(--lime);
        stroke-width: 2;
        opacity: .55;
        animation: pulse 2.2s ease-out infinite;
    }

@keyframes pulse {
    0% {
        r: 5;
        opacity: .6;
    }

    100% {
        r: 15;
        opacity: 0;
    }
}

.gp-tooltip {
    position: absolute;
    pointer-events: none;
    background: var(--blue-dark);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 9px;
    border-radius: 7px;
    transform: translate(-50%,-135%);
    white-space: nowrap;
    z-index: 5;
    opacity: 0;
    transition: opacity .12s;
}

    .gp-tooltip.show {
        opacity: 1;
    }

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
    font-size: 12px;
    color: var(--muted);
}

    .map-legend span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .map-legend i {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--lime);
    }

/* ============ Tech stack ============ */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 16px;
}

@media (max-width:900px) {
    .tech-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:560px) {
    .tech-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

.tech-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    padding: 20px 10px;
    text-align: center;
    transition: transform .2s;
}

    .tech-card:hover {
        transform: translateY(-4px) scale(1.03);
    }

    .tech-card i {
        font-size: 26px;
        margin-bottom: 10px;
        display: block;
        color: var(--blue);
    }

    .tech-card span {
        font-size: 12px;
        font-weight: 600;
    }

/* ============ FAQ ============ */
.faq-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14.5px;
}

    .faq-q i {
        transition: transform .3s;
        color: var(--lime-dim);
    }

.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

    .faq-a p {
        margin: 0;
        padding: 0 22px 20px;
        color: var(--muted);
        font-size: 13.5px;
        line-height: 1.7;
    }

/* ============ CTA ============ */
.cta-band {
    background: linear-gradient(135deg,var(--blue-dark),#0e1e08 130%);
    border-radius: 26px;
    padding: 56px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .cta-band h2 {
        font-size: 32px;
        margin: 0 0 12px;
    }

    .cta-band p {
        opacity: .85;
        font-size: 15px;
        margin: 0 0 26px;
    }

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ Footer ============ */
footer {
    padding-top: 70px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--panel-border);
}

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

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

.foot-col h5 {
    font-size: 13px;
    margin: 0 0 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.foot-col p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.foot-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13.5px;
}

    .foot-col ul a:hover {
        color: var(--lime-dim);
    }

.foot-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

    .foot-social a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--bg2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
    }

.newsletter {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

    .newsletter input {
        flex: 1;
        border: 1px solid var(--panel-border);
        border-radius: 9px;
        padding: 10px 12px;
        font-size: 12.5px;
        background: var(--panel);
        color: var(--text);
        outline: none;
    }

    .newsletter button {
        background: var(--lime);
        border: none;
        border-radius: 9px;
        padding: 0 16px;
        font-weight: 700;
        cursor: pointer;
        color: #0e1e08;
    }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-size: 12px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 10px;
}

/* ============ Floating utils ============ */
.fab {
    position: fixed;
    bottom: 26px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4);
    z-index: 400;
    transition: transform .2s, opacity .2s;
}

#whatsapp {
    right: 26px;
    background: #25D366;
    font-size: 22px;
}

#backtotop {
    right: 26px;
    bottom: 88px;
    background: var(--blue-dark);
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
}

    #backtotop.show {
        opacity: 1;
        pointer-events: auto;
    }

.fab:hover {
    transform: translateY(-3px);
}
