/* ================================================================
   NEXERP CORPORATE WEBSITE — FUTURISTIC DEEP SPACE THEME
   ================================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
    /* Neon Palette */
    --neon-cyan: #00f5ff;
    --neon-blue: #0066ff;
    --neon-purple: #7b2fff;
    --neon-pink: #ff0080;
    --neon-green: #00ff88;

    /* Dark Background Scale */
    --bg-void: #020408;
    --bg-deep: #050c14;
    --bg-dark: #080f1a;
    --bg-mid: #0d1929;
    --bg-surface: #111f33;
    --bg-card: rgba(13, 25, 41, 0.85);
    --bg-glass: rgba(0, 245, 255, 0.03);

    /* Text */
    --text-white: #ffffff;
    --text-bright: #e0f4ff;
    --text-muted: rgba(200, 220, 255, 0.65);
    --text-dim: rgba(150, 180, 220, 0.5);

    /* Glows */
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.4), 0 0 60px rgba(0, 245, 255, 0.15);
    --glow-blue: 0 0 20px rgba(0, 102, 255, 0.4), 0 0 60px rgba(0, 102, 255, 0.15);
    --glow-purple: 0 0 20px rgba(123, 47, 255, 0.4), 0 0 60px rgba(123, 47, 255, 0.15);
    --glow-pink: 0 0 20px rgba(255, 0, 128, 0.4), 0 0 60px rgba(255, 0, 128, 0.15);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-purple));
    --grad-accent: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    --grad-hero: radial-gradient(ellipse at 30% 40%, rgba(0, 102, 255, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(123, 47, 255, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 10%, rgba(0, 245, 255, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #020408 0%, #050c14 50%, #080f1a 100%);

    /* Glassmorphism borders */
    --glass-border: 1px solid rgba(0, 245, 255, 0.12);
    --glass-border-hover: 1px solid rgba(0, 245, 255, 0.45);

    /* Transitions */
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ===== GLOBAL RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    background: var(--bg-void);
    color: var(--text-bright);
    line-height: 1.65;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--neon-cyan), var(--neon-purple));
    border-radius: 3px;
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(0, 245, 255, 0.2);
    color: var(--neon-cyan);
}


/* ================================================================
   HEADER & NAVIGATION
   ================================================================ */
.nx_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    pointer-events: auto;
    background: rgba(2, 4, 8, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0, 245, 255, 0.07);
    transition: all 0.4s var(--ease-smooth);
}

.nx_header.scrolled {
    background: rgba(2, 4, 8, 0.92);
    border-bottom-color: rgba(0, 245, 255, 0.15);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 245, 255, 0.04);
}

.nx_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

/* Logo */
.nx_logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    position: relative;
}

.nx_logo img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.5));
    transition: filter 0.3s ease;
}

.nx_logo:hover img {
    filter: drop-shadow(0 0 16px rgba(0, 245, 255, 0.9));
}

.logo_text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Nav Menu */
.nx_menu {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    align-items: center;
}

.nx_menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    letter-spacing: 0.03em;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

.nx_menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    border-radius: 1px;
    transform: translateX(-50%);
    transition: width 0.3s var(--ease-spring);
}

.nx_menu a:hover {
    color: var(--neon-cyan);
    background: rgba(0, 245, 255, 0.05);
}

.nx_menu a:hover::after {
    width: calc(100% - 2rem);
}

/* Primary Button */
.nx_btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--bg-void) !important;
    padding: 0.65rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.35s var(--ease-spring);
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.nx_btn_primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nx_btn_primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(0, 245, 255, 0.55), 0 0 70px rgba(0, 245, 255, 0.2);
    color: var(--bg-void) !important;
}

.nx_btn_primary:hover::before {
    opacity: 1;
}

/* Secondary Button */
.nx_btn_secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 245, 255, 0.04);
    border: 1px solid rgba(0, 245, 255, 0.4);
    color: var(--neon-cyan) !important;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.35s var(--ease-spring);
    backdrop-filter: blur(10px);
}

.nx_btn_secondary:hover {
    background: rgba(0, 245, 255, 0.12);
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 245, 255, 0.25);
    color: var(--text-white) !important;
}

.nx_btn_large {
    font-size: 1rem !important;
    padding: 0.9rem 2.2rem !important;
}

.menu_toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1005;
}

.menu_toggle span {
    width: 24px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 245, 255, 0.6);
}

.menu_toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu_toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu_toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ================================================================
   HERO SECTION
   ================================================================ */
.hero_section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

/* Canvas for particles - positioned inside hero */
#hero_canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Animated cosmic rings */
.hero_orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(0px);
    pointer-events: none;
    animation: orbPulse 8s ease-in-out infinite;
}

.hero_orb_1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.hero_orb_2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 47, 255, 0.12) 0%, transparent 70%);
    bottom: -100px;
    right: -50px;
    animation-delay: -4s;
}

.hero_orb_3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    top: 30%;
    left: 60%;
    animation-delay: -2s;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15) rotate(5deg);
        opacity: 1;
    }
}

/* Grid lines background */
.hero_grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    animation: gridScroll 30s linear infinite;
}

@keyframes gridScroll {
    0% {
        transform: perspective(500px) rotateX(30deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(30deg) translateY(60px);
    }
}

/* Hero Content */
.hero_content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 245, 255, 0.07);
    border: 1px solid rgba(0, 245, 255, 0.25);
    color: var(--neon-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.hero_badge .badge_dot {
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-green);
    animation: dotBlink 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 245, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 245, 255, 0.2), inset 0 0 20px rgba(0, 245, 255, 0.05);
    }
}

@keyframes dotBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero_title {
    font-family: 'Orbitron', 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero_title_line1 {
    display: block;
    background: linear-gradient(90deg, var(--text-white) 0%, var(--neon-cyan) 50%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: textShimmer 4s linear infinite;
}

.hero_title_line2 {
    display: block;
    background: linear-gradient(90deg, var(--neon-blue) 0%, var(--neon-purple) 50%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: textShimmer 4s linear infinite reverse;
}

@keyframes textShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero_subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 400;
    min-height: 2em;
}

/* Typed text cursor */
.typed_cursor {
    display: inline-block;
    width: 3px;
    height: 1.1em;
    background: var(--neon-cyan);
    margin-left: 2px;
    vertical-align: middle;
    border-radius: 2px;
    animation: cursorBlink 1s ease infinite;
    box-shadow: 0 0 10px var(--neon-cyan);
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero_description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero_buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Magnetic button wrapper */
.magnetic_btn {
    display: inline-block;
    transition: transform 0.4s var(--ease-spring);
}

/* Scroll indicator */
.scroll_indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 2s ease 1s both;
}

.scroll_mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 11px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll_wheel {
    width: 3px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 2px;
    margin-top: 5px;
    animation: scrollWheel 1.8s ease infinite;
    box-shadow: 0 0 6px var(--neon-cyan);
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(14px);
        opacity: 0;
    }
}


/* ================================================================
   STATS SECTION
   ================================================================ */
.stats_section {
    position: relative;
    background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-surface) 100%);
    padding: 5rem 2rem;
    border-top: 1px solid rgba(0, 245, 255, 0.08);
    border-bottom: 1px solid rgba(0, 245, 255, 0.08);
    overflow: hidden;
    z-index: 10;
}

.stats_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 245, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stats_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat_card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: var(--glass-border);
    backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.stat_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-smooth);
}

.stat_card:hover {
    border-color: rgba(0, 245, 255, 0.35);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--glow-cyan);
    background: rgba(13, 25, 41, 0.95);
}

.stat_card:hover::before {
    transform: scaleX(1);
}

.stat_number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.5));
}

.stat_label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


/* ================================================================
   GENERAL SECTIONS
   ================================================================ */
.section {
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section_alt {
    /* section_alt overrides background handled per-section via wrapper */
}

.section_wrapper_alt {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.section_wrapper_alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 10% 50%, rgba(0, 102, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 50%, rgba(123, 47, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.section_wrapper {
    background: var(--bg-void);
    position: relative;
    overflow: hidden;
}

.section_wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 245, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Section Headers */
.section_title {
    text-align: center;
    font-family: 'Orbitron', 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.section_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--grad-primary);
    border-radius: 2px;
    box-shadow: var(--glow-cyan);
}

.section_subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 4.5rem;
    font-weight: 400;
}


/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about_content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about_text .lead {
    font-size: 1.25rem;
    color: var(--neon-cyan);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about_text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.about_features {
    display: grid;
    gap: 0.9rem;
}

.feature_item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 1.1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    color: var(--text-bright);
    transition: all 0.35s var(--ease-spring);
    cursor: default;
    backdrop-filter: blur(10px);
}

.feature_item i {
    color: var(--neon-cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.6));
}

.feature_item:hover {
    transform: translateX(12px);
    background: rgba(0, 245, 255, 0.06);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: -4px 0 20px rgba(0, 245, 255, 0.15), inset 0 0 30px rgba(0, 245, 255, 0.03);
}


/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service_card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.45s var(--ease-spring);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    cursor: default;
}

/* Corner accents */
.service_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(0, 245, 255, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service_card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.07), rgba(0, 102, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Top neon line */
.service_card .card_line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-smooth);
    border-radius: 24px 24px 0 0;
    box-shadow: var(--glow-cyan);
}

.service_card:hover {
    transform: translateY(-16px);
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), var(--glow-cyan);
}

.service_card:hover::before,
.service_card:hover::after {
    opacity: 1;
}

.service_card:hover .card_line {
    transform: scaleX(1);
}

/* Icon */
.service_icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(0, 102, 255, 0.1));
    border: 1px solid rgba(0, 245, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: all 0.4s var(--ease-spring);
    position: relative;
    z-index: 1;
}

.service_icon i {
    font-size: 2rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.5));
}

.service_card:hover .service_icon {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(0, 102, 255, 0.2));
    border-color: rgba(0, 245, 255, 0.4);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.25);
}

.service_title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service_description {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.98rem;
    position: relative;
    z-index: 1;
}


/* ================================================================
   INDUSTRIES SECTION
   ================================================================ */
.industries_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.75rem;
}

.industry_card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.industry_card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(0, 245, 255, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry_card:hover {
    border-color: rgba(0, 245, 255, 0.4);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 245, 255, 0.12);
}

.industry_card:hover::before {
    opacity: 1;
}

.industry_icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 245, 255, 0.3));
    transition: transform 0.4s var(--ease-spring), filter 0.4s ease;
}

.industry_card:hover .industry_icon {
    transform: scale(1.2) translateY(-5px);
    filter: drop-shadow(0 6px 25px rgba(0, 245, 255, 0.5));
}

.industry_card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.6rem;
}

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


/* ================================================================
   PRODUCTS SECTION
   ================================================================ */
.products_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product_card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 2.25rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.product_card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-smooth);
}

.product_card:hover {
    transform: translateY(-14px);
    border-color: rgba(123, 47, 255, 0.4);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), var(--glow-purple);
}

.product_card:hover::before {
    transform: scaleX(1);
}

.product_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

.product_header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.product_price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product_price.free {
    background: linear-gradient(135deg, var(--neon-green), #00cc66);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4));
}

.product_description {
    margin-bottom: 1.75rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 0.97rem;
}

.product_link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.2rem;
    border: 1px solid rgba(0, 245, 255, 0.25);
    border-radius: 50px;
    transition: all 0.3s var(--ease-spring);
    letter-spacing: 0.04em;
}

.product_link:hover {
    background: rgba(0, 245, 255, 0.08);
    border-color: var(--neon-cyan);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
    color: var(--text-white);
}


/* ================================================================
   CTA SECTION
   ================================================================ */
.cta_section {
    position: relative;
    padding: 7rem 2rem;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-mid), var(--bg-surface));
    border-top: 1px solid rgba(0, 245, 255, 0.1);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

.cta_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 102, 255, 0.18) 0%, transparent 65%);
    animation: ctaPulse 6s ease-in-out infinite;
}

.cta_section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(123, 47, 255, 0.1) 0%, transparent 60%);
    animation: ctaPulse 6s ease-in-out infinite reverse;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.cta_content {
    position: relative;
    z-index: 2;
}

.cta_content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.cta_content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Override CTA button */
.cta_content .nx_btn_primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    font-size: 1.05rem !important;
    padding: 1rem 2.5rem !important;
    box-shadow: 0 8px 40px rgba(0, 245, 255, 0.4);
}


/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact_card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 2.75rem 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.contact_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-primary);
    border-radius: 24px 24px 0 0;
}

.contact_card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 245, 255, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), var(--glow-cyan);
}

.contact_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(0, 102, 255, 0.1));
    border: 1px solid rgba(0, 245, 255, 0.2);
    font-size: 2.2rem;
    color: var(--neon-cyan);
    transition: all 0.4s var(--ease-spring);
}

.contact_icon i {
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.5));
}

.contact_card:hover .contact_icon {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(0, 102, 255, 0.2));
    transform: scale(1.1) rotate(8deg);
    box-shadow: var(--glow-cyan);
}

.contact_card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.contact_card p,
.contact_card a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.7;
}

.contact_card a:hover {
    color: var(--neon-cyan);
}


/* ================================================================
   FOOTER
   ================================================================ */
.nx_footer {
    background: var(--bg-deep);
    border-top: 1px solid rgba(0, 245, 255, 0.08);
    padding: 5rem 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.nx_footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
    animation: footerLine 4s linear infinite;
}

@keyframes footerLine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.footer_content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer_grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer_logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer_logo img {
    height: 40px;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0, 245, 255, 0.5));
}

.footer_logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer_text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer_social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social_icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.35s var(--ease-spring);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.social_icon::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social_icon:hover {
    transform: translateY(-6px) scale(1.15);
    border-color: transparent;
}

.social_linkedin {
    background: rgba(0, 119, 181, 0.2);
}

.social_linkedin:hover {
    background: #0077B5;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.5);
}

.social_github {
    background: rgba(51, 51, 51, 0.3);
}

.social_github:hover {
    background: #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.social_facebook {
    background: rgba(24, 119, 242, 0.2);
}

.social_facebook:hover {
    background: #1877F2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

.social_x {
    background: rgba(0, 0, 0, 0.2);
}

.social_x:hover {
    background: #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.social_email {
    background: rgba(234, 67, 53, 0.2);
}

.social_email:hover {
    background: #EA4335;
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.5);
}

.social_phone {
    background: rgba(52, 168, 83, 0.2);
}

.social_phone:hover {
    background: #34A853;
    box-shadow: 0 8px 25px rgba(52, 168, 83, 0.5);
}

.social_instagram {
    background: rgba(193, 53, 132, 0.2);
}

.social_instagram:hover {
    background: linear-gradient(135deg, #833AB4, #C13584, #E1306C, #FD1D1D);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

.social_youtube {
    background: rgba(255, 0, 0, 0.2);
}

.social_youtube:hover {
    background: #FF0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.social_odoo {
    background: rgba(113, 75, 103, 0.2);
}

.social_odoo:hover {
    background: #714B67;
    box-shadow: 0 8px 25px rgba(113, 75, 103, 0.5);
}

.footer_col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.footer_col ul {
    list-style: none;
}

.footer_col ul li {
    margin-bottom: 0.85rem;
}

.footer_col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer_col a::before {
    content: '›';
    color: var(--neon-cyan);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer_col a:hover {
    color: var(--text-white);
    transform: translateX(8px);
}

.footer_col a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact_info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}

.contact_info i {
    color: var(--neon-cyan);
    width: 16px;
    text-align: center;
    filter: drop-shadow(0 0 4px rgba(0, 245, 255, 0.5));
}

.footer_bottom {
    border-top: 1px solid rgba(0, 245, 255, 0.07);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.88rem;
}

.footer_bottom a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_bottom a:hover {
    color: var(--text-white);
}


/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Reveal */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-spring);
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* staggered children */
.stagger-children>*:nth-child(1) {
    transition-delay: 0s;
}

.stagger-children>*:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children>*:nth-child(3) {
    transition-delay: 0.2s;
}

.stagger-children>*:nth-child(4) {
    transition-delay: 0.3s;
}

.stagger-children>*:nth-child(5) {
    transition-delay: 0.4s;
}

.stagger-children>*:nth-child(6) {
    transition-delay: 0.5s;
}

/* Floating animation */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0px);
    }

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

/* Spin slow */
@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Neon pulse */
@keyframes neonPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(0, 245, 255, 1));
    }
}


/* ================================================================
   HERO LOAD ANIMATIONS
   ================================================================ */
.hero_badge {
    animation: fadeInUp 0.7s var(--ease-out) 0.3s both;
}

.hero_title {
    animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

.hero_subtitle {
    animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}

.hero_description {
    animation: fadeInUp 0.8s var(--ease-out) 0.9s both;
}

.hero_buttons {
    animation: fadeInUp 0.8s var(--ease-out) 1.1s both;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .about_content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer_grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nx_nav {
        padding: 1rem 1.5rem;
    }

    .nx_menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(5, 12, 20, 0.98);
        backdrop-filter: blur(30px);
        width: 75%;
        max-width: 320px;
        height: calc(100vh - 70px);
        padding: 2.5rem 2rem;
        box-shadow: -10px 0 60px rgba(0, 0, 0, 0.7), inset 1px 0 0 rgba(0, 245, 255, 0.1);
        transition: right 0.4s var(--ease-smooth);
        align-items: flex-start;
        z-index: 999;
    }

    .nx_menu.active {
        right: 0;
    }

    .nx_menu li {
        width: 100%;
    }

    .nx_menu a {
        display: block;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.2rem;
    }

    .menu_toggle {
        display: flex;
    }

    .hero_title {
        font-size: 2.4rem;
    }

    .hero_subtitle {
        font-size: 1rem;
    }

    .hero_buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero_grid {
        display: none;
    }

    .footer_grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .section_title {
        font-size: 1.9rem;
    }

    .hero_title {
        font-size: 2rem;
    }

    .stat_number {
        font-size: 2.8rem;
    }
}