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

:root {
    --neon-cyan: #00f3ff;
    --neon-blue: #0066ff;
    --electric-blue: #0099ff;
    --purple-blue: #6c5ce7;
    --dark-bg: #0a0e27;
    --darker-bg: #050815;
    --accent-purple: #a855f7;
    --glow-cyan: rgba(0, 243, 255, 0.5);
    --glow-blue: rgba(0, 102, 255, 0.4);
    --glow-purple: rgba(108, 92, 231, 0.3);
    --text-light: #e0e7ff;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: var(--darker-bg);
    color: var(--text-light);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    padding-top: 100px;
    background: var(--dark-bg);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 243, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--dark-bg) 0%, #0f172a 50%, #1a1f3a 100%);
    opacity: 1;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    animation: float 25s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 15%;
    background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 50%;
    background: radial-gradient(circle, var(--glow-purple) 0%, transparent 70%);
    animation-delay: 10s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 30%;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.2) 0%, transparent 70%);
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(40px, 40px) rotate(270deg) scale(1.05);
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.hero-text {
    color: var(--white);
}

.hero-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.1s both;
    display: inline-block;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    letter-spacing: 0.02em;
}

.title-line {
    display: block;
    position: relative;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--electric-blue) 50%, var(--purple-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.3));
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.6;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 300;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--electric-blue) 100%);
    color: var(--dark-bg);
    box-shadow: 
        0 10px 30px rgba(0, 243, 255, 0.3),
        0 0 20px rgba(0, 243, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 243, 255, 0.5),
        0 0 30px rgba(0, 243, 255, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 
        0 0 20px rgba(0, 243, 255, 0.3),
        inset 0 0 20px rgba(0, 243, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--electric-blue);
    color: var(--electric-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 153, 255, 0.5),
        inset 0 0 30px rgba(0, 153, 255, 0.2);
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease-out 0.6s both;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.mesh-gradient {
    position: absolute;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 243, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(108, 92, 231, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 153, 255, 0.2) 0%, transparent 60%);
    filter: blur(80px);
    animation: meshMove 15s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes meshMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.geometric-shape {
    position: absolute;
    border: 2px solid;
    opacity: 0.4;
    animation: geometricFloat 12s infinite ease-in-out;
}

.shape-polygon-1 {
    width: 200px;
    height: 200px;
    border-color: var(--neon-cyan);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: 10%;
    right: 15%;
    animation-delay: 0s;
    box-shadow: 0 0 40px var(--glow-cyan);
    filter: blur(1px);
}

.shape-polygon-2 {
    width: 150px;
    height: 150px;
    border-color: var(--purple-blue);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
    box-shadow: 0 0 40px var(--glow-purple);
    filter: blur(1px);
}

.shape-polygon-3 {
    width: 180px;
    height: 180px;
    border-color: var(--electric-blue);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
    box-shadow: 0 0 40px var(--glow-blue);
    filter: blur(1px);
}

@keyframes geometricFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-15px, 15px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translate(15px, 20px) rotate(270deg) scale(1.05);
    }
}

.shape-polygon-3 {
    animation-name: geometricFloatCentered;
}

@keyframes geometricFloatCentered {
    0%, 100% {
        transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-50%, -50%) translate(20px, -20px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-50%, -50%) translate(-15px, 15px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translate(-50%, -50%) translate(15px, 20px) rotate(270deg) scale(1.05);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(108, 92, 231, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.3);
    animation: floatElement 8s infinite ease-in-out;
    overflow: hidden;
}

.float-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 25%;
    right: 25%;
    animation-delay: 2.5s;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 153, 255, 0.2));
}

.float-3 {
    top: 50%;
    right: 15%;
    animation-delay: 1.25s;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2), rgba(0, 243, 255, 0.2));
}

.element-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: elementPulse 3s infinite ease-in-out;
    filter: blur(15px);
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 1;
    }
    66% {
        transform: translate(-25px, 25px) scale(0.9);
        opacity: 0.8;
    }
}

@keyframes elementPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s ease-out 1s both;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 10px var(--glow-cyan);
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
    box-shadow: 0 0 5px var(--neon-cyan);
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.arrow {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arrow span {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--neon-cyan);
    border-bottom: 2px solid var(--neon-cyan);
    transform: rotate(45deg);
    animation: arrowDown 2s infinite;
    box-shadow: 0 0 5px var(--glow-cyan);
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--glow-cyan);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-selector {
    display: flex;
    gap: 0;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    padding: 2px;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    text-transform: uppercase;
}

.lang-btn:hover {
    color: var(--neon-cyan);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--electric-blue) 100%);
    color: var(--dark-bg);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--electric-blue) 100%);
    color: var(--dark-bg);
    box-shadow: 
        0 10px 30px rgba(0, 243, 255, 0.4),
        0 0 25px rgba(0, 243, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.15);
    animation: pulseGlow 2s ease-in-out infinite;
    font-weight: 700;
    letter-spacing: 0.08em;
    border: 2px solid var(--neon-cyan);
}

.btn-nav:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 243, 255, 0.6),
        0 0 35px rgba(0, 243, 255, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.25);
    filter: brightness(1.15);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(0, 243, 255, 0.4),
            0 0 25px rgba(0, 243, 255, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.15);
    }
    50% {
        box-shadow: 
            0 10px 35px rgba(0, 243, 255, 0.6),
            0 0 30px rgba(0, 243, 255, 0.5),
            inset 0 0 25px rgba(255, 255, 255, 0.2);
    }
}

.hamburger {
        display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--glow-cyan);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.03em;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--darker-bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px var(--glow-cyan));
}

.service-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 10px var(--glow-cyan));
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: slideInLeft 0.8s ease-out;
}

.about-visual {
    animation: slideInRight 0.8s ease-out;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.about-features li {
    color: var(--text-light);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    opacity: 0.9;
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.stat-item {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
    transform: translateY(-5px);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--glow-cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: var(--darker-bg);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 50px rgba(0, 243, 255, 0.3);
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.stat-number {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-card p {
    color: var(--text-light);
    opacity: 0.8;
        font-size: 0.9rem;
    }
    
.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--electric-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-plus {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--neon-cyan);
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.3);
}

.process-step:hover .step-number {
    opacity: 1;
    transform: scale(1.1);
}

.step-number {
    transition: all 0.4s ease;
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--glow-cyan);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.step-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.portfolio-item {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    aspect-ratio: 1;
    overflow: hidden;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 50px rgba(0, 243, 255, 0.4);
    animation: portfolioPulse 1.5s ease-in-out infinite;
}

@keyframes portfolioPulse {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(0, 243, 255, 0.4);
    }
    50% {
        box-shadow: 0 15px 60px rgba(0, 243, 255, 0.6);
    }
}

.portfolio-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-logo {
    filter: grayscale(0%) brightness(1.2);
    transform: scale(1.1);
}

.portfolio-note {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-note p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 10px var(--glow-cyan));
}

.contact-icon svg {
        width: 100%;
    height: 100%;
}

.contact-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}

.contact-item a {
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-icon {
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px var(--glow-cyan));
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
        width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    transform: translateY(-2px);
    background: rgba(10, 14, 39, 0.8);
}

.form-group input,
.form-group textarea {
    transition: all 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    align-self: flex-start;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--neon-cyan);
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.6;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    opacity: 1;
}

/* Responsive Updates */
@media (max-width: 968px) {
    .nav-actions {
        gap: 1rem;
    }
    
    .btn-nav {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(0, 243, 255, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        position: fixed;
        top: 70px;
        right: 2rem;
        flex-direction: column;
        gap: 1rem;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .services-grid,
    .stats-grid,
    .process-timeline,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number,
    .stat-plus {
        font-size: 3rem;
    }
}