/* ============================================================
   FLUENT DISTRIBUTORS 
   ============================================================ */

/* ── Font Family ── */
@font-face {
    font-family: 'dm-sans';
    src: url('../fonts/dm-sans.ttf') format('truetype');
}

@font-face {
    font-family: 'dm-mono';
    src: url('../fonts/dm-mono.ttf') format('truetype');
}

@font-face {
    font-family: 'barlow-condensed';
    src: url('../fonts/barlow-condensed.ttf') format('truetype');
}
/* ── Font Family ── */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

:root {
    --font-body: dm-sans;
    --font-tag: dm-mono;
    --font-head: barlow-condensed;
    --bg: #0D1117;
    --bg2: #141B25;
    --bg3: #1C2636;
    --text: #1C2B3A;
    --teal: #00D4D8;
    --teal2: #00A8AB;
    --teal3: #00F5FF;
    --amber: #F59E0B;
    --white: #FFFFFF;
    --muted: #8892A4;
    --border: rgba(255,255,255,0.08);
    --glow: 0 0 40px rgba(0,212,216,0.25);
    --max: 1200px;
    --r: 12px;
}

body {
    font-family: var(--font-body);
    background: #0D1117;
    color: #E2E8F0;
    line-height: 1.65;
    font-size: 15px;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none
}

/* ── UTILITIES ── */
.content-wrapper {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px
}

.tag {
    display: inline-block;
    font-family: var(--font-tag);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    border: 1px solid rgba(0,212,216,0.35);
    background: rgba(0,212,216,0.06);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2.2rem,4vw,3.5rem);
    line-height: 1.0;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

    .section-title .grad {
        background: linear-gradient(135deg,#00F5FF,#00D4D8,#7CFFCB);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.section-subtitle {
    font-size: .95rem;
    color: var(--muted);
    max-width: 580px;
    margin-bottom: 48px;
    line-height: 1.7
}

.body-text {
    color: var(--muted);
    line-height: 1.75
}

/* ── BUTTONS ── */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: all .25s ease;
}

.cta-button-primary {
    background: linear-gradient(135deg,var(--teal),var(--teal2));
    color: #0D1117
}

    .cta-button-primary:hover {
        background: linear-gradient(135deg,var(--teal3),var(--teal));
        transform: translateY(-2px);
        box-shadow: var(--glow)
    }

.cta-button-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3)
}

    .cta-button-outline:hover {
        border-color: var(--teal);
        color: var(--teal);
        transform: translateY(-2px)
    }

/* ── NAV ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0px;
}

.nav-logo img {
    width: 125px;
    filter: brightness(1.1)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px
}

    .nav-links a {
        padding: 8px 14px;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text);
        transition: .2s ease
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--teal2);
        }

    .nav-links .nav-cta {
        background: linear-gradient(135deg,var(--teal),var(--teal2));
        color: var(--white) !important;
        font-weight: 500;
        padding: 9px 22px;
        margin-left: 8px
    }

        .nav-links .nav-cta:hover {
            background: linear-gradient(135deg,var(--teal2),var(--teal));
            box-shadow: var(--glow);
            transform: translateY(-1px)
        }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none
}

    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: var(--teal2);
        border-radius: 2px;
        transition: .25s ease
    }

/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(135deg,#0D1117 0%,#0A2020 50%,#0D1B2A 100%);
    padding: 40px 0px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    margin-top: 5rem;
}

    .page-hero .content-wrapper {
        position: relative
    }

    .page-hero h1 {
        font-family: var(--font-head);
        font-weight: 900;
        font-size: clamp(2.4rem,5vw,4rem);
        text-transform: uppercase;
        letter-spacing: -1px;
        margin-bottom: 12px;
        background: linear-gradient(135deg, #00F5FF, #00D4D8, #7CFFCB);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .page-hero p {
        font-size: 1rem;
        color: var(--white);
        max-width: 560px
    }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-tag);
    font-size: .68rem;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
}

    .breadcrumb a {
        color: var(--white)
    }

        .breadcrumb a:hover {
            color: var(--teal)
        }

.about-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/bg-about.jpg");
    background-position: center;
    background-size: cover;
}

.solution-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/bg-solution.jpg");
    background-position: center;
    background-size: cover;
}

.industries-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/bg-industries.jpg");
    background-position: center;
    background-size: cover;
}

.partners-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/bg-partners.jpg");
    background-position: center;
    background-size: cover;
}

.contact-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/bg-contact.jpg");
    background-position: center;
    background-size: cover;
}

.contact-report-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/water-bg.jpg");
    background-position: center;
    background-size: cover;
}

.sitemap-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/bg-sitemap.jpg");
    background-position: center;
    background-size: cover;
}

.terms-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/bg-terms.jpg");
    background-position: center;
    background-size: cover;
}

/* ── HERO SLIDER ── */
.hero-banner {
    position: relative;
    height: 680px;
    overflow: hidden;
    background: #060A10
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity .8s ease
}

    .slide.active {
        opacity: 1;
        z-index: 2
    }

    .slide.prev {
        opacity: 0;
        z-index: 1
    }

.slide-bg {
    position: absolute;
    inset: 0
}

.slide-1 .slide-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/slider-01.jpg");
    background-position: center;
    background-size: cover;
}

.slide-2 .slide-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/slider-02.jpg");
    background-position: center;
    background-size: cover;
}

.slide-3 .slide-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/slider-03.jpg");
    background-position: center;
    background-size: cover;
}

.slide-4 .slide-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/slider-04.jpg");
    background-position: center;
    background-size: cover;
}

.slide-5 .slide-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/slider-05.jpg");
    background-position: center;
    background-size: cover;
}

.slide-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,212,216,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(0,212,216,0.03) 1px,transparent 1px);
    background-size: 60px 60px
}

.slide-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

    .slide-geo svg {
        position: absolute;
        opacity: .4
    }

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 640px
}

.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-tag);
    font-size: .68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 24px
}

    .slide-eyebrow::before {
        content: '';
        width: 28px;
        height: 1px;
        background: var(--teal)
    }

.slide-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(3rem,6vw,5.2rem);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 20px
}

    .slide-title .accent {
        display: block;
        background: linear-gradient(90deg,#00F5FF,#00D4D8,#7CFFCB);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

.slide-desc {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.slider-controls {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px
}

.slider-dots {
    display: flex;
    gap: 8px
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all .3s ease
}

    .dot.active {
        width: 28px;
        background: var(--teal)
    }

.arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255,255,255,.6);
    transition: all .25s ease
}

    .arrow-btn:hover {
        background: rgba(0,212,216,0.15);
        border-color: var(--teal);
        color: var(--teal)
    }

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

.slider-arrows {
    display: flex;
    gap: 8px
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg,var(--teal),#00F5FF);
    z-index: 10
}

@keyframes progress {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

.slide.active .slide-content {
    animation: slide-up .7s ease forwards
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

/* Slide card visual */
.slide-visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2
}

.slide-card-stack {
    position: relative;
    width: 340px;
    height: 400px
}

.data-card {
    position: absolute;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 24px
}

    .data-card.main {
        left: 0;
        top: 40px;
        right: 0;
        padding: 28px
    }

    .data-card.accent {
        right: -20px;
        bottom: 20px;
        background: rgba(0,212,216,0.08);
        border-color: rgba(0,212,216,0.2);
        width: 190px
    }

    .data-card.accent-logo {
        right: 60%;
        bottom: 15%;
        background: rgba(0, 212, 216, 0.08);
        border-color: rgba(0, 212, 216, 0.2);
        width: 50%;
        padding: 5px;
    }

.card-label-logo img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #fff;
}

.card-label {
    font-family: var(--font-tag);
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00F5FF, #00D4D8, #7CFFCB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px
}

.card-value {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1
}

.card-sub {
    font-size: .82rem;
    color: var(--muted);
    margin-top: 4px
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px
}

.card-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    color: rgba(255,255,255,.7)
}

    .card-list-item::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--teal);
        flex-shrink: 0
    }

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0,212,216,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

    .card-icon svg {
        width: 22px;
        height: 22px;
        color: var(--teal)
    }

.float {
    animation: float 4s ease-in-out infinite
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    overflow-x: auto
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0
}

    .trust-item svg {
        width: 16px;
        height: 16px;
        color: var(--teal)
    }

    .trust-item span {
        font-size: .78rem;
        font-weight: 500;
        color: var(--muted);
        letter-spacing: .3px
    }

.trust-sep {
    width: 1px;
    height: 20px;
    background: var(--border);
    flex-shrink: 0
}

/* ── OVERVIEW ── */
.overview {
    padding: 120px 0;
    position: relative;
    overflow: hidden
}

    .overview::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(0,212,216,0.07) 0%,transparent 70%);
        pointer-events: none
    }

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px
}

.stat-block {
    padding: 24px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    position: relative;
    overflow: hidden
}

    .stat-block::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg,var(--teal),transparent)
    }

.stat-num {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--teal);
    line-height: 1
}

.stat-label {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 6px;
    font-weight: 500
}

.overview-visual {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .overview-visual::before {
        content: '';
        position: absolute;
        inset: 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        animation: bgSlider 30s infinite;
    }

@keyframes bgSlider {
    0% {
        background-image: url("../images/general/overview-01.jpg");
    }

    20% {
        background-image: url("../images/general/overview-02.jpg");
    }

    40% {
        background-image: url("../images/general/overview-03.jpg");
    }

    60% {
        background-image: url("../images/general/overview-04.jpg");
    }

    80% {
        background-image: url("../images/general/overview-05.jpg");
    }

    100% {
        background-image: url("../images/general/overview-01.jpg");
    }
}

.overview-badge {
    position: absolute;
    background: rgba(0,212,216,0.1);
    border: 1px solid rgba(0,212,216,0.25);
    border-radius: 10px;
    padding: 16px 20px;
    backdrop-filter: blur(10px)
}

    .overview-badge.top-right {
        top: 24px;
        right: 24px
    }

    .overview-badge.bottom-left {
        bottom: 24px;
        left: 24px
    }

.badge-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--teal)
}

.badge-txt {
    font-size: .72rem;
    color: var(--white);
    font-weight: 500
}

.img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.2);
    padding: 60px;
    text-align: center
}

    .img-placeholder svg {
        width: 56px;
        height: 56px
    }

    .img-placeholder span {
        font-size: .78rem
    }

/* ── SOLUTIONS ── */
.solutions-section {
    padding: 120px 0;
    background: var(--bg2);
    position: relative;
    overflow: hidden
}

    .solutions-section::before {
        content: '';
        position: absolute;
        top: -2px;
        left: 0;
        right: 0;
        height: 80px;
        background: var(--bg);
        clip-path: polygon(0 0,100% 0,100% 0,0 100%)
    }

    .solutions-section::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 80px;
        background: var(--bg);
        clip-path: polygon(0 100%,100% 0,100% 100%,0 100%)
    }

.solutions-header {
    text-align: center;
    margin-bottom: 72px
}

.sol-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.sol-card {
    background: var(--bg3);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: background .3s;
    cursor: default
}

    .sol-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,var(--teal),transparent);
        opacity: 0;
        transition: opacity .3s
    }

    .sol-card:hover {
        background: #1E2A3A
    }

        .sol-card:hover::before {
            opacity: 1
        }

.sol-num {
    font-family: var(--font-tag);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--muted);
    margin-bottom: 20px
}

.sol-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0,212,216,0.08);
    border: 1px solid rgba(0,212,216,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: .3s
}

.sol-img {
    text-align: center;
}

    .sol-img img {
        width: 65%;
        display: inline;
    }

.sol-card:hover .sol-icon {
    background: rgba(0,212,216,0.15);
    box-shadow: var(--glow)
}

.sol-icon svg {
    width: 28px;
    height: 28px;
    color: var(--teal)
}

.sol-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: -.5px;
    color: var(--white);
    margin-bottom: 12px;
    text-align: center;
}

.sol-desc {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 24px
}

.sol-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.sol-chip {
    font-size: .7rem;
    font-weight: 500;
    color: rgba(0,212,216,.7);
    background: rgba(0,212,216,0.06);
    border: 1px solid rgba(0,212,216,0.12);
    border-radius: 4px;
    padding: 3px 10px
}

.sol-arrow {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,212,216,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-8px);
    transition: all .3s
}

.sol-card:hover .sol-arrow {
    opacity: 1;
    transform: translateX(0)
}

.sol-arrow svg {
    width: 16px;
    height: 16px;
    color: var(--teal)
}

/* ── INDUSTRIES ── */
.industries {
    padding: 120px 0;
    position: relative;
}

.industries-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
    gap: 32px;
}

.industries-header-left .tag {
    margin-bottom: 12px
}

.industries-header-right {
    max-width: 360px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
    flex-shrink: 0;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 2px;
}

.ind-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 16px;
    text-align: center;
    transition: all .3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

    .ind-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(0,212,216,0.08),transparent);
        opacity: 0;
        transition: opacity .3s;
    }

    .ind-card:hover {
        border-color: rgba(0,212,216,0.3);
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,.4),var(--glow);
    }

        .ind-card:hover::after {
            opacity: 1
        }

.ind-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all .3s;
}

    .ind-icon img {
        padding: 5px;
        filter: grayscale(100%);
    }

.ind-card:hover .ind-icon {
    background: rgba(0,212,216,0.12);
    border-color: rgba(0,212,216,0.25);
}

.ind-icon svg {
    width: 26px;
    height: 26px;
    color: var(--muted);
    transition: color .3s
}

.ind-card:hover .ind-icon svg {
    color: var(--teal)
}

.ind-card:hover .ind-icon img {
    filter: grayscale(0);
}

.ind-name {
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color .3s;
    color: var(--teal);
    color: var(--white)
}

.ind-card:hover .ind-name {
    color: var(--teal);
}

/* Banner under industries */
.ind-banner {
    margin-top: 56px;
    background: linear-gradient(135deg,rgba(0,212,216,0.08) 0%,rgba(0,168,171,0.04) 100%);
    border: 1px solid rgba(0,212,216,0.15);
    border-radius: 20px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

    .ind-banner::before {
        content: '';
        position: absolute;
        right: -80px;
        top: -80px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(0,212,216,0.08) 0%,transparent 70%);
    }

.ind-banner-text h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
    letter-spacing: -.5px;
}

.ind-banner-text p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.65
}

.ind-banner h3 {
    font-weight: 500;
    font-family: var(--font-head);
    color: var(--teal);
    margin-bottom: 10px;
    font-size: 1.8rem;
}
/* ── PARTNERS BAR ── */
.partners-bar {
    padding: 80px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.partners-label {
    text-align: center;
    font-family: var(--font-tag);
    font-size: .65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 40px
}

.partner-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.partner-logo {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 5px;
    text-align: center;
    transition: all .3s;
    cursor: default
}

    .partner-logo img {
        width: 185px;
        border: 3px solid #fff;
        border-radius: 5px;
    }

    .partner-logo:hover {
        background: rgba(0,212,216,0.06);
        border-color: rgba(0,212,216,0.2);
        transform: translateY(-3px)
    }

.partner-logo-name {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    transition: color .3s
}

.partner-logo:hover .partner-logo-name {
    color: var(--teal)
}

.partner-logo-sub {
    font-size: .68rem;
    color: rgba(255,255,255,.2);
    margin-top: 3px
}

/* ── WHY US ── */
.why-us {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

    .why-us::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 50%;
        background: var(--bg2);
        clip-path: polygon(0 0,90% 0,75% 100%,0 100%);
    }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.why-left {
}

    .why-left .tag {
        margin-bottom: 16px
    }

.why-pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
}

.why-pillar {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    transition: all .3s;
}

    .why-pillar:last-child {
        border-bottom: none
    }

    .why-pillar:hover .wp-icon {
        box-shadow: var(--glow)
    }

.wp-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0,212,216,0.08);
    border: 1px solid rgba(0,212,216,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: box-shadow .3s;
}

    .wp-icon svg {
        width: 22px;
        height: 22px;
        color: var(--teal)
    }

.wp-text h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--white);
    margin-bottom: 4px;
}

.wp-text p {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.6
}

.why-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-cta-card {
    background: linear-gradient(135deg,rgba(0,212,216,0.1),rgba(0,212,216,0.03));
    border: 1px solid rgba(0,212,216,0.2);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

    .why-cta-card::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(0,212,216,0.12) 0%,transparent 70%);
    }

    .why-cta-card h3 {
        font-family: var(--font-head);
        font-size: 2.2rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: -.5px;
        color: var(--white);
        margin-bottom: 16px;
    }

    .why-cta-card p {
        color: var(--muted);
        font-size: .9rem;
        line-height: 1.7;
        margin-bottom: 32px
    }

.why-contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

    .why-contact-detail svg {
        width: 18px;
        height: 18px;
        color: var(--teal);
        flex-shrink: 0
    }

    .why-contact-detail a, .why-contact-detail span {
        font-size: .88rem;
        color: rgba(255,255,255,.7);
    }

        .why-contact-detail a:hover {
            color: var(--teal)
        }

/* ── CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg,rgba(0,212,216,0.12),rgba(0,168,171,0.06));
    border-top: 1px solid rgba(0,212,216,0.15);
    border-bottom: 1px solid rgba(0,212,216,0.15);
    padding: 80px 0;
    text-align: center
}

.cta-section-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/general/water-bg.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.cta-industry-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/general/industry-cta.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.cta-partners-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/general/partners-cta.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.cta-section h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem,4vw,3rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px
}

.cta-section p {
    background: linear-gradient(135deg, #00F5FF, #00D4D8, #7CFFCB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px
}

/* ── CONTACT ── */
.contact-section {
    padding: 80px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border)
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 80px;
    align-items: start;
}

.contact-grid-report {
    grid-template-columns: 1fr;
    gap: 0;
}

.grid-scroll {
    overflow-x: auto;
    margin: 2rem 0;
}

.grid-table {
    width: 100%;
}

    .grid-table tr th, .grid-table tr td {
        padding: 5px;
        font-weight: 500;
        font-size: 0.85rem;
        text-align: left;
        line-height: 20px;
    }

    .grid-table tr th {
        background-color: var(--teal);
        color: #000;
    }

.grid-pager td span, .grid-pager td a:hover {
    color: var(--teal);
    transition:all 0.5s;
}

.autocomplete_completionListElement {
    font-size: 14px;
    visibility: hidden;
    background-color: inherit;
    color: #994d00;
    border: 1px solid #007FFF;
    cursor: pointer;
    text-align: left;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 3px;
    cursor: pointer;
    list-style: none;
    z-index: 99;
}

.autocomplete_listItem, .autocomplete_highlightedListItem {
    font-size: 14px;
    background-color: #333;
    border: 1px solid #007FFF;
    color: #fff;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 3px;
    cursor: pointer;
    list-style: none;
    transition: all 0.5s;
}

.autocomplete_highlightedListItem {
    background-color: #007FFF;
    border: 1px solid #007FFF;
}

    .autocomplete_highlightedListItem:hover {
        background-color: #00C9FF;
        color: #000;
    }

.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
}

    .contact-form h2 {
        font-family: var(--font-head);
        font-size: 2rem;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--white);
        margin-bottom: 8px
    }

    .contact-form > p {
        color: var(--muted);
        margin-bottom: 32px;
        font-size: .88rem
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.form-row-report {
    grid-template-columns: repeat(4,1fr);
}

.form-row.single {
    grid-template-columns: 1fr
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

    .form-group label {
        font-size: .68rem;
        font-weight: 600;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .8px
    }

    .form-group input, .form-group select, .form-group textarea, .form-captcha {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.09);
        border-radius: 8px;
        padding: 12px 16px;
        font-family: var(--font-body);
        font-size: .88rem;
        color: var(--white);
        transition: .2s
    }

.form-captcha {
    padding: 9px 16px;
    color: var(--teal);
    letter-spacing: 2px;
    user-select: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: rgba(0,212,216,0.4);
    box-shadow: 0 0 0 3px rgba(0,212,216,0.08)
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255,255,255,.2)
}

.form-group select {
    color: rgba(255,255,255,.6)
}

    .form-group select option {
        background: #1C2636;
        color: var(--white)
    }

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg,var(--teal),var(--teal2));
    color: #0D1117;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
    font-family: var(--font-head);
    letter-spacing: .3px;
    margin-top: 8px
}

    .submit-btn:hover {
        background: linear-gradient(135deg,var(--teal3),var(--teal));
        box-shadow: var(--glow)
    }

.submit-btn-report {
    width: 100% !important;
    padding: 15px !important;
    background: linear-gradient(135deg,var(--teal),var(--teal2)) !important;
    color: #0D1117 !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: .25s !important;
    font-family: var(--font-head) !important;
    letter-spacing: .3px !important;
    margin-top: 8px !important;
}

    .submit-btn-report:hover {
        background: linear-gradient(135deg,var(--teal3),var(--teal));
        box-shadow: var(--glow)
    }


.success-text {
    background: linear-gradient(135deg, #00F5FF, #00D4D8, #7CFFCB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0px;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 25px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px
}

.detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(0,212,216,0.08);
    border: 1px solid rgba(0,212,216,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

    .detail-icon svg {
        width: 22px;
        height: 22px;
        color: var(--teal)
    }

.detail-text strong {
    display: block;
    font-family: var(--font-tag);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--muted);
    margin-bottom: 4px
}

.detail-text a, .detail-text p {
    color: rgba(255,255,255,.7);
    font-size: .9rem
}

    .detail-text a:hover {
        color: var(--teal)
    }

.map-wrap {
    margin-top: 24px;
    border-radius: var(--r);
    overflow: hidden;
    height: 220px;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--muted);
    font-size: .85rem
}

    .map-wrap svg {
        width: 36px;
        height: 36px;
        color: var(--teal)
    }

/* ── FOOTER ── */
.site-footer {
    background: #070C12;
    border-top: 1px solid var(--border);
    padding: 64px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px
}

.footer-brand img {
    width: 125px;
    margin-bottom: 16px;
    filter: brightness(1.15)
}

.footer-brand p {
    font-size: .82rem;
    color: rgba(255,255,255,.3);
    line-height: 1.7;
    max-width: 260px
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-col a {
    font-size: .82rem;
    color: rgba(255,255,255,.3);
    transition: color .2s
}

    .footer-col a:hover {
        color: var(--teal)
    }

    .footer-col a i {
        color: var(--teal);
        margin-right: 5px;
    }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px
}

    .footer-contact-item svg {
        width: 14px;
        height: 14px;
        color: var(--teal);
        flex-shrink: 0
    }

    .footer-contact-item a, .footer-contact-item span {
        font-size: .8rem;
        color: rgba(255,255,255,.3)
    }

        .footer-contact-item a:hover {
            color: var(--teal)
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

    .footer-bottom span {
        font-size: .75rem;
        color: rgba(255,255,255,.2)
    }

    .footer-bottom a {
        text-decoration: underline;
        transition: all 0.5s;
    }

        .footer-bottom a:hover {
            color: var(--teal)
        }

.footer-legal {
    display: flex;
    gap: 20px
}

    .footer-legal a {
        font-size: .75rem;
        color: rgba(255,255,255,.2);
        transition: color .2s
    }

        .footer-legal a:hover {
            color: var(--teal)
        }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .overview-grid, .why-grid {
        grid-template-columns: 1fr
    }

    .sol-grid {
        grid-template-columns: 1fr
    }

    .ind-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .why-us::before {
        display: none
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(13,17,23,.98);
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--border)
    }

        .nav-links li a {
            color: var(--white);
        }

        .nav-links.open {
            display: flex
        }

    .nav-toggle {
        display: flex
    }

    .hero-banner {
        height: auto;
        min-height: 500px;
        padding: 40px 0;
        margin-top: 1rem;
    }

    .slide-visual {
        display: none
    }

    .ind-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .ind-banner {
        flex-direction: column;
        padding: 32px 28px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .industries-header {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:480px) {
    .ind-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat-row {
        grid-template-columns: 1fr 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }

    .footer-legal {
        justify-content: center
    }
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 36px;
    overflow: visible;
}

.trust-item {
    white-space: normal;
}
/* ── Button fixes (subpages use .primary / .outline / .navy / .teal-outline) ── */
.cta-button.primary {
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    color: #0D1117;
}

    .cta-button.primary:hover {
        background: linear-gradient(135deg, var(--teal3), var(--teal));
        transform: translateY(-2px);
        box-shadow: var(--glow);
    }

.cta-button.outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

    .cta-button.outline:hover {
        border-color: var(--teal);
        color: var(--teal);
        transform: translateY(-2px);
    }

.cta-button.navy {
    background: var(--bg2);
    color: var(--white);
    border: 1px solid var(--border);
}

    .cta-button.navy:hover {
        background: var(--bg3);
        border-color: var(--teal);
        transform: translateY(-2px);
    }

.cta-button.teal-outline {
    background: transparent;
    color: var(--teal);
    border: 1.5px solid var(--teal);
}

    .cta-button.teal-outline:hover {
        background: var(--teal);
        color: #0D1117;
        transform: translateY(-2px);
    }

/* ── SUBPAGE: About Us ── */
.about-overview {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 16px;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.75;
}

.about-img {
    border-radius: 16px;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url("../images/general/about.jpg");
    background-position: center;
    background-size: cover;
}

    .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.vision-mission {
    padding: 0 0 80px;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.vm-card {
    padding: 36px;
    border-radius: 16px;
    border-left: 3px solid var(--teal);
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

    .vm-card h3 {
        font-family: var(--font-head);
        font-size: 1.3rem;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--white);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .vm-card h3 svg {
            width: 20px;
            height: 20px;
            color: var(--teal);
            flex-shrink: 0;
        }

    .vm-card p {
        color: var(--muted);
        line-height: 1.75;
        font-size: .9rem;
    }

.our-values {
    padding: 0 0 80px;
    background: var(--bg2);
}

    .our-values .content-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.value-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 18px;
    text-align: center;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--teal), transparent);
        opacity: 0;
        transition: opacity .3s;
    }

    .value-card:hover {
        border-color: rgba(0,212,216,0.25);
        transform: translateY(-4px);
    }

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

.v-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,212,216,0.08);
    border: 1px solid rgba(0,212,216,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

    .v-icon svg {
        width: 24px;
        height: 24px;
        color: var(--teal);
    }

.value-card h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--white);
    margin-bottom: 8px;
}

.value-card p {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.55;
}

.leadership-section {
    padding: 80px 0;
}

.leader-card {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    max-width: 780px;
    margin: 0 auto;
}

.leader-photo {
    width: 160px;
    height: 190px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal2), var(--bg3));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .leader-photo svg {
        width: 56px;
        height: 56px;
        color: rgba(255,255,255,.2);
    }

.leader-info h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}

.leader-title {
    font-family: var(--font-tag);
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.leader-info p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 10px;
}

/* pillars strip (about page) */
.pillars-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.pillar-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px 16px;
    text-align: center;
    transition: all .3s;
}

    .pillar-card:hover {
        border-color: rgba(0,212,216,0.25);
        transform: translateY(-3px);
    }

.pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,212,216,0.08);
    border: 1px solid rgba(0,212,216,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

    .pillar-icon svg {
        width: 24px;
        height: 24px;
        color: var(--teal);
    }

.pillar-card p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ── SUBPAGE: Solutions ── */
.solution-section {
    padding: 80px 0;
}

    .solution-section.alt {
        background: var(--bg2);
    }

.sol-layout-A, .sol-layout-B, .sol-layout-D {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

    .sol-layout-B .sol-image {
        order: -1;
    }

.sol-layout-C { /* full width layout */
}

    .sol-layout-C .sol-image {
        margin-bottom: 40px;
    }

    .sol-layout-C .sol-two-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
    }

.sol-image {
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .sol-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.sol-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.2);
    padding: 40px;
    text-align: center;
}

    .sol-image-placeholder svg {
        width: 48px;
        height: 48px;
    }

    .sol-image-placeholder span {
        font-size: .75rem;
    }

.sol-tag {
    display: inline-block;
    font-family: var(--font-tag);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    border: 1px solid rgba(0,212,216,0.3);
    background: rgba(0,212,216,0.05);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.sol-text h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.5px;
    color: var(--white);
    margin-bottom: 12px;
}

.sol-text p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.sol-apps h4 {
    font-family: var(--font-tag);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.sol-apps ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sol-apps li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: rgba(255,255,255,.65);
}

    .sol-apps li::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--teal);
        flex-shrink: 0;
    }

.sol-image-01 {
    background-image: url("../images/general/solution-01.jpg");
    background-position: center;
    background-size: cover;
}

.sol-image-02 {
    background-image: url("../images/general/solution-02.jpg");
    background-position: center;
    background-size: cover;
}

.sol-image-03 {
    background-image: url("../images/general/solution-03.jpg");
    background-position: center;
    background-size: cover;
}

.sol-image-04 {
    background-image: url("../images/general/solution-04.jpg");
    background-position: center;
    background-size: cover;
}
/* ── SUBPAGE: Industries ── */
.industries-section {
    padding: 80px 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.industry-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 18px;
    text-align: center;
    transition: all .3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

    .industry-card:hover {
        border-color: rgba(0,212,216,0.3);
        transform: translateY(-5px);
        box-shadow: 0 16px 32px rgba(0,0,0,.4), var(--glow);
    }

.industry-icon {
    width: 52px;
    height: 52px;
    background: rgba(0,212,216,0.06);
    border: 1px solid rgba(0,212,216,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all .3s;
}

.industry-card:hover .industry-icon {
    background: rgba(0,212,216,0.14);
    border-color: rgba(0,212,216,0.28);
}

.industry-card:hover .ind-icon img {
    filter: grayscale(0);
}

.industry-icon svg {
    width: 26px;
    height: 26px;
    color: var(--teal);
}

.industry-card h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: rgba(255,255,255,.7);
    line-height: 1.35;
    transition: color .3s;
}

.industry-card:hover h3 {
    color: var(--white);
}

.industries-closing {
    background: linear-gradient(135deg, rgba(0,212,216,0.08), rgba(0,168,171,0.04));
    border: 1px solid rgba(0,212,216,0.15);
    border-radius: 16px;
    padding: 40px 48px;
    text-align: center;
}

    .industries-closing p {
        font-size: 1rem;
        color: var(--muted);
        line-height: 1.75;
        max-width: 680px;
        margin: 0 auto;
    }

/* ── SUBPAGE: Partners ── */
.partners-page-section {
    padding: 80px 0;
}

.partners-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.partner-page-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: all .3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

    .partner-page-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--teal), transparent);
        opacity: 0;
        transition: opacity .3s;
    }

    .partner-page-card:hover {
        border-color: rgba(0,212,216,0.25);
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,.4), var(--glow);
    }

        .partner-page-card:hover::before {
            opacity: 1;
        }

.partner-logo-box {
    background: rgba(0,212,216,0.06);
    border: 1px solid rgba(0,212,216,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all .3s;
}

    .partner-logo-box img {
        border: 3px solid #fff;
        border-radius: 5px;
    }

.partner-page-card:hover .partner-logo-box {
    background: rgba(0,212,216,0.12);
    border-color: rgba(0,212,216,0.3);
}

.partner-logo-box svg {
    width: 36px;
    height: 36px;
    color: var(--teal);
}

.partner-page-card h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--white);
    margin-bottom: 6px;
}

.partner-origin {
    font-family: var(--font-tag);
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}

.partner-page-card p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ── Page image sections ── */
.page-image-section {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg2);
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 40px;
}

    .page-image-section img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
    }

.page-img-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.2);
    padding: 32px;
    text-align: center;
}

    .page-img-prompt svg {
        width: 40px;
        height: 40px;
        color: rgba(0,212,216,.3);
    }

    .page-img-prompt strong {
        font-size: .72rem;
        color: rgba(0,212,216,.5);
        font-family: var(--font-tag);
        letter-spacing: 1px;
    }

    .page-img-prompt span {
        font-size: .72rem;
    }

/* ── RESPONSIVE: subpages ── */
@media(max-width:1024px) {
    .about-grid, .sol-layout-A, .sol-layout-B, .sol-layout-D, .vm-grid {
        grid-template-columns: 1fr;
    }

        .sol-layout-B .sol-image {
            order: 0;
        }

    .sol-layout-C .sol-two-col {
        grid-template-columns: 1fr;
    }

    .values-grid, .pillars-strip {
        grid-template-columns: repeat(3,1fr);
    }

    .partners-page-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .industry-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {
    .values-grid, .pillars-strip {
        grid-template-columns: repeat(2,1fr);
    }

    .leader-card {
        flex-direction: column;
    }

    .industries-closing {
        padding: 28px 24px;
    }

    .trust-sep {
        display: none;
    }
}

@media(max-width:480px) {
    .values-grid, .pillars-strip {
        grid-template-columns: repeat(2,1fr);
    }

    .partners-page-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

/* ── Contact details aside (contact-us subpage) ── */
.contact-details h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 28px;
}

/* ── Field error ── */
.field-error {
    display: none;
    font-size: .72rem;
    color: #F87171;
    margin-top: 4px;
}

    .field-error.visible {
        display: block;
    }

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: rgba(239,68,68,0.5) !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.08);
}

/* ── Sitemap ── */
.sitemap-section {
    padding: 80px 0;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 16px;
}

.sitemap-col h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,212,216,0.2);
}

.sitemap-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sitemap-col a {
    font-size: .88rem;
    color: rgba(255,255,255,.45);
    transition: color .2s;
}

    .sitemap-col a:hover {
        color: var(--teal);
    }

/* ── Terms ── */
.terms-section {
    padding: 80px 0;
}

.terms-content {
    max-width: 800px;
}

    .terms-content .effective {
        font-family: var(--font-tag);
        font-size: .68rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 32px;
    }

    .terms-content h2 {
        font-family: var(--font-head);
        font-size: 1.2rem;
        font-weight: 500;
        letter-spacing: .3px;
        color: var(--white);
        margin: 32px 0 10px;
    }

        .terms-content h2:first-of-type {
            margin-top: 0;
        }

    .terms-content p,
    .terms-content li {
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 8px;
        font-size: .9rem;
    }

    .terms-content ul {
        padding-left: 20px;
        list-style: disc;
        margin-bottom: 10px;
    }

        .terms-content ul li {
            list-style: disc;
        }

    .terms-content a {
        color: var(--teal);
    }

        .terms-content a:hover {
            text-decoration: underline;
        }

/* ── Section-title span (old v1 compat — some pages use <span> not .grad) ── */
.section-title span {
    background: linear-gradient(135deg, #00F5FF, #00D4D8, #7CFFCB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Responsive sitemap / terms ── */
@media(max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .terms-content {
        max-width: 100%;
    }
}

/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-links {
        gap: 30px;
    }
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
    .nav-logo img {
        width: 100px;
    }

    .nav-links {
        gap: 25px;
    }

        .nav-links a {
            padding: 0px;
            font-size: 0.8rem;
        }
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
    .nav-logo img {
        width: 100px;
    }

    .slide-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .overview {
        padding: 40px 0;
    }

    .section-title {
        line-height: 1.1;
    }

    .cta-button {
        padding: 10px 20px;
    }

    .slider-controls {
        bottom: 25px;
    }

    .slide-desc {
        margin-bottom: 20px;
    }

    .overview-grid {
        gap: 40px;
    }

    .solutions-header, .partners-label {
        margin-bottom: 30px;
    }

    .industries-header {
        margin-bottom: 35px;
        gap: 15px;
    }

    .ind-banner h3 {
        font-size: 1.5rem;
    }

    .partners-bar {
        padding: 40px 0;
    }

    .partner-logo {
        padding: 5px;
        min-width: initial;
    }

    .why-us {
        padding: 40px 0;
    }

    .why-pillars {
        margin-top: 20px;
    }

    .why-grid {
        gap: 40px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .site-footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        gap: 25px;
        padding-bottom: 30px;
    }

    .footer-bottom {
        padding: 10px 32px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .our-values {
        padding: 0 0 40px;
    }

    .solution-section, .industries-section, .partners-page-section {
        padding: 40px 0;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-details h3 {
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .partner-logo img {
        width: 135px;
    }
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/
