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

:root {
    --primary-color: #00d9ff;
    --secondary-color: #8b5cf6;
    --accent-color: #f472b6;
    --dark-bg: #0a0a0f;
    --dark-surface: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --glow-color: rgba(0, 217, 255, 0.5);
    --gradient-1: linear-gradient(135deg, #00d9ff 0%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #8b5cf6 0%, #f472b6 100%);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(244, 114, 182, 0.1) 0%, transparent 50%);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    touch-action: none;
    position: relative;
}

/* Products Page Background */
body.products-view {
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 60%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(244, 114, 182, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 30% 10%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(15, 15, 25, 0.98) 100%);
}

body.products-view::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 40%, rgba(0, 217, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 20%, rgba(244, 114, 182, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: productsBackgroundPulse 10s ease-in-out infinite;
}

@keyframes productsBackgroundPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    33% { 
        opacity: 0.8; 
        transform: scale(1.05);
    }
    66% { 
        opacity: 0.9; 
        transform: scale(0.98);
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease-out;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8)); }
}

.loader-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: var(--dark-surface);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    height: 100%;
    background: var(--gradient-1);
    width: 0%;
    animation: loading 2s ease-in-out;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.loader-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes loading {
    to { width: 100%; }
}

/* Navigation - Floating & Transparent */
.main-nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1600px;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    background: rgba(10, 10, 15, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.brand-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    letter-spacing: 0.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.brand-logo:hover {
    filter: drop-shadow(0 0 25px rgba(0, 217, 255, 0.6));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
}

/* Network Node Styling for Nav Items */
.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    z-index: 2;
}

/* Node Circle Background with Glow */
.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
}

.nav-link:hover::before {
    opacity: 1;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 217, 255, 0.3) 0%,
        rgba(139, 92, 246, 0.2) 50%,
        transparent 100%);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::before {
    opacity: 1;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 217, 255, 0.4) 0%,
        rgba(139, 92, 246, 0.3) 50%,
        transparent 100%);
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.5);
    animation: nodePulse 2s ease-in-out infinite, nodeGlow 2s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

@keyframes nodeGlow {
    0%, 100% {
        box-shadow: 0 0 25px rgba(0, 217, 255, 0.5);
        border-color: rgba(0, 217, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 35px rgba(0, 217, 255, 0.8);
        border-color: rgba(0, 217, 255, 0.9);
    }
}

/* Connecting Lines Between Nodes */
.nav-links::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 217, 255, 0.2) 20%,
        rgba(139, 92, 246, 0.2) 50%,
        rgba(244, 114, 182, 0.2) 80%,
        transparent 100%
    );
    z-index: 0;
    opacity: 0.6;
    animation: lineFlow 3s ease-in-out infinite;
}

@keyframes lineFlow {
    0%, 100% {
        opacity: 0.4;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
}

/* Individual connecting lines between adjacent nodes */
.nav-link:not(:last-child) {
    position: relative;
}

/* Connecting lines between nodes */
.nav-link:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(0, 217, 255, 0.4) 0%,
        rgba(139, 92, 246, 0.4) 50%,
        rgba(244, 114, 182, 0.3) 100%
    );
    transform: translateY(-50%);
    z-index: 1;
    animation: connectionPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.3;
        width: 1.5rem;
    }
    50% {
        opacity: 0.6;
        width: 2rem;
    }
}


.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Canvas Container */
#canvas-container {
    width: 100%;
    height: 100vh;
    position: relative;
    cursor: grab;
    touch-action: pan-x pan-y pinch-zoom;
    -webkit-tap-highlight-color: transparent;
}

#canvas-container:active {
    cursor: grabbing;
}

@media (max-width: 768px) {
    #canvas-container {
        cursor: default;
        touch-action: pan-x pan-y pinch-zoom;
    }
}

/* UI Overlay */
.ui-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    isolation: isolate;
}

.ui-overlay > * {
    pointer-events: auto;
}

/* Hero Section */
.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 20;
    pointer-events: none;
}

.hero-section > * {
    pointer-events: auto;
}

.hero-title-top {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.hero-bottom {
    position: absolute;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin: 0;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: 0.1em;
}

.hero-title-top {
    margin-top: 0;
}

.title-line {
    display: block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
    animation: glow-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
}

.title-line:nth-child(2) {
    animation-delay: 0.5s;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
}

@keyframes glow-pulse {
    0%, 100% { 
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
    }
    50% { 
        opacity: 0.8;
        filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-button {
    padding: 1.2rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Holographic/Iridescent Gradient Overlay */
.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(0, 217, 255, 0.3) 0%,
        rgba(139, 92, 246, 0.3) 25%,
        rgba(244, 114, 182, 0.3) 50%,
        rgba(0, 217, 255, 0.3) 75%,
        rgba(139, 92, 246, 0.3) 100%
    );
    background-size: 400% 400%;
    animation: holographicShift 4s ease-in-out infinite;
    opacity: 0.6;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

@keyframes holographicShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

/* Shimmering Rainbow Effect */
.cta-button::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 45%,
        rgba(0, 217, 255, 0.2) 50%,
        rgba(139, 92, 246, 0.2) 55%,
        rgba(244, 114, 182, 0.2) 60%,
        rgba(255, 255, 255, 0.3) 65%,
        transparent 70%
    );
    animation: shimmerSweep 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    transform: rotate(45deg);
}

@keyframes shimmerSweep {
    0% {
        top: -100%;
        left: -100%;
    }
    100% {
        top: 100%;
        left: 100%;
    }
}

.cta-text {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.icon-arrow {
    width: 100%;
    height: 100%;
    color: currentColor;
}

.arrow-path {
    stroke-dasharray: 24;
    stroke-dashoffset: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Shimmer effect moved to separate element - using .cta-button span for shimmer */
.cta-button .shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
    z-index: 1;
}

.cta-button:hover .shimmer {
    left: 100%;
}

.cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 217, 255, 0.2),
        0 0 60px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.cta-button:hover::before {
    opacity: 0.8;
    animation: holographicShift 2s ease-in-out infinite;
}

.cta-button:hover::after {
    animation: shimmerSweep 2s ease-in-out infinite;
}

.cta-button:hover .arrow-path {
    stroke-dashoffset: -24;
    transform: translateX(4px);
}

.cta-button:active .arrow-path {
    transform: translateX(8px) scale(1.2);
}

/* Icon Morph Animation - Arrow Movement & Scale */
@keyframes iconMorph {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    25% {
        transform: translateX(3px) scale(1.1);
    }
    50% {
        transform: translateX(6px) scale(1.2);
    }
    75% {
        transform: translateX(3px) scale(1.1);
    }
}

.cta-button:hover .icon-arrow {
    animation: iconMorph 1.2s ease-in-out infinite;
}

/* Pulse glow effect on icon */
@keyframes iconPulse {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(0, 217, 255, 0.6));
        opacity: 1;
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.9));
        opacity: 0.9;
    }
}

.cta-icon {
    animation: iconPulse 2s ease-in-out infinite;
}

/* Arrow path animation - drawing effect with morph */
@keyframes arrowDraw {
    0% {
        stroke-dashoffset: 24;
        opacity: 0.7;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -24;
        opacity: 0.7;
    }
}

.cta-button:hover .arrow-path {
    animation: arrowDraw 1.5s ease-in-out infinite;
}

/* Icon container morph - subtle rotation */
@keyframes iconContainerMorph {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(5deg) scale(1.05);
    }
    50% {
        transform: rotate(0deg) scale(1.1);
    }
    75% {
        transform: rotate(-5deg) scale(1.05);
    }
}

.cta-button:hover .cta-icon {
    animation: iconPulse 2s ease-in-out infinite, iconContainerMorph 2s ease-in-out infinite;
}

.cta-button:active {
    transform: scale(0.98);
}

/* Button Particle Styles - Tiny particles */
.button-particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background-color: #00d9ff;
    pointer-events: none;
    z-index: 1000;
    border-radius: 0.5px;
    box-shadow: 
        0 0 4px currentColor,
        0 0 8px currentColor,
        0 0 12px currentColor;
    opacity: 1;
    transform: translate(0, 0) scale(1);
    will-change: transform, opacity, rotation;
    transform-origin: center;
}

.button-particle.particle-animate {
    animation: particleMove 2s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    40% {
        opacity: 1;
        transform: translate(var(--scatter-x, 0), var(--scatter-y, 0)) scale(1.2);
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--target-x, 0), var(--target-y, 0)) scale(0.2);
        opacity: 0;
    }
}

/* Network Info */
.network-info {
    position: absolute;
    bottom: 25vh; /* Positioned in the lower-middle area */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.company-tagline {
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.05rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.info-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 1rem 2rem;
    text-align: center;
    min-width: 150px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
    animation: statPulse 3s ease-in-out infinite;
}

@keyframes statPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.control-hint {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    background: rgba(26, 26, 46, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.mobile-hint {
    display: none;
}

.desktop-hint {
    display: inline;
}

@media (max-width: 768px) {
    .mobile-hint {
        display: inline;
    }
    
    .desktop-hint {
        display: none;
    }
    
    .network-info {
        width: 95%;
        max-width: 100%;
        bottom: 20vh; /* Better positioning on mobile - not too low */
        gap: 0.8rem;
        padding-bottom: 5rem; /* Space for mobile nav buttons at bottom */
    }
    
    .tagline-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .control-hint {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Mobile Help Guide */
.mobile-help {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    z-index: 300;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
    display: none;
}

.mobile-help.active {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mobile-help h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.help-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.help-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.help-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
}

.help-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.help-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.help-item p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.help-dont-show {
    width: 100%;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-dont-show:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Panel Backdrop */
.panel-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    z-index: 9998;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.panel-backdrop.active {
    visibility: visible;
    opacity: 1;
    pointer-events: none; /* Allow clicks to pass through to nodes */
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Node Panel - Side Panel Design */
.node-panel {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 500px;
    max-width: 90vw;
    height: calc(100vh - 70px);
    max-height: calc(100vh - 70px);
    background: linear-gradient(135deg, 
        rgba(10, 10, 15, 0.95) 0%, 
        rgba(15, 15, 25, 0.98) 100%);
    backdrop-filter: blur(30px);
    border-left: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 
        -10px 0 50px rgba(0, 0, 0, 0.8),
        -5px 0 100px rgba(0, 217, 255, 0.15),
        inset 1px 0 0 rgba(255, 255, 255, 0.05);
    z-index: 9999 !important;
    overflow-y: auto;
    overflow-x: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    isolation: isolate;
    transform: translateZ(0);
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 217, 255, 0.5) transparent;
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
}

.node-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 217, 255, 0.8) 0%,
        rgba(139, 92, 246, 0.6) 50%,
        rgba(244, 114, 182, 0.4) 100%);
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.node-panel.active {
    right: 0;
    top: 70px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    animation: panelSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes panelSlideIn {
    from {
        right: -100%;
        top: 70px;
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        right: 0;
        top: 70px;
        opacity: 1;
        transform: translateX(0);
    }
}

.node-panel::-webkit-scrollbar {
    width: 6px;
}

.node-panel::-webkit-scrollbar-track {
    background: transparent;
}

.node-panel::-webkit-scrollbar-thumb {
    background: rgba(0, 217, 255, 0.3);
    border-radius: 3px;
}

.node-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 217, 255, 0.5);
}

/* Panel header removed */

.close-panel {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, rgba(255, 80, 80, 0.95), rgba(255, 120, 120, 0.95)) !important;
    border: 3px solid #ff4444 !important;
    color: #ffffff !important;
    font-size: 2.2rem;
    font-weight: 900;
    cursor: pointer;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10000 !important;
    pointer-events: auto !important;
    touch-action: manipulation;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 30px rgba(255, 100, 100, 0.9),
        0 0 60px rgba(255, 100, 100, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.6),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    opacity: 1 !important;
    visibility: visible !important;
    line-height: 1;
    animation: closeButtonPulse 2s ease-in-out infinite;
}

@keyframes closeButtonPulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(255, 100, 100, 0.8),
            0 0 60px rgba(255, 100, 100, 0.4),
            0 6px 20px rgba(0, 0, 0, 0.5),
            inset 0 2px 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(255, 100, 100, 1),
            0 0 80px rgba(255, 100, 100, 0.6),
            0 8px 25px rgba(0, 0, 0, 0.6),
            inset 0 2px 15px rgba(255, 255, 255, 0.3);
    }
}

.close-panel:hover {
    background: linear-gradient(135deg, rgba(255, 100, 100, 1), rgba(255, 140, 140, 1)) !important;
    border-color: #ff0000 !important;
    color: #ffffff !important;
    transform: scale(1.2) rotate(90deg);
    box-shadow: 
        0 0 50px rgba(255, 100, 100, 1),
        0 0 100px rgba(255, 100, 100, 0.6),
        0 8px 30px rgba(0, 0, 0, 0.6);
    animation: none;
}

.close-panel:active {
    transform: scale(0.9) rotate(90deg);
    background: linear-gradient(135deg, rgba(255, 60, 60, 1), rgba(255, 100, 100, 1)) !important;
}

.panel-content {
    padding: 2rem 2.5rem 2.5rem;
    padding-top: 4rem;
    animation: contentFadeIn 0.8s ease-out 0.2s both;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.node-icon-container {
    position: relative;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.node-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    border: 3px solid;
    box-shadow: 
        0 0 30px currentColor,
        0 0 60px currentColor,
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: iconPulse 2s ease-in-out infinite;
    position: relative;
}

.founder-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid;
    box-shadow: 
        0 0 40px currentColor,
        0 0 80px currentColor,
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: founderImagePulse 2s ease-in-out infinite;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.founder-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.5;
    animation: iconRipple 2s ease-out infinite;
    top: 0;
    left: 0;
}

@keyframes founderImagePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 40px currentColor,
            0 0 80px currentColor,
            0 10px 40px rgba(0, 0, 0, 0.5),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 50px currentColor,
            0 0 100px currentColor,
            0 15px 50px rgba(0, 0, 0, 0.6),
            inset 0 0 25px rgba(255, 255, 255, 0.15);
    }
}

.node-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.5;
    animation: iconRipple 2s ease-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 30px currentColor,
            0 0 60px currentColor,
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 40px currentColor,
            0 0 80px currentColor,
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

@keyframes iconRipple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.node-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    text-align: center;
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.4));
    animation: titleGlow 3s ease-in-out infinite;
    letter-spacing: 0.05em;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 217, 255, 0.8));
    }
}

.node-category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(139, 92, 246, 0.2));
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 0 auto 2rem;
    font-weight: 600;
    width: auto;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    animation: categoryFloat 3s ease-in-out infinite;
}

@keyframes categoryFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
    }
}

.node-description {
    color: var(--text-primary);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.95;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 10px;
    animation: descriptionSlide 0.6s ease-out 0.3s both;
}

@keyframes descriptionSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 0.95;
        transform: translateX(0);
    }
}

.node-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.node-stat-item {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: statAppear 0.5s ease-out both;
    animation-delay: calc(var(--stat-index, 0) * 0.1s);
    position: relative;
    overflow: hidden;
}

.node-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.node-stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.node-stat-item:hover::before {
    left: 100%;
}

@keyframes statAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.node-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.node-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.node-connections {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.connections-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.connection-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    margin: 0.3rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.connection-item:hover {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary-color);
}



/* Node Labels for About Section */
.node-labels-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    padding-top: 12rem; /* Space for header on desktop */
}

@media (max-width: 768px) {
    .node-labels-container {
        padding-top: 10rem; /* Adjusted for mobile nav bar */
    }
}

.node-label {
    position: absolute;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    min-width: auto;
    max-width: none;
    text-align: center;
    box-shadow: none !important;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    cursor: pointer;
    margin: 0;
}

.node-label.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.95;
    }
}

.node-label:hover {
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 51;
}

.node-label:hover .label-name,
.node-label:hover .label-role {
    text-shadow: 
        0 0 15px currentColor,
        0 0 30px currentColor,
        0 0 45px currentColor,
        0 2px 5px rgba(0, 0, 0, 0.8),
        0 4px 10px rgba(0, 0, 0, 0.6);
}

.label-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 
        0 0 15px currentColor,
        0 0 30px currentColor,
        0 0 45px currentColor,
        0 3px 8px rgba(0, 0, 0, 0.9),
        0 6px 15px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    background: transparent !important;
    padding: 0;
    display: block;
}

/* Product labels - smaller text size */
.product-label .label-name {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
    text-shadow: 
        0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 30px currentColor,
        0 2px 5px rgba(0, 0, 0, 0.9),
        0 4px 10px rgba(0, 0, 0, 0.7);
}

.label-role {
    font-size: 0.85rem;
    color: #ffffff;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0;
    background: transparent !important;
    border-radius: 0;
    display: block;
    border: none !important;
    line-height: 1.3;
    box-shadow: none !important;
    text-shadow: 
        0 0 12px currentColor,
        0 0 25px currentColor,
        0 0 35px currentColor,
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

#label-company .label-name,
#label-company .label-role {
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 2px 5px rgba(0, 0, 0, 0.8),
        0 4px 10px rgba(0, 0, 0, 0.6);
}

#label-founder1 .label-name,
#label-founder1 .label-role {
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(0, 217, 255, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.9),
        0 4px 10px rgba(0, 0, 0, 0.7);
}

#label-founder2 .label-name,
#label-founder2 .label-role {
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(139, 92, 246, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.9),
        0 4px 10px rgba(0, 0, 0, 0.7);
}

/* About Page Header */
.about-header {
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 100;
    animation: headerFloat 3s ease-in-out infinite;
    pointer-events: none;
    padding: 0 2rem;
    max-width: 90%;
}

/* Products Page Header */
.products-header {
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 100;
    animation: headerFloat 3s ease-in-out infinite;
    pointer-events: none;
    padding: 0 2rem;
    max-width: 90%;
}

.products-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #00d9ff 0%, 
        #8b5cf6 50%, 
        #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

.products-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
}

@media (max-width: 768px) {
    .about-header {
        top: 7rem; /* Increased distance from nav bar */
        padding: 0 1rem;
    }
}

.about-subtitle-container {
    position: fixed;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 100;
    pointer-events: none;
    padding: 0 2rem;
    max-width: 90%;
    animation: subtitleFadeIn 1s ease-out 0.5s both;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes headerFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes headerSlideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.about-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #00d9ff 0%, 
        #8b5cf6 50%, 
        #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: titleShimmer 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
    padding: 0 1rem;
}

.about-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 217, 255, 0.5) 20%,
        rgba(139, 92, 246, 0.5) 50%,
        rgba(244, 114, 182, 0.5) 80%,
        transparent 100%);
    transform: translateY(-50%);
    z-index: -1;
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-50%) scaleX(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50%) scaleX(1);
    }
}

@keyframes titleShimmer {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.6));
    }
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--text-primary);
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1.5rem;
    padding: 0.8rem 3.5rem;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.2) 0%, 
        rgba(139, 92, 246, 0.2) 50%,
        rgba(244, 114, 182, 0.2) 100%);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(15px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.15);
    animation: subtitlePulse 3s ease-in-out infinite;
    min-width: 400px;
}

@keyframes subtitlePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
        border-color: rgba(0, 217, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
        border-color: rgba(0, 217, 255, 0.4);
    }
}

/* Color Legend */
.color-legend {
    position: fixed;
    top: 3rem;
    right: 2rem;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    min-width: 220px;
    z-index: 100;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 217, 255, 0.15);
    transition: all 0.3s ease;
}

.color-legend:hover {
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 217, 255, 0.25);
    transform: translateY(-2px);
}

.legend-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.legend-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 8px rgba(0, 217, 255, 0.4));
}

.legend-header-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.legend-items-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.legend-color-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.legend-color-item:hover {
    transform: translateX(5px);
}

.legend-color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.legend-color-label {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Mobile Quick Navigation */
.mobile-nav-buttons {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 1.8rem;
    z-index: 150;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.mobile-nav-buttons.active {
    display: flex;
    animation: slideUpMobile 0.3s ease-out;
}

@keyframes slideUpMobile {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.mobile-nav-btn {
    animation: float 4s ease-in-out infinite;
}

.mobile-nav-btn:nth-child(1) {
    animation-delay: 0s;
}

.mobile-nav-btn:nth-child(2) {
    animation-delay: 0.3s;
}

.mobile-nav-btn:nth-child(3) {
    animation-delay: 0.6s;
}

.mobile-nav-btn:nth-child(4) {
    animation-delay: 0.9s;
}

.mobile-nav-btn:hover,
.mobile-nav-btn:active,
.mobile-nav-btn.active {
    animation: none;
}

.mobile-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: visible;
}

/* Create circular node-like button with 3D sphere effect */
.mobile-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 65%);
    opacity: 0.7;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.mobile-nav-btn::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: 50%;
    background: inherit;
    opacity: 0.4;
    filter: blur(12px);
    z-index: -1;
    transition: all 0.3s ease;
}

.mobile-nav-btn .btn-label {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    z-index: 2;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    padding: 0;
    margin: 0;
}

.mobile-nav-btn:active {
    transform: translateY(-3px) scale(1.05);
}

.mobile-nav-btn:focus {
    outline: 2px solid currentColor;
    outline-offset: 3px;
    border-radius: 50%;
}

/* Hub Button - Gray/Dark (Circular Node) */
#nav-hub {
    background: radial-gradient(circle at 30% 30%, 
        rgba(74, 85, 104, 0.95) 0%,
        rgba(74, 85, 104, 0.75) 50%,
        rgba(50, 55, 70, 0.95) 100%);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(74, 85, 104, 0.3),
        inset -2px -2px 8px rgba(0, 0, 0, 0.4),
        inset 2px 2px 8px rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(74, 85, 104, 0.5);
}

#nav-hub .btn-label {
    color: #f0f0f0;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 0 12px rgba(240, 240, 240, 0.4);
}

#nav-hub:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 
        0 10px 32px rgba(0, 0, 0, 0.6),
        0 0 28px rgba(74, 85, 104, 0.5),
        inset -2px -2px 8px rgba(0, 0, 0, 0.5),
        inset 2px 2px 10px rgba(255, 255, 255, 0.2);
}

#nav-hub:hover::after {
    opacity: 0.5;
    filter: blur(16px);
}

#nav-hub.active {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 
        0 8px 28px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(74, 85, 104, 0.6),
        inset -2px -2px 8px rgba(0, 0, 0, 0.5),
        inset 2px 2px 10px rgba(255, 255, 255, 0.25);
    animation: nodePulse 2s ease-in-out infinite;
}

#nav-hub.active .btn-label {
    color: #ffffff;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 1),
        0 0 18px rgba(255, 255, 255, 0.6);
}

/* Software Button - Cyan (Circular Node) */
#nav-software {
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 217, 255, 0.95) 0%,
        rgba(0, 217, 255, 0.8) 50%,
        rgba(0, 180, 220, 0.95) 100%);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 217, 255, 0.4),
        inset -2px -2px 8px rgba(0, 0, 0, 0.4),
        inset 2px 2px 8px rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(0, 217, 255, 0.6);
}

#nav-software .btn-label {
    color: #00ffff;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 255, 255, 0.8),
        0 0 25px rgba(0, 217, 255, 0.5);
}

#nav-software:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 
        0 10px 32px rgba(0, 0, 0, 0.6),
        0 0 28px rgba(0, 217, 255, 0.6),
        inset -2px -2px 8px rgba(0, 0, 0, 0.5),
        inset 2px 2px 10px rgba(255, 255, 255, 0.3);
}

#nav-software:hover::after {
    opacity: 0.5;
    filter: blur(16px);
}

#nav-software.active {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 
        0 8px 28px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(0, 217, 255, 0.7),
        inset -2px -2px 8px rgba(0, 0, 0, 0.5),
        inset 2px 2px 10px rgba(255, 255, 255, 0.35);
    animation: nodePulse 2s ease-in-out infinite;
}

#nav-software.active .btn-label {
    color: #00ffff;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 1),
        0 0 20px rgba(0, 255, 255, 1),
        0 0 35px rgba(0, 217, 255, 0.8);
}

/* Web Button - Purple (Circular Node) */
#nav-web {
    background: radial-gradient(circle at 30% 30%, 
        rgba(139, 92, 246, 0.95) 0%,
        rgba(139, 92, 246, 0.8) 50%,
        rgba(110, 70, 200, 0.95) 100%);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(139, 92, 246, 0.4),
        inset -2px -2px 8px rgba(0, 0, 0, 0.4),
        inset 2px 2px 8px rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(139, 92, 246, 0.6);
}

#nav-web .btn-label {
    color: #a78bfa;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(167, 139, 250, 0.8),
        0 0 25px rgba(139, 92, 246, 0.5);
}

#nav-web:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 
        0 10px 32px rgba(0, 0, 0, 0.6),
        0 0 28px rgba(139, 92, 246, 0.6),
        inset -2px -2px 8px rgba(0, 0, 0, 0.5),
        inset 2px 2px 10px rgba(255, 255, 255, 0.3);
}

#nav-web:hover::after {
    opacity: 0.5;
    filter: blur(16px);
}

#nav-web.active {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 
        0 8px 28px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(139, 92, 246, 0.7),
        inset -2px -2px 8px rgba(0, 0, 0, 0.5),
        inset 2px 2px 10px rgba(255, 255, 255, 0.35);
    animation: nodePulse 2s ease-in-out infinite;
}

#nav-web.active .btn-label {
    color: #c4b5fd;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 1),
        0 0 20px rgba(196, 181, 253, 1),
        0 0 35px rgba(139, 92, 246, 0.8);
}

/* Marketing Button - Pink (Circular Node) */
#nav-marketing {
    background: radial-gradient(circle at 30% 30%, 
        rgba(244, 114, 182, 0.95) 0%,
        rgba(244, 114, 182, 0.8) 50%,
        rgba(220, 90, 160, 0.95) 100%);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(244, 114, 182, 0.4),
        inset -2px -2px 8px rgba(0, 0, 0, 0.4),
        inset 2px 2px 8px rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(244, 114, 182, 0.6);
}

#nav-marketing .btn-label {
    color: #ec4899;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.95),
        0 0 12px rgba(236, 72, 153, 1),
        0 0 20px rgba(244, 114, 182, 0.9),
        0 0 30px rgba(244, 114, 182, 0.7);
}

#nav-marketing:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 
        0 10px 32px rgba(0, 0, 0, 0.6),
        0 0 28px rgba(244, 114, 182, 0.6),
        inset -2px -2px 8px rgba(0, 0, 0, 0.5),
        inset 2px 2px 10px rgba(255, 255, 255, 0.3);
}

#nav-marketing:hover::after {
    opacity: 0.5;
    filter: blur(16px);
}

#nav-marketing.active {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 
        0 8px 28px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(244, 114, 182, 0.7),
        inset -2px -2px 8px rgba(0, 0, 0, 0.5),
        inset 2px 2px 10px rgba(255, 255, 255, 0.35);
    animation: nodePulse 2s ease-in-out infinite;
}

#nav-marketing.active .btn-label {
    color: #f472b6;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 1),
        0 0 15px rgba(244, 114, 182, 1),
        0 0 25px rgba(244, 114, 182, 1),
        0 0 35px rgba(236, 72, 153, 0.9);
}

@keyframes nodePulse {
    0%, 100% {
        box-shadow: 
            0 10px 35px rgba(0, 0, 0, 0.7),
            0 0 35px currentColor,
            inset -2px -2px 10px rgba(0, 0, 0, 0.4),
            inset 2px 2px 15px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 10px 35px rgba(0, 0, 0, 0.7),
            0 0 45px currentColor,
            inset -2px -2px 10px rgba(0, 0, 0, 0.4),
            inset 2px 2px 15px rgba(255, 255, 255, 0.3);
    }
}

/* Mobile Menu */
.nav-links.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideDown 0.3s ease-out;
    gap: 0.5rem;
    align-items: stretch;
}

/* Mobile Network Nodes - Cleaner Vertical Layout */
.nav-links.mobile-active::before {
    display: none;
}

.nav-links.mobile-active::after {
    display: none; /* Remove the vertical line for cleaner look */
}

@keyframes lineFlowVertical {
    0%, 100% {
        opacity: 0.4;
        background-position: 50% 0%;
    }
    50% {
        opacity: 0.8;
        background-position: 50% 100%;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.mobile-menu-toggle:active {
    transform: scale(0.9);
}

.mobile-menu-toggle.active {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .node-panel {
        width: 450px;
        max-width: 85vw;
    }
    
    .panel-content {
        padding: 2rem 1.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Change side panel to bottom sheet on mobile */
    .node-panel {
        top: auto !important;
        bottom: -100%;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 85vh !important;
        max-height: 85vh !important;
        border-left: none !important;
        border-top: 3px solid rgba(0, 217, 255, 0.3);
        border-radius: 30px 30px 0 0;
        box-shadow: 
            0 -10px 50px rgba(0, 0, 0, 0.8),
            0 -5px 100px rgba(0, 217, 255, 0.15);
        transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    }
    
    .node-panel::before {
        width: 100% !important;
        height: 4px !important;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, 
            rgba(0, 217, 255, 0.8) 0%,
            rgba(139, 92, 246, 0.6) 50%,
            rgba(244, 114, 182, 0.4) 100%);
    }
    
    .node-panel.active {
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        animation: panelSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes panelSlideUp {
        from {
            bottom: -100%;
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            bottom: 0;
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .panel-content {
        padding: 1.5rem 1.2rem 1.5rem;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .node-icon-container {
        margin-bottom: 1.5rem;
    }
    
    .node-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .founder-image {
        width: 120px;
        height: 120px;
    }
    
    .node-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .node-category {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .node-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .node-stats {
        margin-bottom: 1.5rem;
    }
    
    .node-stat-item {
        padding: 0.8rem;
    }
    
    .node-stat-value {
        font-size: 1.5rem;
    }
    
    .node-stat-label {
        font-size: 0.8rem;
    }
    
    .node-connections {
        margin-top: 1rem;
    }
    
    .connections-title {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .connection-item {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .panel-content {
        padding: 3rem 1.5rem 2rem;
        padding-top: 4rem;
    }
    
    .close-panel {
        top: 1rem;
        right: 1rem;
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        font-size: 2rem;
        font-weight: 700;
        background: rgba(255, 255, 255, 0.2) !important;
        border: 2px solid rgba(0, 217, 255, 0.6) !important;
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.4) !important;
        z-index: 10000 !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .close-panel:active {
        transform: scale(0.9);
        background: rgba(255, 0, 0, 0.3) !important;
        border-color: rgba(255, 0, 0, 0.6) !important;
    }
    
    /* Node labels - mobile optimized */
    .node-label {
        min-width: 140px;
        max-width: 180px;
        padding: 0.6rem 0.9rem;
        border-radius: 12px;
        font-size: 0.85rem;
    }
    
    .label-name {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }
    
    .label-role {
        font-size: 0.65rem;
        line-height: 1.3;
    }
    
    /* Panel content mobile adjustments */
    .node-icon-container {
        margin: 0 auto 1.5rem;
        padding: 0.5rem;
    }
    
    .node-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .founder-image {
        width: 250px;
        height: 250px;
    }
    
    .node-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .node-category {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .node-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .node-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .node-stat-item {
        padding: 1rem;
    }
    
    .node-stat-value {
        font-size: 1.3rem;
    }
    
    .node-stat-label {
        font-size: 0.75rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title-top {
        top: 30%;
    }
    
    .hero-bottom {
        bottom: 20%;
        gap: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .main-nav {
        top: 1rem;
        width: calc(100% - 2rem);
        padding: 0.9rem 1.5rem;
        border-radius: 30px;
    }
    
    .nav-links {
        display: none;
        gap: 1rem;
    }
    
    .nav-links.mobile-active {
        display: flex !important;
        flex-direction: column;
    }
    
    .nav-link {
        min-width: auto;
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.2rem 1rem 2.5rem;
        position: relative;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(0, 217, 255, 0.3);
        transform: translateX(5px);
    }
    
    .nav-link.active {
        background: rgba(0, 217, 255, 0.1);
        border-color: rgba(0, 217, 255, 0.5);
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
    }
    
    /* Mobile: Node circle - centered, always visible */
    .nav-link::before {
        left: 1.2rem;
        transform: translate(-50%, -50%);
        width: 12px;
        height: 12px;
        opacity: 0.6;
        background: radial-gradient(circle at 30% 30%, 
            rgba(255, 255, 255, 0.4) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 8px rgba(0, 217, 255, 0.3);
    }
    
    .nav-link:hover::before {
        opacity: 1;
        width: 14px;
        height: 14px;
        border-color: rgba(0, 217, 255, 0.6);
        box-shadow: 0 0 12px rgba(0, 217, 255, 0.5);
    }
    
    .nav-link.active::before {
        opacity: 1;
        width: 14px;
        height: 14px;
        background: radial-gradient(circle at 30% 30%, 
            rgba(0, 217, 255, 0.6) 0%,
            rgba(139, 92, 246, 0.4) 50%,
            transparent 100%);
        border-color: rgba(0, 217, 255, 0.8);
        box-shadow: 0 0 15px rgba(0, 217, 255, 0.7);
        animation: nodePulse 2s ease-in-out infinite;
    }
    
    /* Mobile: Connecting lines - subtle and clean */
    .nav-link:not(:last-child)::after {
        right: auto;
        bottom: -0.25rem;
        left: 1.2rem;
        top: auto;
        width: 2px;
        height: 0.5rem;
        transform: translateX(-50%);
        background: linear-gradient(
            180deg,
            rgba(0, 217, 255, 0.3) 0%,
            rgba(139, 92, 246, 0.2) 50%,
            transparent 100%
        );
        border-radius: 2px;
        opacity: 0.4;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        opacity: 0.7;
    }
    
    /* Hide horizontal main line on mobile */
    .nav-links::before {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav-buttons {
        display: flex;
        gap: 1.4rem;
        bottom: 1rem;
    }
    
    .mobile-nav-btn {
        width: 68px;
        height: 68px;
        min-width: 68px;
        min-height: 68px;
    }
    
    .mobile-nav-btn .btn-label {
        font-size: 0.7rem;
    }
    
    .info-stats {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .stat-card {
        min-width: auto;
        padding: 0.8rem 1.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .control-hint {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .loader-text {
        font-size: 2rem;
    }
    
    .brand-logo {
        font-size: 1.2rem;
    }
    
    .about-header {
        top: 7rem; /* Increased distance from nav bar */
    }
    
    .products-header {
        top: 7rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .products-subtitle {
        font-size: 0.9rem;
    }
    
    .about-subtitle-container {
        bottom: 6rem;
    }
    
    .about-subtitle {
        font-size: 0.9rem;
        font-weight: 400;
        letter-spacing: 0.05em;
        padding: 0.7rem 2.5rem;
        font-family: 'Rajdhani', sans-serif;
        line-height: 1.4;
        min-width: 300px;
    }
    
    .founder-image {
        width: 250px;
        height: 250px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title-top {
        top: 28%;
    }
    
    .hero-bottom {
        bottom: 18%;
        gap: 0.6rem;
    }
    
    .about-header {
        top: 7rem; /* Increased distance from nav bar */
        padding: 0 1rem;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
        padding: 0 0.5rem;
        letter-spacing: 0.1em;
    }
    
    .products-title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
        padding: 0 0.5rem;
        letter-spacing: 0.1em;
    }
    
    .products-subtitle {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
    
    .about-subtitle-container {
        bottom: 5rem;
    }
    
    .about-subtitle {
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.03em;
        margin-top: 0;
        padding: 0.6rem 2rem;
        font-family: 'Rajdhani', sans-serif;
        line-height: 1.3;
        text-transform: uppercase;
        min-width: 280px;
    }
    
    .node-labels-container {
        padding-top: 10rem;
    }
    
    .node-label {
        min-width: auto;
        max-width: none;
        padding: 0;
    }
    
    .label-name {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .label-role {
        font-size: 0.7rem;
        padding: 0;
    }
    
    .founder-image {
        width: 200px;
        height: 200px;
    }
    
    .node-label {
        min-width: 150px;
        padding: 0.6rem 1rem;
    }
    
    .label-name {
        font-size: 0.9rem;
    }
    
    .label-role {
        font-size: 0.7rem;
    }
    
    .node-panel {
        height: 90vh !important;
        max-height: 90vh !important;
        bottom: -100% !important;
    }
    
    .node-panel.active {
        bottom: 0 !important;
    }
    
    .panel-content {
        padding: 1.2rem 1rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .node-title {
        font-size: 1.5rem;
    }
    
    .node-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .founder-image {
        width: 200px;
        height: 200px;
    }
    
    .node-stat-value {
        font-size: 1.3rem;
    }
    
    .node-stat-label {
        font-size: 0.75rem;
    }
    
    .node-label {
        min-width: 130px;
        padding: 0.5rem 0.8rem;
    }
    
    .label-name {
        font-size: 0.8rem;
    }
    
    .label-role {
        font-size: 0.6rem;
    }
    
    .stat-card {
        padding: 0.6rem 1rem;
    }
    
    .color-legend {
        top: 4.5rem;
        right: 0.5rem;
        min-width: 180px;
        padding: 0.8rem 1rem;
    }
    
    .legend-header-text {
        font-size: 0.85rem;
    }
    
    .legend-color-label {
        font-size: 0.8rem;
    }
    
    .legend-color-dot {
        width: 12px;
        height: 12px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    overflow-y: auto;
    padding: 6rem 2rem 2rem;
    padding-top: 6rem; /* Desktop: account for nav bar */
    background: linear-gradient(135deg, 
        rgba(10, 10, 20, 0.98) 0%, 
        rgba(15, 15, 30, 0.98) 50%,
        rgba(20, 20, 40, 0.98) 100%);
    backdrop-filter: blur(20px);
    animation: contactFadeIn 0.8s ease-out;
}

@keyframes contactFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #00d9ff 0%, 
        #8b5cf6 50%,
        #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-container,
.contact-info-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-form-container:hover,
.contact-info-container:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 217, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 
        0 0 20px rgba(0, 217, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Rajdhani', sans-serif;
}

.submit-button {
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.2) 0%, 
        rgba(139, 92, 246, 0.2) 100%);
    border: 2px solid rgba(0, 217, 255, 0.5);
    border-radius: 12px;
    padding: 1rem 2rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.3) 0%, 
        rgba(139, 92, 246, 0.3) 100%);
    border-color: rgba(0, 217, 255, 0.8);
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    margin-top: 0.5rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
}

.form-message.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 217, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.2);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.contact-info-card h3 {
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.contact-info-card a,
.contact-info-card p {
    color: var(--text-primary);
    font-size: 1rem;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.contact-info-card a:hover {
    color: #00d9ff;
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-numbers a {
    display: block;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: rgba(0, 217, 255, 0.6);
    color: #00d9ff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Section Responsive */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 7rem 1.5rem 2rem; /* Increased top padding for nav bar */
        padding-top: 7rem; /* More space from nav bar */
        -webkit-overflow-scrolling: touch;
    }
    
    .contact-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .contact-title {
        font-size: 2rem;
        letter-spacing: 0.05em;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
    
    .contact-container {
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .contact-form {
        gap: 1.2rem;
    }
    
    .form-group {
        gap: 0.6rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 1rem;
        border-radius: 10px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        letter-spacing: 0.08em;
        min-height: 48px;
        touch-action: manipulation;
    }
    
    .form-message {
        padding: 0.9rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .contact-info-container {
        gap: 1.2rem;
    }
    
    .contact-info-card {
        padding: 1.2rem;
        border-radius: 14px;
    }
    
    .info-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-info-card a,
    .contact-info-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .phone-numbers {
        gap: 0.4rem;
    }
    
    .social-links {
        gap: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        touch-action: manipulation;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 6.5rem 1rem 1.5rem; /* Increased for smaller screens */
        padding-top: 6.5rem;
    }
    
    .contact-header {
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .contact-title {
        font-size: 1.75rem;
        letter-spacing: 0.03em;
        margin-bottom: 0.6rem;
    }
    
    .contact-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0;
    }
    
    .contact-container {
        gap: 1.2rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 1.2rem;
        border-radius: 14px;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.85rem 0.9rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    
    .form-group textarea {
        min-height: 90px;
    }
    
    .submit-button {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
        width: 100%;
    }
    
    .form-message {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .contact-info-container {
        gap: 1rem;
    }
    
    .contact-info-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .info-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-info-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-card a,
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    .phone-numbers {
        gap: 0.35rem;
    }
    
    .phone-numbers a {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.7rem;
        justify-content: center;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        border-radius: 8px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 360px) {
    .contact-section {
        padding: 6rem 0.8rem 1.2rem; /* Increased for very small screens */
        padding-top: 6rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-subtitle {
        font-size: 0.8rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 0.85rem 1rem;
        font-size: 0.85rem;
    }
    
    .contact-info-card {
        padding: 0.9rem;
    }
    
    .info-icon {
        font-size: 1.6rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    overflow-y: auto;
    padding: 6rem 2rem 2rem;
    padding-top: 6rem; /* Desktop: account for nav bar */
    background: linear-gradient(135deg, 
        rgba(10, 10, 20, 0.98) 0%, 
        rgba(15, 15, 30, 0.98) 50%,
        rgba(20, 20, 40, 0.98) 100%);
    backdrop-filter: blur(20px);
    animation: servicesFadeIn 0.8s ease-out;
}

@keyframes servicesFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #00d9ff 0%, 
        #8b5cf6 50%,
        #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 217, 255, 0.5),
        transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card:hover {
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 217, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.service-card[data-service="software"]:hover {
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 217, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-card[data-service="web"]:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-card[data-service="marketing"]:hover {
    border-color: rgba(244, 114, 182, 0.6);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(244, 114, 182, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
    color: var(--text-primary);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.service-card:hover .service-icon::before {
    width: 200px;
    height: 200px;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px currentColor;
}

.service-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.service-description {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-align: center;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.service-card:hover .feature-item {
    opacity: 1;
}

.feature-icon {
    color: #00d9ff;
    font-weight: 700;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card[data-service="web"] .feature-icon {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.service-card[data-service="marketing"] .feature-icon {
    color: #f472b6;
    background: rgba(244, 114, 182, 0.1);
}

.service-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.service-stat {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #00d9ff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card[data-service="web"] .stat-number {
    background: linear-gradient(135deg, #8b5cf6, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card[data-service="marketing"] .stat-number {
    background: linear-gradient(135deg, #f472b6, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-primary);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-explore-btn {
    width: 100%;
    padding: 1rem 2rem;
    margin-top: auto;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.2) 0%, 
        rgba(139, 92, 246, 0.2) 100%);
    border: 2px solid rgba(0, 217, 255, 0.5);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.service-explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.service-explore-btn:hover::before {
    left: 100%;
}

.service-explore-btn:hover {
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.3) 0%, 
        rgba(139, 92, 246, 0.3) 100%);
    border-color: rgba(0, 217, 255, 0.8);
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.service-card[data-service="web"] .service-explore-btn {
    border-color: rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.2) 0%, 
        rgba(244, 114, 182, 0.2) 100%);
}

.service-card[data-service="web"] .service-explore-btn:hover {
    border-color: rgba(139, 92, 246, 0.8);
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.3) 0%, 
        rgba(244, 114, 182, 0.3) 100%);
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card[data-service="marketing"] .service-explore-btn {
    border-color: rgba(244, 114, 182, 0.5);
    background: linear-gradient(135deg, 
        rgba(244, 114, 182, 0.2) 0%, 
        rgba(255, 107, 157, 0.2) 100%);
}

.service-card[data-service="marketing"] .service-explore-btn:hover {
    border-color: rgba(244, 114, 182, 0.8);
    background: linear-gradient(135deg, 
        rgba(244, 114, 182, 0.3) 0%, 
        rgba(255, 107, 157, 0.3) 100%);
    box-shadow: 
        0 0 30px rgba(244, 114, 182, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-explore-btn:active {
    transform: translateY(0);
}

/* Services Section Responsive */
@media (max-width: 968px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 7rem 1.5rem 2rem; /* Increased top padding for nav bar */
        padding-top: 7rem; /* More space from nav bar */
        -webkit-overflow-scrolling: touch;
    }
    
    .services-header {
        margin-bottom: 3rem;
        padding: 0 0.5rem;
        margin-top: 1rem; /* Extra space from top */
    }
    
    .services-title {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }
    
    .services-subtitle {
        font-size: 0.9rem;
    }
    
    .services-container {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .service-name {
        font-size: 1.6rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .service-stats {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .service-explore-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 6.5rem 1rem 1.5rem; /* Increased for smaller screens */
        padding-top: 6.5rem;
    }
    
    .services-title {
        font-size: 1.75rem;
    }
    
    .services-subtitle {
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .service-name {
        font-size: 1.4rem;
    }
    
    .service-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .service-features {
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .service-stats {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .service-explore-btn {
        padding: 0.85rem 1.2rem;
        font-size: 0.9rem;
    }
}
