/*
==========================================================
ZiWiLai AI Enterprise Website
style.css
Version : 1.0.0
Author  : ZiWiLai AI
==========================================================
*/

/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Inter", "Noto Sans Thai", "Noto Sans SC", sans-serif;
    background: #030712;
    color: #F8FAFC;
    overflow-x: hidden;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================================
   ROOT
========================================================== */

:root {
    --primary: #0F5EFF;
    --secondary: #00D9FF;
    --dark: #030712;
    --surface: #111827;
    --surface2: #1F2937;
    --border: #334155;
    --text: #F8FAFC;
    --text-light: #CBD5E1;
    --radius: 18px;
    --shadow: 0 15px 40px rgba(0,0,0,.35);
    --transition: .35s;
    --container: 1280px;
}

/* ==========================================================
   CONTAINER
========================================================== */

.container {
    width: min(92%,var(--container));
    margin: auto;
}

/* ==========================================================
   HEADER
========================================================== */

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    backdrop-filter: blur(16px);
    background: rgba(3,7,18,.65);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: .4s;
}

nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================================
   LOGO
========================================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: .5px;
}

    .logo img {
        width: 42px;
    }

/* ==========================================================
   MENU
========================================================== */

nav ul {
    display: flex;
    gap: 38px;
}

    nav ul li a {
        color: #CBD5E1;
        font-weight: 500;
        transition: .3s;
    }

        nav ul li a:hover {
            color: #00D9FF;
        }

/* ==========================================================
   LANGUAGE
========================================================== */

.language {
    display: flex;
    gap: 10px;
}

    .language button {
        padding: 9px 18px;
        border-radius: 30px;
        background: transparent;
        border: 1px solid rgba(255,255,255,.12);
        color: white;
        transition: .35s;
    }

        .language button:hover {
            background: #0F5EFF;
        }

/* ==========================================================
   HERO
========================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    /* Background */

    .hero::before {
        content: "";
        position: absolute;
        width: 850px;
        height: 850px;
        border-radius: 50%;
        background: radial-gradient( rgba(15,94,255,.22), transparent 70% );
        top: -280px;
        right: -250px;
        filter: blur(30px);
    }

    .hero::after {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient( rgba(0,217,255,.14), transparent 70% );
        left: -250px;
        bottom: -260px;
        filter: blur(45px);
    }

/* ==========================================================
   HERO GRID
========================================================== */

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 10;
    padding-top: 120px;
}

/* ==========================================================
   BADGE
========================================================== */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(15,94,255,.12);
    border: 1px solid rgba(15,94,255,.3);
    color: #6FD7FF;
    font-size: .9rem;
    margin-bottom: 28px;
}

/* ==========================================================
   HERO TITLE
========================================================== */

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient( 90deg, #ffffff, #67D9FF );
    -webkit-background-clip: text;
    color: transparent;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #A5F3FC;
    margin-bottom: 22px;
}

.hero p {
    max-width: 620px;
    color: #CBD5E1;
    font-size: 1.1rem;
    margin-bottom: 45px;
}

/* ==========================================================
   BUTTONS
========================================================== */

.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 50px;
    background: linear-gradient( 135deg, #0F5EFF, #00D9FF );
    color: white;
    font-weight: 700;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(15,94,255,.35);
}

    .btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,217,255,.25);
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.15);
    color: white;
    transition: .35s;
}

    .btn-outline:hover {
        background: white;
        color: #111827;
    }

/* ==========================================================
   HERO IMAGE
========================================================== */

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image img {
        width: 95%;
        max-width: 650px;
        animation: floating 6s ease-in-out infinite;
    }

/* ==========================================================
   FLOAT
========================================================== */

@keyframes floating {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}
/* ==========================================================
   SECTION
========================================================== */

section {
    position: relative;
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    margin-bottom: 20px;
    border-radius: 999px;
    color: #6FD7FF;
    background: rgba(15,94,255,.12);
    border: 1px solid rgba(15,94,255,.25);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .5px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
}

    .section-title span {
        background: linear-gradient( 90deg, #0F5EFF, #00D9FF );
        -webkit-background-clip: text;
        color: transparent;
    }

.section-description {
    width: min(720px,90%);
    margin: auto;
    color: #94A3B8;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ==========================================================
   GRID
========================================================== */

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2,1fr);
}

.grid-3 {
    grid-template-columns: repeat(3,1fr);
}

.grid-4 {
    grid-template-columns: repeat(4,1fr);
}

/* ==========================================================
   PRODUCT
========================================================== */

.product {
    background: #050C19;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

/* ==========================================================
   CARD
========================================================== */

.card {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    transition: .4s;
    cursor: pointer;
}

    .card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(15,94,255,.15), rgba(0,217,255,.05) );
        opacity: 0;
        transition: .4s;
    }

    .card:hover::before {
        opacity: 1;
    }

    .card:hover {
        transform: translateY(-12px);
        border-color: #0F5EFF;
        box-shadow: 0 20px 60px rgba(15,94,255,.18);
    }

/* ==========================================================
   CARD ICON
========================================================== */

.card-icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 28px;
    background: linear-gradient( 135deg, #0F5EFF, #00D9FF );
    color: white;
    font-size: 2rem;
    box-shadow: 0 12px 30px rgba(15,94,255,.35);
}

.card:hover .card-icon {
    transform: rotate(-8deg) scale(1.05);
    transition: .35s;
}

/* ==========================================================
   CARD TITLE
========================================================== */

.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.card p {
    color: #AAB8C8;
    line-height: 1.8;
    font-size: 1rem;
}

/* ==========================================================
   CARD LINK
========================================================== */

.card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    color: #00D9FF;
    font-weight: 600;
    transition: .3s;
}

    .card a i {
        transition: .3s;
    }

.card:hover a i {
    transform: translateX(6px);
}

/* ==========================================================
   PRODUCT NUMBER
========================================================== */

.product-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,.04);
    user-select: none;
}

/* ==========================================================
   GLASS PANEL
========================================================== */

.glass {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
}

/* ==========================================================
   HOVER GLOW
========================================================== */

.glow:hover {
    box-shadow: 0 0 20px rgba(0,217,255,.25), 0 0 60px rgba(15,94,255,.18);
}

/* ==========================================================
   DIVIDER
========================================================== */

.divider {
    width: 80px;
    height: 4px;
    margin: 25px auto;
    border-radius: 20px;
    background: linear-gradient( 90deg, #0F5EFF, #00D9FF );
}
/* ==========================================================
   FEATURES
========================================================== */

.features {
    background: linear-gradient( 180deg, #030712 0%, #07121F 100% );
    position: relative;
    overflow: hidden;
}

    .features::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        right: -180px;
        top: -120px;
        border-radius: 50%;
        background: radial-gradient( rgba(15,94,255,.18), transparent 70% );
        filter: blur(40px);
        pointer-events: none;
    }

    .features::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        left: -120px;
        bottom: -180px;
        border-radius: 50%;
        background: radial-gradient( rgba(0,217,255,.10), transparent 70% );
        filter: blur(45px);
        pointer-events: none;
    }

/* ==========================================================
   FEATURE GRID
========================================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* ==========================================================
   FEATURE ITEM
========================================================== */

.feature-item {
    padding: 35px 28px;
    border-radius: 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(18px);
    transition: .35s;
    text-align: center;
}

    .feature-item:hover {
        transform: translateY(-8px);
        border-color: #00D9FF;
        box-shadow: 0 18px 45px rgba(0,217,255,.12);
    }

    /* ==========================================================
   FEATURE ICON
========================================================== */

    .feature-item i {
        width: 72px;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        margin-bottom: 22px;
        border-radius: 18px;
        font-size: 1.9rem;
        color: #FFFFFF;
        background: linear-gradient( 135deg, #0F5EFF, #00D9FF );
        box-shadow: 0 10px 28px rgba(15,94,255,.28);
        transition: .35s;
    }

    .feature-item:hover i {
        transform: rotate(-8deg) scale(1.08);
    }

    /* ==========================================================
   FEATURE TITLE
========================================================== */

    .feature-item h3 {
        font-size: 1.2rem;
        margin-bottom: 14px;
        color: #FFFFFF;
        font-weight: 700;
    }

    .feature-item p {
        color: #94A3B8;
        line-height: 1.8;
        font-size: .95rem;
    }

/* ==========================================================
   STATISTICS
========================================================== */

.statistics {
    padding: 90px 0;
    position: relative;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* ==========================================================
   STAT CARD
========================================================== */

.stat-card {
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient( 180deg, rgba(255,255,255,.05), rgba(255,255,255,.02) );
    border: 1px solid rgba(255,255,255,.08);
    transition: .35s;
}

    .stat-card:hover {
        transform: translateY(-8px);
        border-color: #0F5EFF;
        box-shadow: 0 20px 50px rgba(15,94,255,.18);
    }

/* ==========================================================
   STAT NUMBER
========================================================== */

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient( 90deg, #00D9FF, #0F5EFF );
    -webkit-background-clip: text;
    color: transparent;
}

.stat-label {
    color: #CBD5E1;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .4px;
}

/* ==========================================================
   SMALL UTILITIES
========================================================== */

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 60px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 60px;
}
/* ==========================================================
   TECHNOLOGY SECTION
========================================================== */

.technology {
    position: relative;
    background: #07121F;
    overflow: hidden;
}

    .technology::before {
        content: "";
        position: absolute;
        top: -180px;
        left: -180px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient( rgba(15,94,255,.18), transparent 70% );
        filter: blur(45px);
        pointer-events: none;
    }

    .technology::after {
        content: "";
        position: absolute;
        right: -180px;
        bottom: -180px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient( rgba(0,217,255,.14), transparent 70% );
        filter: blur(45px);
        pointer-events: none;
    }

/* ==========================================================
   TECHNOLOGY GRID
========================================================== */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.tech-card {
    padding: 35px;
    border-radius: 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    transition: .35s;
    text-align: center;
}

    .tech-card:hover {
        transform: translateY(-10px);
        border-color: #00D9FF;
        box-shadow: 0 18px 50px rgba(15,94,255,.18);
    }

    .tech-card i {
        font-size: 2.4rem;
        color: #00D9FF;
        margin-bottom: 20px;
    }

    .tech-card h3 {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .tech-card p {
        color: #94A3B8;
        line-height: 1.8;
    }

/* ==========================================================
   TIMELINE
========================================================== */

.timeline {
    position: relative;
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

    .timeline::before {
        content: "";
        position: absolute;
        top: 34px;
        left: 5%;
        right: 5%;
        height: 3px;
        background: linear-gradient( 90deg, #0F5EFF, #00D9FF );
        z-index: 0;
    }

.timeline-item {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
}

.timeline-dot {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #0F5EFF, #00D9FF );
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 10px 25px rgba(15,94,255,.30);
}

.timeline-item h4 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 700;
}

.timeline-item p {
    color: #94A3B8;
    font-size: .95rem;
    line-height: 1.7;
}

/* ==========================================================
   GLOW HELPERS
========================================================== */

.glow-blue {
    box-shadow: 0 0 25px rgba(15,94,255,.20);
}

.glow-cyan {
    box-shadow: 0 0 25px rgba(0,217,255,.20);
}

/* ==========================================================
   BACKGROUND DECORATION
========================================================== */

.bg-grid {
    background-image: linear-gradient( rgba(255,255,255,.03) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.03) 1px, transparent 1px );
    background-size: 40px 40px;
}

/* ==========================================================
   FADE UTILITIES
========================================================== */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .6s ease, transform .6s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }

.fade-in {
    opacity: 0;
    transition: opacity .6s ease;
}

    .fade-in.show {
        opacity: 1;
    }

/* ==========================================================
   FLEX UTILITIES
========================================================== */

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================
   WIDTH UTILITIES
========================================================== */

.w-100 {
    width: 100%;
}

.max-720 {
    max-width: 720px;
    margin-inline: auto;
}

.max-960 {
    max-width: 960px;
    margin-inline: auto;
}
/* ==========================================================
   PARTNERS
========================================================== */

.partners {
    position: relative;
    background: #050C19;
    overflow: hidden;
}

    .partners .grid {
        margin-top: 50px;
    }

    .partners .glass {
        min-height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.15rem;
        font-weight: 700;
        color: #E2E8F0;
        transition: .35s;
        border: 1px solid rgba(255,255,255,.08);
    }

        .partners .glass:hover {
            transform: translateY(-8px);
            border-color: #00D9FF;
            color: #00D9FF;
            box-shadow: 0 18px 40px rgba(0,217,255,.15);
        }

/* ==========================================================
   ROADMAP
========================================================== */

.roadmap {
    position: relative;
    background: #030712;
    overflow: hidden;
}

    .roadmap::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        background: linear-gradient( 180deg, #0F5EFF, #00D9FF );
        transform: translateX(-50%);
    }

.roadmap-container {
    position: relative;
    margin-top: 70px;
}

.roadmap-item {
    position: relative;
    width: 50%;
    padding: 20px 60px;
    margin-bottom: 70px;
}

    .roadmap-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }

    .roadmap-item:nth-child(even) {
        left: 50%;
    }

    .roadmap-item::before {
        content: "";
        position: absolute;
        top: 35px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: #00D9FF;
        box-shadow: 0 0 20px rgba(0,217,255,.45);
    }

    .roadmap-item:nth-child(odd)::before {
        right: -11px;
    }

    .roadmap-item:nth-child(even)::before {
        left: -11px;
    }

.roadmap-card {
    padding: 30px;
    border-radius: 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    transition: .35s;
}

    .roadmap-card:hover {
        transform: translateY(-6px);
        border-color: #0F5EFF;
        box-shadow: 0 18px 45px rgba(15,94,255,.16);
    }

.roadmap-year {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient( 135deg, #0F5EFF, #00D9FF );
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}

.roadmap-card h3 {
    margin-bottom: 15px;
    font-size: 1.35rem;
    color: #FFFFFF;
    font-weight: 700;
}

.roadmap-card p {
    color: #94A3B8;
    line-height: 1.8;
}

/* ==========================================================
   ROADMAP ICON
========================================================== */

.roadmap-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 20px;
    background: linear-gradient( 135deg, #0F5EFF, #00D9FF );
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 10px 28px rgba(15,94,255,.28);
}

/* ==========================================================
   ROADMAP ANIMATION
========================================================== */

.roadmap-card,
.partners .glass {
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

    .roadmap-card:hover .roadmap-icon {
        transform: rotate(-8deg) scale(1.08);
        transition: .35s;
    }
/* Sticky Header */

header.sticky {
    background: rgba(3,7,18,.95);
    box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

/* Mobile Menu */

.mobile-menu {
    position: fixed;
    top: 82px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 82px);
    background: #07121F;
    transition: .35s;
    z-index: 998;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

    .mobile-menu.active {
        left: 0;
    }

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #FFF;
    align-items: center;
    justify-content: center;
}

body.menu-open {
    overflow: hidden;
}
/* Active Menu */

nav ul li a.active {
    color: #00D9FF;
}

/* Scroll Top */

#scrollTop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: linear-gradient( 135deg, #0F5EFF, #00D9FF );
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: .35s;
    z-index: 999;
}

    #scrollTop.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* Progress Bar */

#progressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient( 90deg, #0F5EFF, #00D9FF );
    z-index: 9999;
}

/* Reveal Animation */

.card,
.feature-item,
.tech-card,
.stat-card,
.roadmap-card {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .6s ease, transform .6s ease;
}

    .card.show,
    .feature-item.show,
    .tech-card.show,
    .stat-card.show,
    .roadmap-card.show {
        opacity: 1;
        transform: translateY(0);
    }
/* ==========================================================
   CURSOR GLOW
========================================================== */

#cursorGlow {
    position: fixed;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%,-50%);
    background: radial-gradient( rgba(0,217,255,.18), transparent 70% );
    filter: blur(40px);
    z-index: 0;
    transition: left .08s linear, top .08s linear;
}
/* ==========================================================
   LANGUAGE SWITCHER
========================================================== */

.language button {
    transition: all .3s ease;
}

    .language button.active {
        background: linear-gradient( 135deg, #0F5EFF, #00D9FF );
        color: #FFF;
        border-color: transparent;
        box-shadow: 0 8px 20px rgba(15,94,255,.30);
    }
.industry-flow {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 40px auto 0;
    border-radius: 12px;
}