/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #0a0a0a;
}

/* Tech-themed Custom Cursors */
body {
    cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="8" stroke="%2300a9ff" stroke-width="2"/><circle cx="12" cy="12" r="3" fill="%2300ff88"/></svg>') 12 12, auto;
}

a:hover, button:hover, .nav-link:hover {
    cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><polygon points="12,2 22,20 12,17 2,20" fill="%2300ff88"/></svg>') 12 12, pointer;
}

/* Navigation Styles with Tech Theme */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(16, 24, 40, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    box-shadow: 0 4px 20px rgba(0, 169, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 169, 255, 0.3);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(16, 24, 40, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    box-shadow: 0 8px 32px rgba(0, 169, 255, 0.3);
}

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

/* Tech Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-svg {
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-svg {
    transform: rotate(5deg);
    filter: drop-shadow(0 0 10px #00a9ff);
}

.brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    letter-spacing: 0.5px;
}

/* Circuit Animations */
@keyframes circuit-pulse {
    0%, 100% { 
        stroke-dashoffset: 0;
        opacity: 0.8;
    }
    50% { 
        stroke-dashoffset: 20;
        opacity: 1;
    }
}

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

@keyframes processor-pulse {
    0%, 100% { 
        fill: #00ff88;
        filter: drop-shadow(0 0 5px #00ff88);
    }
    50% { 
        fill: #00a9ff;
        filter: drop-shadow(0 0 10px #00a9ff);
    }
}

.circuit-1, .circuit-2 {
    stroke-dasharray: 10, 5;
    animation: circuit-pulse 3s ease-in-out infinite;
}

.circuit-2 {
    animation-delay: 1.5s;
}

.data-nodes circle {
    animation: node-glow 2s ease-in-out infinite;
}

.node-1 { animation-delay: 0s; }
.node-2 { animation-delay: 0.3s; }
.node-3 { animation-delay: 0.6s; }
.node-4 { animation-delay: 0.9s; }
.node-5 { animation-delay: 1.2s; }
.node-6 { animation-delay: 1.5s; }

.processor {
    animation: processor-pulse 4s ease-in-out infinite;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #00ff88;
    background: rgba(0,169,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

/* Floating animation on scroll */
.nav-item.floating {
    animation: float 2s ease-in-out infinite;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(0, 169, 255, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #00a9ff, #00ff88);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: #00ff88;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: #00ff88;
}

/* Hero Section - Unique Tech Design */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #0f172a 0%, #020617 70%);
}

/* Matrix Background */
.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#matrix {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

/* Floating Tech Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-chip,
.floating-node,
.floating-circuit {
    position: absolute;
    opacity: 0.7;
    animation: float-tech 6s ease-in-out infinite;
}

.floating-chip {
    width: 60px;
    height: 60px;
}

.floating-node {
    width: 40px;
    height: 40px;
}

.floating-circuit {
    width: 80px;
    height: 80px;
}

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

.chip-2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.node-1 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.node-2 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.circuit-1 {
    top: 70%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes float-tech {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 1;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 169, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Terminal Window */
.terminal-window {
    background: rgba(16, 24, 40, 0.9);
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 169, 255, 0.3);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background: rgba(30, 41, 59, 0.8);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 169, 255, 0.2);
}

.terminal-controls {
    display: flex;
    gap: 0.5rem;
}

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

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.terminal-title {
    color: #64748b;
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
}

.terminal-body {
    padding: 1rem;
    font-family: 'Courier New', monospace;
    color: #00ff88;
}

.prompt {
    color: #00a9ff;
    margin-right: 0.5rem;
}

.cursor {
    animation: blink 1s infinite;
    color: #00ff88;
}

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

/* Hero Text */
.hero-text {
    margin-bottom: 3rem;
}

.hero-headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.glitch-text {
    position: relative;
    display: inline-block;
    animation: glitch 2s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: #00a9ff;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #ff0080;
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

.tech-gradient {
    background: linear-gradient(45deg, #00a9ff, #00ff88, #a855f7);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #00a9ff, #0066cc);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 169, 255, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 169, 255, 0.6);
}

.cta-button.secondary {
    background: rgba(0, 169, 255, 0.1);
    color: #00ff88;
    border: 2px solid #00ff88;
}

.cta-button.secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

/* CTA Button Styles */
.cta-btn {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #00a9ff, #0066cc);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 169, 255, 0.4);
    border: 2px solid transparent;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 169, 255, 0.6);
    background: linear-gradient(135deg, #0066cc, #003d80);
}

.cta-btn.secondary {
    background: rgba(0, 169, 255, 0.1);
    color: #00ff88;
    border: 2px solid #00ff88;
}

.cta-btn.secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    border-color: #00a9ff;
    color: #00a9ff;
}

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

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

.cta-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Tech Stats */
.tech-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 169, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 169, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff88;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Holographic Elements */
.holographic-ui {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.holo-circle {
    position: absolute;
    border: 2px solid rgba(0, 169, 255, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.holo-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    border-style: dashed;
}

.holo-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    border-color: rgba(0, 255, 136, 0.3);
}

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

.holo-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.holo-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 169, 255, 0.5), transparent);
    height: 1px;
    animation: scan 4s ease-in-out infinite;
}

.line-1 {
    top: 25%;
    width: 300px;
    left: 20%;
}

.line-2 {
    top: 60%;
    width: 250px;
    right: 15%;
    animation-delay: 1s;
}

.line-3 {
    top: 80%;
    width: 200px;
    left: 40%;
    animation-delay: 2s;
}

@keyframes scan {
    0%, 100% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #64748b;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Audio Control */
.audio-control {
    position: absolute;
    top: 120px;
    right: 2rem;
    z-index: 4;
}

.audio-toggle {
    background: rgba(16, 24, 40, 0.8);
    border: 2px solid #00a9ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.audio-toggle:hover {
    background: rgba(0, 169, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 169, 255, 0.4);
}

.audio-icon {
    width: 24px;
    height: 24px;
    color: #00a9ff;
    transition: color 0.3s ease;
}

.audio-toggle:hover .audio-icon {
    color: #00ff88;
}

/* Main Content */
.main-content {
    margin-top: 0;
}

.section {
    min-height: 100vh;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.section h2 {
    font-family: 'Inter', sans-serif;
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.section p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
}

/* Fade-in animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Us Section - Complete CSS Redesign */
.about-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0;
    background: 
        radial-gradient(ellipse 800px 600px at 25% 30%, rgba(0, 169, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 600px 800px at 75% 70%, rgba(0, 255, 136, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 400px 300px at 50% 50%, rgba(168, 85, 247, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 30%, #2a2f3e 60%, #1a1f2e 100%);
    overflow: hidden;
}

/* About Background Animations */
.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 169, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 169, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 136, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    animation: grid-move-about 20s linear infinite;
}

@keyframes grid-move-about {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #00a9ff, #00ff88);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float-about 8s ease-in-out infinite;
}

.floating-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-particles .particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.floating-particles .particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.floating-particles .particle:nth-child(4) {
    top: 80%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.floating-particles .particle:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 11s;
}

@keyframes particle-float-about {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(10px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-60px) translateX(-10px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) translateX(15px) scale(1.1);
        opacity: 0.9;
    }
}

/* About Container */
.about-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section Header */
.about-header {
    text-align: center;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(50px);
    animation: fade-in-up 1s ease-out 0.2s forwards;
}

.about-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 169, 255, 0.1);
    border: 1px solid rgba(0, 169, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-section .section-tag:hover {
    background: rgba(0, 169, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 169, 255, 0.2);
}

.about-section .tag-icon {
    width: 20px;
    height: 20px;
    color: #00a9ff;
}

.about-section .tag-text {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.about-title .title-line {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.about-title .title-highlight {
    display: block;
    background: linear-gradient(135deg, #00a9ff 0%, #00ff88 50%, #a855f7 100%);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow-about 4s ease-in-out infinite;
}

@keyframes gradient-flow-about {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-intro {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
}

/* About Content Grid */
.about-content {
    display: grid;
    gap: 4rem;
}

/* Story Card Styles */
.story-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 169, 255, 0.2);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: fade-in-up 0.8s ease-out 0.4s forwards;
    transition: all 0.4s ease;
}

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

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

.story-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 20px 60px rgba(0, 169, 255, 0.2);
}

.story-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.story-card .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 169, 255, 0.1);
    border: 1px solid rgba(0, 169, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a9ff;
    position: relative;
    overflow: hidden;
}

.story-card .card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 169, 255, 0.3), transparent);
    animation: icon-spin-about 4s linear infinite;
}

@keyframes icon-spin-about {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.story-card .card-icon svg {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
}

.story-card .card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.story-card .card-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.story-card .card-content p:last-child {
    margin-bottom: 0;
}

/* Mission & Vision Styles */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: fade-in-up 0.8s ease-out 0.6s forwards;
}

.mission-card,
.vision-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mv-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
}

.mv-icon svg {
    width: 20px;
    height: 20px;
}

.mv-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #94a3b8;
}

/* Technical Expertise Card */
.expertise-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 24px;
    padding: 3rem;
    opacity: 0;
    transform: translateY(50px);
    animation: fade-in-up 0.8s ease-out 0.8s forwards;
    transition: all 0.4s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
}

.expertise-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.expertise-card .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
    position: relative;
    overflow: hidden;
}

.expertise-card .card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

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

.expertise-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
}

.expertise-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #a855f7;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.expertise-label {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Team Section Styles */
.team-section {
    opacity: 0;
    transform: translateY(50px);
    animation: fade-in-up 0.8s ease-out 1s forwards;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.team-header p {
    font-size: 1.1rem;
    color: #94a3b8;
}

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

.team-member {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 169, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 169, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 169, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 169, 255, 0.3);
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 169, 255, 0.1);
    border: 2px solid rgba(0, 169, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.avatar-tech {
    color: #00a9ff;
}

.avatar-tech svg {
    width: 32px;
    height: 32px;
}

.member-info {
    position: relative;
    z-index: 1;
}

.member-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: #00ff88;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.member-cert {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Values Section Styles */
.values-section {
    opacity: 0;
    transform: translateY(50px);
    animation: fade-in-up 0.8s ease-out 1.2s forwards;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.values-header p {
    font-size: 1.1rem;
    color: #94a3b8;
}

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

.value-item {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: value-rotate-about 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.value-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #94a3b8;
    position: relative;
    z-index: 1;
}

/* About CTA Styles */
.about-cta {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 169, 255, 0.2);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: fade-in-up 0.8s ease-out 1.4s forwards;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 169, 255, 0.1) 0%, transparent 70%);
    animation: cta-pulse-about 6s ease-in-out infinite;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes cta-pulse-about {
    0%, 100% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    50% {
        width: 400px;
        height: 400px;
        opacity: 0.3;
    }
}

.about-cta .cta-content {
    position: relative;
    z-index: 1;
}

.about-cta .cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-cta .cta-content p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section - Unique Design (No Code Reuse) */
.services-section {
    position: relative;
    min-height: 100vh;
    padding: 10rem 0;
    background: 
        radial-gradient(circle 1200px at 20% 10%, rgba(255, 107, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle 800px at 80% 90%, rgba(0, 169, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle 600px at 40% 60%, rgba(168, 85, 247, 0.06) 0%, transparent 60%),
        linear-gradient(145deg, #020617 0%, #0f172a 25%, #1e293b 50%, #0f172a 75%, #020617 100%);
    overflow: hidden;
}

/* Services Background Effects */
.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Neural Network Animation */
.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.network-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, #00ff88 0%, #00a9ff 100%);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    animation: node-pulse-services 3s ease-in-out infinite;
}

@keyframes node-pulse-services {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    }
    50% {
        transform: scale(1.4);
        opacity: 1;
        box-shadow: 0 0 30px rgba(0,169,255,1);
    }
}

.node-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    background: radial-gradient(circle, #ff6b00 0%, #ffd700 100%);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
}

.node-2 {
    top: 25%;
    right: 20%;
    animation-delay: 0.5s;
}

.node-3 {
    top: 60%;
    left: 15%;
    animation-delay: 1s;
    background: radial-gradient(circle, #a855f7 0%, #8b5cf6 100%);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
}

.node-4 {
    top: 70%;
    right: 25%;
    animation-delay: 1.5s;
}

.node-5 {
    top: 45%;
    left: 50%;
    animation-delay: 2s;
    background: radial-gradient(circle, #ef4444 0%, #f87171 100%);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.8);
}

.node-6 {
    top: 85%;
    left: 60%;
    animation-delay: 2.5s;
}

.network-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 169, 255, 0.4) 20%, 
        rgba(0, 255, 136, 0.6) 50%, 
        rgba(168, 85, 247, 0.4) 80%, 
        transparent 100%);
    transform-origin: left center;
    animation: connection-flow-services 4s ease-in-out infinite;
}

@keyframes connection-flow-services {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

.conn-1 {
    top: 20%;
    left: 12%;
    width: 300px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.conn-2 {
    top: 40%;
    left: 30%;
    width: 250px;
    transform: rotate(-25deg);
    animation-delay: 1s;
}

.conn-3 {
    top: 65%;
    left: 20%;
    width: 200px;
    transform: rotate(35deg);
    animation-delay: 2s;
}

.conn-4 {
    top: 75%;
    left: 45%;
    width: 180px;
    transform: rotate(-10deg);
    animation-delay: 3s;
}

.conn-5 {
    top: 30%;
    right: 15%;
    width: 220px;
    transform: rotate(45deg);
    animation-delay: 0.5s;
}

/* Floating Code Elements */
.floating-code {
    position: absolute;
    width: 100%;
    height: 100%;
}

.code-snippet {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #00ff88;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: code-drift-services 8s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

@keyframes code-drift-services {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) rotate(-3deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) rotate(7deg);
        opacity: 0.9;
    }
}

.snippet-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
    color: #ff6b00;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
}

.snippet-2 {
    top: 30%;
    right: 10%;
    animation-delay: 1s;
    color: #00a9ff;
    text-shadow: 0 0 10px rgba(0, 169, 255, 0.8);
}

.snippet-3 {
    top: 60%;
    left: 8%;
    animation-delay: 2s;
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}

.snippet-4 {
    top: 80%;
    right: 5%;
    animation-delay: 3s;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.snippet-5 {
    top: 45%;
    left: 45%;
    animation-delay: 4s;
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

.snippet-6 {
    top: 70%;
    left: 70%;
    animation-delay: 5s;
    color: #f59e0b;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
}

/* Services Container */
.services-container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(60px);
    animation: slide-up-services 1.2s ease-out 0.3s forwards;
}

@keyframes slide-up-services {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-section .service-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 60px;
    padding: 1rem 2rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.services-section .service-tag:hover {
    background: rgba(255, 107, 0, 0.2);
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.services-section .tag-icon {
    width: 24px;
    height: 24px;
    color: #ff6b00;
}

.services-section .tag-text {
    color: #ffd700;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.services-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2.5rem;
}

.services-title .title-line {
    display: block;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.services-title .title-highlight {
    display: block;
    background: linear-gradient(135deg, #ff6b00 0%, #ffd700 30%, #00ff88 60%, #00a9ff 100%);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-flow-services 5s ease-in-out infinite;
}

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

.services-intro {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    line-height: 1.9;
    color: #94a3b8;
    max-width: 900px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 8rem;
}

/* Service Card Styles */
.service-card {
    position: relative;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 3rem;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    animation: card-appear-services 0.8s ease-out forwards;
}

@keyframes card-appear-services {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-card:nth-child(1) { animation-delay: 0.5s; }
.service-card:nth-child(2) { animation-delay: 0.7s; }
.service-card:nth-child(3) { animation-delay: 0.9s; }
.service-card:nth-child(4) { animation-delay: 1.1s; }
.service-card:nth-child(5) { animation-delay: 1.3s; }
.service-card:nth-child(6) { animation-delay: 1.5s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 0, 0.05) 0%, 
        rgba(0, 169, 255, 0.05) 50%, 
        rgba(168, 85, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 28px;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 107, 0, 0.2);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 107, 0, 0.3), 
        rgba(0, 169, 255, 0.3), 
        rgba(168, 85, 247, 0.3),
        transparent);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover .card-glow {
    opacity: 1;
    animation: glow-rotate-services 3s linear infinite;
}

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

/* Service Card Headers */
.service-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b00;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 0, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
    transform: translateX(100%);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
}

.service-category {
    font-size: 0.85rem;
    color: #00ff88;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Service Card Content */
.service-card .card-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-card .card-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Service Features */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature {
    font-size: 0.875rem;
    color: #94a3b8;
    background: rgba(0, 169, 255, 0.08);
    border: 1px solid rgba(0, 169, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(0, 169, 255, 0.15);
    color: #00a9ff;
    transform: translateY(-2px);
}

/* Service Card Footer */
.service-card .card-footer {
    margin-top: auto;
}

.service-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ff6b00 0%, #f59e0b 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.service-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-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #ff6b00 100%);
}

/* Specific Card Variations */
.card-web {
    border-left: 4px solid #00a9ff;
}

.card-web:hover {
    border-left-color: #0ea5e9;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 169, 255, 0.3);
}

.card-mobile {
    border-left: 4px solid #10b981;
}

.card-mobile:hover {
    border-left-color: #059669;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(16, 185, 129, 0.3);
}

.card-cloud {
    border-left: 4px solid #8b5cf6;
}

.card-cloud:hover {
    border-left-color: #7c3aed;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(139, 92, 246, 0.3);
}

.card-ai {
    border-left: 4px solid #f59e0b;
}

.card-ai:hover {
    border-left-color: #d97706;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(245, 158, 11, 0.3);
}

.card-enterprise {
    border-left: 4px solid #ef4444;
}

.card-enterprise:hover {
    border-left-color: #dc2626;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(239, 68, 68, 0.3);
}

.card-security {
    border-left: 4px solid #06b6d4;
}

.card-security:hover {
    border-left-color: #0891b2;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(6, 182, 212, 0.3);
}

/* Service Process Section */
.service-process {
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(60px);
    animation: slide-up-services 1.2s ease-out 2s forwards;
}

.service-process h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
}

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

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, 
        #ff6b00 0%, 
        #00a9ff 33%, 
        #10b981 66%, 
        #8b5cf6 100%);
    transform: translateY(-50%);
    opacity: 0.5;
    z-index: 1;
}

.process-step {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    z-index: 2;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.5);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b00;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.step-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* Services CTA Section */
.services-cta {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 32px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
    animation: slide-up-services 1.2s ease-out 2.5s forwards;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 169, 255, 0.1) 0%, transparent 50%);
    animation: cta-bg-shift-services 8s ease-in-out infinite;
}

@keyframes cta-bg-shift-services {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.services-cta .cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.services-cta .cta-content h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.services-cta .cta-content p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Us Section - Unique Design (Different from Footer) */
.contact-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0;
    background: 
        radial-gradient(ellipse 1000px 400px at 10% 20%, rgba(255, 107, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 800px 600px at 90% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 600px 400px at 50% 0%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        linear-gradient(155deg, #020617 0%, #0f172a 25%, #1e293b 50%, #0f172a 75%, #020617 100%);
    overflow: hidden;
    color: #ffffff;
}

/* Contact Background Effects */
.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

/* Circuit Grid Animation */
.circuit-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(0, 169, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 169, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
    animation: circuit-pulse-contact 25s linear infinite;
}

@keyframes circuit-pulse-contact {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, 10px) scale(1.05); }
    50% { transform: translate(0, 20px) scale(1); }
    75% { transform: translate(-10px, 10px) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Floating Communication Elements */
.floating-elements-contact {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-signal {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ff6b00 0%, #ffd700 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
    animation: signal-bounce-contact 6s ease-in-out infinite;
}

@keyframes signal-bounce-contact {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
    }
    25% {
        transform: translateY(-40px) scale(1.3);
        opacity: 1;
        box-shadow: 0 0 30px rgba(255, 215, 0, 1);
    }
    50% {
        transform: translateY(-80px) scale(1.1);
        opacity: 0.9;
        box-shadow: 0 0 25px rgba(0, 169, 255, 0.9);
    }
    75% {
        transform: translateY(-40px) scale(1.2);
        opacity: 1;
        box-shadow: 0 0 35px rgba(168, 85, 247, 0.8);
    }
}

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

.signal-2 {
    top: 40%;
    right: 20%;
    animation-delay: 1.5s;
    background: radial-gradient(circle, #00a9ff 0%, #60a5fa 100%);
    box-shadow: 0 0 20px rgba(0, 169, 255, 0.8);
}

.signal-3 {
    top: 70%;
    left: 25%;
    animation-delay: 3s;
    background: radial-gradient(circle, #a855f7 0%, #c084fc 100%);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
}

.signal-4 {
    top: 85%;
    right: 30%;
    animation-delay: 4.5s;
    background: radial-gradient(circle, #10b981 0%, #34d399 100%);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
}

/* Communication Waves */
.communication-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.communication-waves .wave {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 0, 0.6) 25%, 
        rgba(0, 169, 255, 0.8) 50%, 
        rgba(168, 85, 247, 0.6) 75%, 
        transparent 100%);
    animation: comm-wave-flow 12s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes comm-wave-flow {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(-150%) scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: translateX(150%) scaleX(1.5);
    }
}

.communication-waves .wave-1 {
    top: 30%;
    width: 40%;
    left: 10%;
    animation-delay: 0s;
}

.communication-waves .wave-2 {
    top: 60%;
    width: 50%;
    right: 5%;
    animation-delay: 4s;
}

.communication-waves .wave-3 {
    top: 80%;
    width: 35%;
    left: 30%;
    animation-delay: 8s;
}

/* Contact Container */
.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Contact Section Header */
.contact-header {
    text-align: center;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(50px);
    animation: contact-fade-in 1.2s ease-out 0.3s forwards;
}

@keyframes contact-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-section .contact-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 107, 0, 0.12);
    border: 2px solid rgba(255, 107, 0, 0.4);
    border-radius: 50px;
    padding: 1rem 2.5rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.2);
}

.contact-section .contact-tag:hover {
    background: rgba(255, 107, 0, 0.2);
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.3);
    border-color: rgba(255, 107, 0, 0.6);
}

.contact-section .tag-icon {
    width: 26px;
    height: 26px;
    color: #ff6b00;
}

.contact-section .tag-text {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2.5rem;
}

.contact-title .title-line {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-title .title-highlight {
    display: block;
    background: linear-gradient(135deg, #ff6b00 0%, #ffd700 25%, #00ff88 50%, #00a9ff 75%, #a855f7 100%);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: contact-rainbow-flow 6s ease-in-out infinite;
}

@keyframes contact-rainbow-flow {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 25%; }
    50% { background-position: 200% 50%; }
    75% { background-position: 300% 75%; }
}

.contact-intro {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.8;
    color: #94a3b8;
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 6rem;
}

/* Contact Form Container */
.contact-form-container {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 32px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px);
    animation: contact-slide-in-left 1.2s ease-out 0.6s forwards;
}

@keyframes contact-slide-in-left {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(0, 169, 255, 0.06) 0%, transparent 60%);
    animation: form-bg-shift 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes form-bg-shift {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group {
    position: relative;
}

.input-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(30, 41, 59, 0.7);
    border: 2px solid rgba(0, 169, 255, 0.2);
    border-radius: 16px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #ff6b00;
    background: rgba(30, 41, 59, 0.9);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.15);
    transform: translateY(-2px);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #64748b;
}

.input-group textarea {
    resize: vertical;
    min-height: 140px;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b00, #ffd700);
    transition: width 0.3s ease;
}

.input-group input:focus + .input-highlight,
.input-group select:focus + .input-highlight,
.input-group textarea:focus + .input-highlight {
    width: 100%;
}

/* Form Submit Button */
.form-submit {
    margin-top: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ff6b00 0%, #f59e0b 100%);
    border: none;
    border-radius: 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

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

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #ff6b00 100%);
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Contact Information */
.contact-info {
    opacity: 0;
    transform: translateX(50px);
    animation: contact-slide-in-right 1.2s ease-out 0.8s forwards;
}

@keyframes contact-slide-in-right {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-header {
    margin-bottom: 3rem;
}

.info-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.info-header p {
    font-size: 1.1rem;
    color: #94a3b8;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.info-card:hover {
    transform: translateY(-8px) translateX(5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.25);
}

.info-card .card-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.15);
    border: 2px solid rgba(0, 255, 136, 0.4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.info-card .card-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    animation: icon-rotate-contact 4s linear infinite;
}

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

.info-card .card-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.info-card .card-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.info-card .card-content p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-card .card-content p:last-child {
    margin-bottom: 0;
}

/* Social Links */
.social-links {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(168, 85, 247, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
}

.social-links h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(168, 85, 247, 0.4), transparent);
    animation: social-spin-contact 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

@keyframes social-spin-contact {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.4);
    color: #ffffff;
}

.social-link svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(50px);
    animation: contact-fade-in 1.2s ease-out 1.2s forwards;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.2rem;
    color: #94a3b8;
}

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

.faq-item {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 169, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 169, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 169, 255, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.faq-question h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #00a9ff;
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-icon {
    transform: rotate(180deg);
}

.faq-answer p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
}

/* Contact CTA */
.contact-cta {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 32px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: contact-fade-in 1.2s ease-out 1.5s forwards;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    animation: cta-pulse-contact 8s ease-in-out infinite;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes cta-pulse-contact {
    0%, 100% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    50% {
        width: 600px;
        height: 600px;
        opacity: 0.4;
    }
}

.contact-cta .cta-content {
    position: relative;
    z-index: 1;
}

.contact-cta .cta-content h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.contact-cta .cta-content p {
    font-size: 1.3rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Section - Complete CSS */
.footer-section {
    position: relative;
    background: 
        radial-gradient(ellipse 600px 400px at 20% 30%, rgba(0, 169, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 800px 600px at 80% 70%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #020617 0%, #0f172a 30%, #1e293b 60%, #0f172a 100%);
    padding: 6rem 0 2rem;
    color: #ffffff;
    overflow: hidden;
}

/* Footer Background */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.digital-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 169, 255, 0.4), rgba(0, 255, 136, 0.4), transparent);
    animation: wave-flow 8s ease-in-out infinite;
}

@keyframes wave-flow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

.wave-1 { top: 20%; width: 300px; left: 10%; animation-delay: 0s; }
.wave-2 { top: 40%; width: 400px; right: 10%; animation-delay: 2s; }
.wave-3 { top: 60%; width: 350px; left: 30%; animation-delay: 4s; }
.wave-4 { top: 80%; width: 250px; right: 20%; animation-delay: 6s; }

.floating-data-bits {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-bit {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #00a9ff;
    opacity: 0.6;
    animation: bit-float 6s ease-in-out infinite;
}

@keyframes bit-float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

.bit-1 { top: 15%; left: 5%; animation-delay: 0s; color: #00ff88; }
.bit-2 { top: 25%; right: 10%; animation-delay: 1s; }
.bit-3 { top: 45%; left: 15%; animation-delay: 2s; color: #a855f7; }
.bit-4 { top: 65%; right: 5%; animation-delay: 3s; }
.bit-5 { top: 75%; left: 60%; animation-delay: 4s; color: #00ff88; }
.bit-6 { top: 85%; right: 30%; animation-delay: 5s; }

/* Footer Container */
.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main Footer Content */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

/* Footer Brand */
.footer-brand {
    opacity: 0;
    animation: fade-in-up 1s ease-out 0.2s forwards;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-svg {
    transition: all 0.3s ease;
}

.footer-logo:hover .logo-svg {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 0 15px #00a9ff);
}

.brand-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.brand-info p {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 3rem;
}

/* Footer Social */
.footer-social h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 169, 255, 0.05);
    border: 1px solid rgba(0, 169, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: #cbd5e1;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-item:hover {
    background: rgba(0, 169, 255, 0.1);
    border-color: rgba(0, 169, 255, 0.4);
    transform: translateY(-2px);
    color: #00a9ff;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 169, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a9ff;
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.social-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    opacity: 0;
    animation: fade-in-up 1s ease-out 0.4s forwards;
}

.link-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00a9ff, #00ff88);
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 0.75rem;
}

.link-group a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.link-group a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00a9ff;
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.link-group a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.link-group a:hover {
    color: #00ff88;
    padding-left: 1.25rem;
}

/* Footer Contact */
.footer-contact {
    opacity: 0;
    animation: fade-in-up 1s ease-out 0.6s forwards;
}

.footer-contact h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(30, 41, 59, 0.5);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-details span {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* Newsletter */
.newsletter {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 169, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.newsletter h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.newsletter p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.input-wrapper {
    display: flex;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 169, 255, 0.2);
}

.input-wrapper input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
}

.input-wrapper input::placeholder {
    color: #64748b;
}

.input-wrapper input:focus {
    outline: none;
}

.input-wrapper button {
    background: linear-gradient(135deg, #00a9ff, #0066cc);
    border: none;
    padding: 0.875rem 1rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-wrapper button:hover {
    background: linear-gradient(135deg, #0066cc, #003d80);
}

.input-wrapper button svg {
    width: 16px;
    height: 16px;
}

/* Quick Actions Section */
.footer-quick-actions {
    margin-top: 2rem;
}

.footer-quick-actions h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.quick-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(0, 169, 255, 0.1);
    border: 1px solid rgba(0, 169, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: #00a9ff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.quick-action-btn:hover::before {
    left: 100%;
}

.quick-action-btn:hover {
    background: rgba(0, 169, 255, 0.2);
    border-color: rgba(0, 169, 255, 0.5);
    transform: translateY(-2px) translateX(3px);
    box-shadow: 0 8px 20px rgba(0, 169, 255, 0.3);
    color: #ffffff;
}

.quick-action-btn:nth-child(2) {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.quick-action-btn:nth-child(2):hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

.quick-action-btn:nth-child(3) {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

.quick-action-btn:nth-child(3):hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.quick-action-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.quick-action-btn:hover svg {
    transform: scale(1.1);
}

/* Tech Stack */
.tech-stack {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 169, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    backdrop-filter: blur(15px);
    opacity: 0;
    animation: fade-in-up 1s ease-out 0.8s forwards;
}

.tech-stack h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.tech-item {
    background: rgba(0, 169, 255, 0.08);
    border: 1px solid rgba(0, 169, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: #00a9ff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.tech-item:hover {
    background: rgba(0, 169, 255, 0.15);
    border-color: rgba(0, 169, 255, 0.4);
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 169, 255, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    opacity: 0;
    animation: fade-in-up 1s ease-out 1s forwards;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 169, 255, 0.5), transparent);
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.copyright p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #00a9ff;
}

.scroll-top-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00a9ff, #0066cc);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #0066cc, #003d80);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 169, 255, 0.4);
}

.scroll-top-btn svg {
    width: 16px;
    height: 16px;
}

/* Footer Responsive Design */
@media screen and (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
        grid-column: span 1;
    }
    
    .tech-logos {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
    
    .footer-contact {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 900px) {
    .footer-section {
        padding: 4rem 0 2rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-main {
        gap: 2.5rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .copyright {
        text-align: center;
    }
    
    .back-to-top {
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .quick-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .quick-action-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        padding: 0.75rem 0.5rem;
    }
}

@media screen and (max-width: 600px) {
    .footer-section {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-logo .logo-svg {
        width: 50px;
        height: 50px;
    }
    
    .brand-info h3 {
        font-size: 1.5rem;
    }
    
    .company-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-stack {
        padding: 2rem 1.5rem;
    }
    
    .tech-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-item {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .newsletter {
        padding: 1rem;
    }
    
    .input-wrapper {
        flex-direction: column;
    }
    
    .input-wrapper button {
        border-radius: 0 0 12px 12px;
    }
    
    .scroll-top-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .quick-action-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quick-action-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}