:root {
    --bg-color: #000000;
    --bg-secondary: #0a0a14;
    --card-bg: rgba(10, 20, 30, 0.7);
    --text-main: #ffffff;
    --text-muted: #b0b8c8;
    --primary: #022b40;
    --secondary: #06b6d4;
    --accent: #06b6d4;
    --neon-cyan: #06b6d4;
    --neon-pink: #06b6d4;
    --neon-blue: #0080ff;
    /* Tech Industry Colors */
    --ai-purple: #06b6d4;
    --cloud-blue: #3b82f6;
    --code-green: #10b981;
    --data-orange: #f59e0b;
    --gradient-main: linear-gradient(135deg, #022b40 0%, #06b6d4 100%);
    --gradient-neon: linear-gradient(135deg, #022b40 0%, #06b6d4 100%);
    --gradient-holographic: linear-gradient(135deg, #06b6d4 0%, #022b40 50%, #06b6d4 100%);
    --gradient-tech: linear-gradient(135deg, #022b40 0%, #3b82f6 50%, #10b981 100%);
    --glass-bg: rgba(6, 182, 212, 0.03);
    --glass-border: rgba(6, 182, 212, 0.25);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
    --section-spacing: 140px;
    --card-spacing: 32px;
    --shadow-neon: 0 0 20px rgba(6, 182, 212, 0.5);
    --shadow-neon-strong: 0 0 40px rgba(6, 182, 212, 0.8);
    --shadow-tech: 0 8px 32px rgba(2, 43, 64, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Three.js Canvas */
#threejs-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.8;
}

/* Animated Grid Background - Enhanced with Circuit Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
    animation: gridMove 20s linear infinite;
    z-index: -1;
    opacity: 0.4;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

/* Floating Particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(0, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(2, 43, 64, 0.8), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(0, 128, 255, 0.8), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(0, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90% 60%, rgba(2, 43, 64, 0.8), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: particleFloat 15s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes particleFloat {

    0%,
    100% {
        background-position: 0% 0%;
    }

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-left: 1px solid rgba(0, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-pink));
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--neon-cyan), transparent) 1;
    box-shadow: 0 4px 30px rgba(0, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    transition: all 0.3s ease;
    position: relative;
}

.logo:hover {
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
    transform: scale(1.05);
}

.logo .dot {
    color: var(--neon-pink);
    animation: neonPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--neon-pink));
}

@keyframes neonPulse {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 10px var(--neon-pink));
    }

    50% {
        opacity: 0.6;
        filter: drop-shadow(0 0 5px var(--neon-pink));
    }
}

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

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-list a.cta-btn {
    padding: 12px 32px;
    /* Increased padding */
    background: var(--gradient-main);
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(2, 43, 64, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-list a.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
    background: var(--gradient-neon);
    border-color: var(--neon-cyan);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 5px var(--neon-cyan);
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-main);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--neon-cyan);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 20px rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6), inset 0 0 30px rgba(0, 255, 255, 0.2);
    border-color: var(--neon-cyan);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 12px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    transition: left 0.5s;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: #000;
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated Orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2, 43, 64, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {

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

    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

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

.hero-title {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient-holographic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
    animation: holographicShift 5s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes holographicShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

/* Tech Badges */
.tech-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 20, 40, 0.6);
    border: 1.5px solid;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    cursor: default;
}

.tech-badge i {
    font-size: 1rem;
}

.tech-badge.ai {
    border-color: var(--ai-purple);
    color: var(--ai-purple);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.tech-badge.ai:hover {
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
}

.tech-badge.cloud {
    border-color: var(--cloud-blue);
    color: var(--cloud-blue);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.tech-badge.cloud:hover {
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.tech-badge.devops {
    border-color: var(--code-green);
    color: var(--code-green);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.tech-badge.devops:hover {
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.tech-badge.secure {
    border-color: var(--data-orange);
    color: var(--data-orange);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

.tech-badge.secure:hover {
    background: rgba(245, 158, 11, 0.1);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .tech-badges {
        justify-content: center;
    }
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glowing-orb {
    width: 350px;
    height: 350px;
    background: conic-gradient(from 0deg, var(--neon-cyan), var(--neon-pink), var(--neon-blue), var(--neon-cyan));
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: orbRotate 10s linear infinite;
}

@keyframes orbRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Modern Tech Cards */
.tech-card {
    position: absolute;
    background: rgba(0, 10, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(0, 255, 255, 0.4),
        inset 0 0 40px rgba(0, 255, 255, 0.05);
}

/* Card Header */
.card-header {
    background: rgba(0, 20, 40, 0.6);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-title i {
    color: var(--neon-cyan);
    font-size: 1rem;
}

/* Window Controls */
.window-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.8;
}

.control.red {
    background: #ff5f56;
    box-shadow: 0 0 5px #ff5f56;
}

.control.yellow {
    background: #ffbd2e;
    box-shadow: 0 0 5px #ffbd2e;
}

.control.green {
    background: #27c93f;
    box-shadow: 0 0 5px #27c93f;
}

/* Code Editor Card */
.code-editor {
    top: 10%;
    left: 0%;
    width: 320px;
    animation: techFloat 8s ease-in-out infinite 0s;
}

.code-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 4px;
    animation: codeFadeIn 0.5s ease-out backwards;
}

.code-line:nth-child(1) {
    animation-delay: 0.1s;
}

.code-line:nth-child(2) {
    animation-delay: 0.2s;
}

.code-line:nth-child(3) {
    animation-delay: 0.3s;
}

.code-line:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes codeFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

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

.keyword {
    color: #ff79c6;
    font-weight: 600;
}

.variable {
    color: #50fa7b;
}

.function {
    color: #8be9fd;
}

.string {
    color: #f1fa8c;
}

/* Metrics Panel */
.metrics-panel {
    top: 50%;
    right: 0%;
    width: 280px;
    animation: techFloat 7s ease-in-out infinite 1s;
}

.metrics-content {
    padding: 20px;
}

.metric-item {
    margin-bottom: 20px;
}

.metric-item:last-child {
    margin-bottom: 0;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-bar {
    height: 8px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.metric-fill {
    height: 100%;
    background: var(--gradient-neon);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    animation: metricPulse 2s ease-in-out infinite, metricGrow 1s ease-out;
}

@keyframes metricGrow {
    from {
        width: 0 !important;
    }
}

@keyframes metricPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes scaleGrowth {
    0% {
        width: 15%;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

.metric-value {
    font-size: 0.9rem;
    color: var(--neon-cyan);
    font-weight: 700;
    text-align: right;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Terminal Card */
.terminal {
    bottom: 10%;
    left: 10%;
    width: 340px;
    animation: techFloat 9s ease-in-out infinite 2s;
}

.terminal-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
}

.terminal-line {
    color: #50fa7b;
    margin-bottom: 8px;
    animation: terminalType 0.5s ease-out backwards;
}

.terminal-line:nth-child(1) {
    animation-delay: 0.2s;
}

.terminal-line:nth-child(2) {
    animation-delay: 0.6s;
}

.terminal-line:nth-child(3) {
    animation-delay: 1s;
}

.terminal-line:nth-child(4) {
    animation-delay: 1.4s;
}

@keyframes terminalType {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }

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

.terminal-line .success {
    color: #00ff00;
    font-weight: bold;
    text-shadow: 0 0 10px #00ff00;
}

.typing-cursor {
    color: var(--neon-cyan);
    animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

/* Tech Float Animation */
@keyframes techFloat {

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

    25% {
        transform: translateY(-20px) rotate(1deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }

    75% {
        transform: translateY(-25px) rotate(0.5deg);
    }
}

/* Sections General */
section {
    padding: var(--section-spacing) 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.section-header {
    text-align: center;
    margin-bottom: 90px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    background: var(--gradient-holographic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
    background-size: 200% 200%;
    animation: holographicShift 5s ease-in-out infinite;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* About */
.about-content-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 968px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.about-text h3 {
    font-size: 2.4rem;
    margin-bottom: 28px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.9;
    font-size: 1.08rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.stat-item {
    background: rgba(0, 20, 40, 0.5);
    padding: 36px 28px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.25);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--neon-cyan), transparent);
    animation: borderRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(0, 10, 20, 0.9);
    border-radius: 18px;
    z-index: -1;
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.4);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.5));
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--card-spacing);
}

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

.service-card {
    background: rgba(0, 20, 40, 0.5);
    padding: 44px;
    border-radius: 24px;
    border: 2px solid rgba(0, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Tech-specific card accents */
.service-card:nth-child(1) {
    border-color: rgba(6, 182, 212, 0.3);
    /* AI Purple */
}

.service-card:nth-child(2) {
    border-color: rgba(59, 130, 246, 0.3);
    /* Cloud Blue */
}

.service-card:nth-child(3) {
    border-color: rgba(16, 185, 129, 0.3);
    /* Code Green */
}

.service-card:nth-child(4) {
    border-color: rgba(245, 158, 11, 0.3);
    /* Data Orange */
}

.service-card:nth-child(5) {
    border-color: rgba(6, 182, 212, 0.3);
    /* AI Purple */
}

.service-card:nth-child(6) {
    border-color: rgba(0, 255, 255, 0.3);
    /* Cyan */
}

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

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

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-neon);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow:
        0 16px 50px rgba(0, 255, 255, 0.3),
        0 0 30px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 255, 0.05);
}

.service-card .icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.5));
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    filter: drop-shadow(0 0 25px rgba(6, 182, 212, 0.8));
    transform: scale(1.1);
}

/* Specific icon colors for tech services */
.service-card:nth-child(1) .icon {
    background: linear-gradient(135deg, #06b6d4, #022b40);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.6));
}

.service-card:nth-child(2) .icon {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
}

.service-card:nth-child(3) .icon {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.6));
}

.service-card h3 {
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-tech);
    border-radius: 2px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    flex-grow: 1;
}

/* Process - Growth Roadmap */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--card-spacing);
    position: relative;
}

/* Connecting Line (Desktop) */
@media (min-width: 769px) {
    .process-grid::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-pink), transparent);
        z-index: 0;
        transform: translateY(-50%);
        opacity: 0.5;
    }
}

.process-step {
    background: rgba(0, 20, 40, 0.5);
    padding: 44px;
    border-radius: 24px;
    border: 2px solid rgba(0, 255, 255, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    height: 100%;
    z-index: 1;
    /* Keep above line */
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 12px 40px rgba(2, 43, 64, 0.3);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(2, 43, 64, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--neon-pink);
    box-shadow:
        0 12px 40px rgba(2, 43, 64, 0.3),
        0 0 30px rgba(2, 43, 64, 0.2);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 10px;
    right: 20px;
    opacity: 0.3;
}

.process-step h3 {
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.process-step p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--card-spacing);
}

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

.testimonial-card {
    background: rgba(0, 20, 40, 0.5);
    padding: 48px;
    border-radius: 24px;
    border: 2px solid rgba(0, 255, 255, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow:
        0 16px 50px rgba(0, 255, 255, 0.3),
        0 0 30px rgba(0, 255, 255, 0.2);
}

.quote-icon {
    font-size: 2.5rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 32px;
    font-size: 1.08rem;
    line-height: 1.9;
    flex-grow: 1;
}

.client-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--neon-cyan);
}

.client-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: rgba(0, 20, 40, 0.5);
    padding: 70px;
    border-radius: 32px;
    border: 2px solid rgba(0, 255, 255, 0.25);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 50px 40px;
    }
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 255, 255, 0.1) 90deg, transparent 180deg);
    animation: contactRotate 20s linear infinite;
}

@keyframes contactRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contact-info,
.contact-form {
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-item i {
    color: var(--neon-cyan);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.info-item a {
    color: var(--text-muted);
}

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

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--neon-cyan);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(0, 20, 40, 0.6);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    background: rgba(0, 30, 50, 0.8);
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--neon-cyan), transparent) 1;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .header .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        border-bottom: 2px solid var(--neon-cyan);
        transform: translateY(-150%);
        transition: 0.3s ease-in-out;
        z-index: 999;
    }

    .header .nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-visual {
        height: 400px;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }


    .section-title {
        font-size: 2.5rem;
    }
}