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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo h2 {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 40px 0 60px;
    background: #ffffff;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.highlight {
    font-weight: 600;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    animation: underlineExpand 2s ease-out 1s both;
}

@keyframes underlineExpand {
    from { width: 0; }
    to { width: 100%; }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: left;
    position: relative;
}

.stat h3 {
    font-size: 2.8rem;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat p {
    font-size: 0.85rem;
    color: #999;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #e5e5e5, transparent);
    animation: pulse 3s infinite;
}

.stat:first-child::before {
    display: none;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.cta-primary {
    background: #000000;
    color: white;
    border: 1px solid #000000;
}

.cta-primary:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.cta-secondary {
    background: transparent;
    color: #666;
    border: 1px solid #e5e5e5;
}

.cta-secondary:hover {
    background: #f8f8f8;
    color: #1a1a1a;
    border-color: #d0d0d0;
    transform: translateY(-1px);
}

/* Hero Animation */
.hero-animation {
    position: relative;
    max-width: 400px;
    margin-left: auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

/* Mobile Device */
.mobile-device {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: deviceAppear 0.8s ease 0.5s forwards;
}

.device-frame {
    width: 140px;
    height: 280px;
    background: #f8f9fa;
    border-radius: 18px;
    border: 2px solid #e5e7eb;
    padding: 14px 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.device-button {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
}

.app-interface {
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.signal-dots {
    display: flex;
    gap: 3px;
}

.signal-dots .dot {
    width: 4px;
    height: 4px;
    background: #9ca3af;
    border-radius: 50%;
    animation: signalPulse 2s infinite;
}

.signal-dots .dot:nth-child(2) { animation-delay: 0.3s; }
.signal-dots .dot:nth-child(3) { animation-delay: 0.6s; }

.battery-indicator {
    width: 20px;
    height: 10px;
    border: 1px solid #9ca3af;
    border-radius: 2px;
    position: relative;
}

.battery-indicator::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 2px;
    width: 2px;
    height: 6px;
    background: #9ca3af;
    border-radius: 0 1px 1px 0;
}

.app-content {
    flex: 1;
    position: relative;
}

.card-stack {
    position: relative;
    height: 100%;
}

.app-card {
    position: absolute;
    width: 100%;
    height: 80%;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 16px;
    transform-origin: bottom center;
}

.card-1 {
    z-index: 3;
    animation: cardSlide 6s infinite;
}

.card-2 {
    z-index: 2;
    animation: cardSlide 6s infinite 2s;
    transform: scale(0.95) translateY(8px);
}

.card-3 {
    z-index: 1;
    animation: cardSlide 6s infinite 4s;
    transform: scale(0.9) translateY(16px);
}

.card-header {
    height: 12px;
    background: #f3f4f6;
    border-radius: 6px;
    margin-bottom: 16px;
    animation: elementPulse 3s infinite;
}

.card-element {
    height: 8px;
    background: #f9fafb;
    border-radius: 4px;
    margin-bottom: 8px;
    animation: elementPulse 3s infinite;
}

.card-element:nth-child(2) { animation-delay: 0.5s; }

.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.grid-item {
    height: 40px;
    background: #fef3f2;
    border-radius: 6px;
    animation: gridPulse 2s infinite;
}

.grid-item:nth-child(2) { animation-delay: 0.3s; background: #f0f9ff; }
.grid-item:nth-child(3) { animation-delay: 0.6s; background: #f0fdf4; }
.grid-item:nth-child(4) { animation-delay: 0.9s; background: #fefce8; }

.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-bar {
    height: 6px;
    background: #f3f4f6;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #ddd6fe, #c7d2fe, #fde68a);
    border-radius: 3px;
    animation: progressFill 3s infinite;
}

.progress-bar:nth-child(2)::after { animation-delay: 0.5s; }
.progress-bar:nth-child(3)::after { animation-delay: 1s; }

.app-navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e5e7eb;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #9ca3af;
}

/* Desktop Application */
.desktop-app {
    opacity: 0;
    transform: scale(0.8) translateX(-60px) translateY(40px);
    animation: appAppear 1s ease 2s forwards;
    position: absolute;
    z-index: 1;
}

.app-window {
    width: 240px;
    height: 180px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.window-header {
    background: #f9fafb;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
}

.window-controls {
    display: flex;
    gap: 6px;
}

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

.control-dot.red { background: #fecaca; }
.control-dot.yellow { background: #fde68a; }
.control-dot.green { background: #bbf7d0; }

.window-content {
    display: flex;
    height: calc(100% - 40px);
}

.sidebar {
    width: 80px;
    background: #f9fafb;
    border-right: 1px solid #f3f4f6;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-item {
    height: 24px;
    background: #ffffff;
    border-radius: 4px;
    animation: sidebarPulse 3s infinite;
}

.sidebar-item.active {
    background: #e0e7ff;
}

.sidebar-item:nth-child(2) { animation-delay: 0.3s; }
.sidebar-item:nth-child(4) { animation-delay: 0.6s; }

.main-content {
    flex: 1;
    padding: 16px;
}

.content-header {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.header-element {
    height: 12px;
    background: #f3f4f6;
    border-radius: 6px;
    animation: headerPulse 2s infinite;
}

.header-element.wide {
    flex: 2;
}

.header-element:not(.wide) {
    flex: 1;
    animation-delay: 0.5s;
}

.content-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content-row {
    display: flex;
    gap: 8px;
}

.content-block {
    height: 32px;
    background: #fafafa;
    border-radius: 4px;
    flex: 1;
    animation: blockPulse 2.5s infinite;
}

.content-block.wide {
    flex: 2;
}

.content-block:nth-child(2) { animation-delay: 0.4s; }

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.element-1 {
    top: 20%;
    right: 10%;
    animation: floatMove 8s infinite;
}

.element-2 {
    bottom: 30%;
    left: 5%;
    animation: floatMove 8s infinite 2s;
}

.element-3 {
    top: 60%;
    right: 20%;
    animation: floatMove 8s infinite 4s;
}

.element-icon {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    animation: iconRotate 4s infinite;
}

.element-1 .element-icon { background: linear-gradient(45deg, #fecaca, #fca5a5); }
.element-2 .element-icon { background: linear-gradient(45deg, #a7f3d0, #6ee7b7); }
.element-3 .element-icon { background: linear-gradient(45deg, #ddd6fe, #c7d2fe); }

/* Animation Keyframes */
@keyframes deviceAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes appAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes cardSlide {
    0%, 33%, 100% { transform: scale(1) translateY(0); z-index: 3; }
    10% { transform: scale(0.95) translateY(8px); z-index: 2; }
    20% { transform: scale(0.9) translateY(16px); z-index: 1; }
}

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

@keyframes gridPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

@keyframes progressFill {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 0; }
}

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

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

@keyframes blockPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

@keyframes floatMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(90deg); }
    50% { transform: translate(-5px, -10px) rotate(180deg); }
    75% { transform: translate(-10px, 5px) rotate(270deg); }
}

@keyframes iconRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

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

.floating-card {
    position: absolute;
    background: white;
    padding: 1.8rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.floating-card:nth-child(1) {
    top: 20px;
    right: 20px;
    width: 220px;
}

.floating-card:nth-child(2) {
    bottom: 120px;
    left: 20px;
    width: 200px;
}

.floating-card:nth-child(3) {
    bottom: 20px;
    right: 40px;
    width: 180px;
}


/* Pure Visual Software Development Animations - No Text */
.dev-visual-only {
    position: absolute;
    top: 0.5rem;
    right: 0.8rem;
    width: 60px;
    height: 40px;
    overflow: hidden;
}

/* Development Pipeline Visual */
.development-pipeline {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.pipeline-stages {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 50%;
}

.stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stage-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
    position: relative;
}

.stage-1 .stage-dot {
    background: #4CAF50;
    animation: stagePulse 2s ease-in-out infinite;
}

.stage-2 .stage-dot {
    animation: stagePulse 2s ease-in-out 0.7s infinite;
}

.stage-3 .stage-dot {
    animation: stagePulse 2s ease-in-out 1.4s infinite;
}

.stage-progress {
    width: 2px;
    height: 8px;
    background: #ddd;
    border-radius: 1px;
    opacity: 0;
}

.stage-1 .stage-progress {
    animation: progressFill 3s ease-in-out infinite;
}

.stage-2 .stage-progress {
    animation: progressFill 3s ease-in-out 1s infinite;
}

.stage-3 .stage-progress {
    animation: progressFill 3s ease-in-out 2s infinite;
}

.deployment-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    position: relative;
}

.deploy-signal {
    width: 4px;
    height: 4px;
    background: #4CAF50;
    border-radius: 50%;
    animation: deployBlink 1.5s ease-in-out infinite;
}

.deploy-waves {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #4CAF50;
    border-radius: 50%;
    opacity: 0;
    animation: deployWaves 3s ease-out infinite;
}

/* Code Compilation Visual */
.code-compilation {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.compiler-screen {
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 70%;
    justify-content: center;
}

.compile-bars {
    display: flex;
    gap: 2px;
    align-items: end;
    height: 60%;
}

.bar {
    width: 3px;
    background: #667eea;
    border-radius: 1px 1px 0 0;
    opacity: 0;
}

.bar-1 {
    height: 8px;
    animation: compileProgress 2.5s ease-in-out infinite;
}

.bar-2 {
    height: 6px;
    animation: compileProgress 2.5s ease-in-out 0.3s infinite;
}

.bar-3 {
    height: 10px;
    animation: compileProgress 2.5s ease-in-out 0.6s infinite;
}

.bar-4 {
    height: 4px;
    animation: compileProgress 2.5s ease-in-out 0.9s infinite;
}

.compile-success {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40%;
}

.success-checkmark {
    width: 6px;
    height: 6px;
    border: 1px solid #4CAF50;
    border-radius: 50%;
    position: relative;
    opacity: 0;
    animation: successAppear 3s ease-in-out infinite;
}

.success-checkmark::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 2px;
    width: 2px;
    height: 1px;
    border: solid #4CAF50;
    border-width: 0 0 1px 1px;
    transform: rotate(-45deg);
}

.ai-acceleration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30%;
    position: relative;
}

.speed-particles {
    width: 4px;
    height: 4px;
    background: #ff6b35;
    border-radius: 50%;
    animation: particleMove 1.8s linear infinite;
}

.speed-trail {
    position: absolute;
    width: 12px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    animation: trailMove 1.8s linear infinite;
}

/* Version Control Visual */
.version-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.git-graph {
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 60%;
    position: relative;
}

.git-branch {
    display: flex;
    align-items: center;
    gap: 3px;
    position: relative;
}

.main-branch {
    height: 60%;
}

.feature-branch {
    height: 40%;
    margin-left: 8px;
}

.commit {
    width: 4px;
    height: 4px;
    background: #ddd;
    border-radius: 50%;
    opacity: 0;
}

.commit-1 {
    background: #4CAF50;
    animation: commitAppear 0.8s ease-in-out 0.5s forwards;
}

.commit-2 {
    background: #4CAF50;
    animation: commitAppear 0.8s ease-in-out 1.2s forwards;
}

.commit-3 {
    background: #ff6b35;
    animation: commitPulse 2s ease-in-out 2s infinite;
}

.commit-4 {
    background: #667eea;
    animation: commitAppear 0.8s ease-in-out 1.8s forwards;
}

.merge-arrow {
    position: absolute;
    right: -6px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 3px solid #667eea;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    opacity: 0;
    animation: mergeShow 1s ease-in-out 2.5s forwards;
}

.deployment-rocket {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40%;
    position: relative;
}

.rocket-body {
    width: 3px;
    height: 8px;
    background: #ff6b35;
    border-radius: 2px 2px 0 0;
    position: relative;
    animation: rocketLaunch 3s ease-in-out infinite;
}

.rocket-fire {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 3px;
    background: #ffa726;
    border-radius: 0 0 1px 1px;
    animation: rocketFlame 0.3s ease-in-out infinite alternate;
}

/* New Software Development Animations */
@keyframes stagePulse {
    0%, 100% { opacity: 0.3; background: #ddd; }
    50% { opacity: 1; background: #4CAF50; }
}

@keyframes progressFill {
    0%, 30% { opacity: 0; background: #ddd; }
    50%, 100% { opacity: 1; background: #4CAF50; }
}

@keyframes deployBlink {
    0%, 50% { opacity: 0.3; }
    25% { opacity: 1; }
    75%, 100% { opacity: 0.6; }
}

@keyframes deployWaves {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

@keyframes compileProgress {
    0%, 20% { opacity: 0; transform: scaleY(0.3); }
    40%, 60% { opacity: 1; transform: scaleY(1); }
    80%, 100% { opacity: 0.7; transform: scaleY(0.8); }
}

@keyframes successAppear {
    0%, 70% { opacity: 0; transform: scale(0.5); }
    85% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.8; transform: scale(1); }
}

@keyframes particleMove {
    0% { transform: translateX(-6px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(6px); opacity: 0; }
}

@keyframes trailMove {
    0% { transform: translateX(-8px); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateX(8px); opacity: 0; }
}

@keyframes commitAppear {
    0% { opacity: 0; transform: scale(0); }
    100% { opacity: 1; transform: scale(1); }
}

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

@keyframes mergeShow {
    0% { opacity: 0; transform: translateX(-3px); }
    100% { opacity: 1; transform: translateX(0); }
}

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

@keyframes rocketFlame {
    0% { height: 3px; opacity: 0.8; }
    100% { height: 4px; opacity: 1; }
}

/* Code Editor Animation */
.code-editor {
    background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
    border-radius: 4px;
    padding: 2px;
    color: #d4d4d4;
}

.editor-header {
    background: #2d2d2d;
    border-radius: 2px 2px 0 0;
    padding: 1px 2px;
    margin-bottom: 1px;
}

.editor-tabs {
    display: flex;
    gap: 2px;
}

.tab {
    padding: 1px 3px;
    background: #3c3c3c;
    border-radius: 1px;
    font-size: 5px;
    color: #888;
}

.tab.active {
    background: #1e1e1e;
    color: #4fc3f7;
}

.code-lines {
    padding: 2px;
}

.code-line {
    font-family: 'Courier New', monospace;
    font-size: 5px;
    color: #9cdcfe;
    margin-bottom: 1px;
    white-space: nowrap;
}

.code-line.typing {
    animation: codeTyping 3s ease-in-out infinite;
}

@keyframes codeTyping {
    0%, 30% { opacity: 0.3; }
    50%, 80% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Terminal Animation */
.terminal-window {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 4px;
    padding: 2px;
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 1px 2px;
    border-bottom: 1px solid #334155;
    margin-bottom: 2px;
}

.terminal-controls {
    display: flex;
    gap: 1px;
}

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

.control.red { background: #f87171; }
.control.yellow { background: #fbbf24; }
.control.green { background: #34d399; }

.terminal-content {
    padding: 1px 2px;
}

.terminal-line {
    font-family: 'Courier New', monospace;
    font-size: 5px;
    color: #94a3b8;
    margin-bottom: 1px;
}

.terminal-line.building {
    color: #fbbf24;
}

.terminal-line.success {
    color: #34d399;
}


/* Deployment Flow Animation */
.deployment-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.deployment-steps {
    display: flex;
    align-items: center;
    gap: 2px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4px;
    font-weight: bold;
    color: #64748b;
    animation: deploymentPulse 3s ease-in-out infinite;
}

.step-dot.active {
    background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
    color: #065f46;
}

.connection-line {
    width: 8px;
    height: 1px;
    background: #cbd5e1;
    animation: connectionFlow 3s ease-in-out infinite;
}

.connection-line.active {
    background: linear-gradient(90deg, #6ee7b7, #34d399);
}

.deployment-status {
    font-size: 5px;
    color: #059669;
    font-weight: bold;
    animation: statusBlink 2s ease-in-out infinite;
}

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

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

@keyframes statusBlink {
    0%, 70% { opacity: 1; }
    85% { opacity: 0.3; }
    100% { opacity: 1; }
}



@keyframes strategicGrowth {
    0%, 100% { 
        transform: scaleY(1) scaleX(1);
        opacity: 0.7;
    }
    50% { 
        transform: scaleY(1.2) scaleX(1.1);
        opacity: 1;
    }
}

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

@keyframes costSavings {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
    }
    25% { 
        transform: scale(1.2);
        opacity: 1;
    }
    50% { 
        transform: scale(0.8);
        opacity: 0.9;
    }
    75% { 
        transform: scale(1.1);
        opacity: 1;
    }
}




@keyframes dot-pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.section-header p {
    font-size: 1rem;
    color: #999;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e5e5, transparent);
}

/* About Section */
.about {
    background: #fafafa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Animated About Section */
.animated-header {
    position: relative;
    overflow: hidden;
}

.typing-animation {
    display: inline-block;
    border-right: 2px solid #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3s steps(40) 1s both, blink-caret 0.75s step-end infinite;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 2s both;
}

.stats-animation {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.animated-stat {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease forwards;
}

.animated-stat:nth-child(1) { animation-delay: 0.5s; }
.animated-stat:nth-child(2) { animation-delay: 0.7s; }
.animated-stat:nth-child(3) { animation-delay: 0.9s; }

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.story-content {
    margin: 3rem 0;
}

.story-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.3s ease;
}

.story-block.fade-in-right {
    transform: translateX(50px);
}

.story-block.visible {
    opacity: 1;
    transform: translateX(0);
}

.story-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 50%;
    flex-shrink: 0;
    animation: iconFloat 3s ease-in-out infinite;
}

.story-block:nth-child(2) .story-icon {
    animation-delay: 1.5s;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #1a1a1a; }
}

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

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

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

.about-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.expertise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

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

.expertise-item:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.expertise-item .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Strategic Development - Expanding rings animation */
.expertise-item:nth-child(1) .icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #666;
    border-radius: 50%;
    animation: expanding-rings 3s infinite;
}

.expertise-item:nth-child(1) .icon::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid #666;
    border-radius: 50%;
    animation: expanding-rings 3s infinite 0.5s;
    opacity: 0.6;
}

.expertise-item:nth-child(1):hover .icon::before,
.expertise-item:nth-child(1):hover .icon::after {
    animation-duration: 1.5s;
}

/* AI-Powered Speed - Lightning bolt animation */
.expertise-item:nth-child(2) .icon::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid #666;
    transform: rotate(15deg);
    animation: lightning-flash 2s infinite;
}

.expertise-item:nth-child(2) .icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid #666;
    transform: rotate(-15deg);
    top: 8px;
    left: -2px;
    animation: lightning-flash 2s infinite 0.2s;
}

.expertise-item:nth-child(2):hover .icon::before,
.expertise-item:nth-child(2):hover .icon::after {
    animation-duration: 1s;
}

/* Cost Optimization - Morphing squares animation */
.expertise-item:nth-child(3) .icon::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #666;
    border-radius: 2px;
    animation: morphing-square 4s infinite;
}

.expertise-item:nth-child(3):hover .icon::before {
    animation-duration: 2s;
}

@keyframes expanding-rings {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(2);
        opacity: 0.3;
    }
}

@keyframes lightning-flash {
    0%, 80%, 100% {
        opacity: 0.3;
    }
    10%, 30% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes morphing-square {
    0%, 100% {
        border-radius: 2px;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 50%;
        transform: rotate(45deg);
    }
    50% {
        border-radius: 2px;
        transform: rotate(90deg);
    }
    75% {
        border-radius: 50%;
        transform: rotate(135deg);
    }
}

.expertise-item h4 {
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1.1rem;
}

.expertise-item p {
    color: #666;
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}


/* About Section - Modern Redesign */
.about-content-modern {
    max-width: 1200px;
    margin: 0 auto;
}

/* Story Flow */
.story-flow {
    margin-bottom: 2.5rem;
}

.story-card {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: storyReveal 0.8s ease forwards;
}

.story-card:nth-child(1) { animation-delay: 0.2s; }
.story-card:nth-child(2) { animation-delay: 0.4s; }
.story-card:nth-child(3) { animation-delay: 0.6s; }

.story-card.reverse {
    grid-template-columns: 80px 1fr 200px;
}

.story-card.reverse .story-visual {
    order: 3;
}

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

.story-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(26, 26, 26, 0.1);
    line-height: 1;
}

.story-card:hover .story-number {
    color: rgba(26, 26, 26, 0.3);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.story-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.story-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Story Visuals */
.story-visual {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Elements Animation */
.floating-elements {
    position: relative;
    width: 100px;
    height: 100px;
}

.element-1,
.element-2,
.element-3 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(26,26,26,0.1), rgba(26,26,26,0.05));
}

.element-1 {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 30px;
    animation: floatUp 3s ease-in-out infinite;
}

.element-2 {
    width: 24px;
    height: 24px;
    top: 40px;
    right: 20px;
    animation: floatUp 3s ease-in-out infinite 0.5s;
}

.element-3 {
    width: 16px;
    height: 16px;
    bottom: 20px;
    left: 10px;
    animation: floatUp 3s ease-in-out infinite 1s;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-15px); opacity: 1; }
}

/* Acquisition Flow Animation */
.acquisition-flow {
    display: flex;
    gap: 10px;
    align-items: center;
}

.flow-step {
    width: 20px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 50%;
    position: relative;
    animation: flowPulse 2s ease-in-out infinite;
}

.flow-step:nth-child(2) { animation-delay: 0.3s; }
.flow-step:nth-child(3) { animation-delay: 0.6s; }

.flow-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 10px;
    height: 2px;
    background: #1a1a1a;
    transform: translateY(-50%);
}

.flow-step:last-child::after {
    display: none;
}

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

/* AI Animation */
.ai-animation {
    position: relative;
    width: 80px;
    height: 80px;
}

.ai-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: aiPulse 2s ease-in-out infinite;
}

.ai-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ai-rings::before,
.ai-rings::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(26,26,26,0.2);
    border-radius: 50%;
    animation: ringExpand 3s ease-out infinite;
}

.ai-rings::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: -20px;
}

.ai-rings::after {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
    animation-delay: 1s;
}

@keyframes aiPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

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

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.capability-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: cardReveal 0.6s ease forwards;
}

.capability-card:nth-child(1) { animation-delay: 0.8s; }
.capability-card:nth-child(2) { animation-delay: 1.0s; }
.capability-card:nth-child(3) { animation-delay: 1.2s; }

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

.capability-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.capability-icon.strategic {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    overflow: hidden;
}

.capability-icon.strategic::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 20px;
    background: linear-gradient(to top, #10b981 0%, #34d399 30%, #6ee7b7 60%, #a7f3d0 100%);
    clip-path: polygon(0 100%, 25% 70%, 50% 40%, 75% 20%, 100% 0%, 100% 100%);
    animation: growthChart 3s ease-in-out infinite;
}

.capability-icon.speed {
    background: linear-gradient(135deg, #f0f9ff, #dbeafe);
}

.capability-icon.speed::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid #3b82f6;
    border-radius: 50%;
    border-top-color: transparent;
    animation: aiProcessing 1.5s linear infinite;
}

.capability-icon.speed::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #60a5fa;
    border-radius: 50%;
    animation: aiCore 2s ease-in-out infinite;
}

.capability-icon.optimization {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.capability-icon.optimization::before {
    content: '$';
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    color: #d97706;
    animation: dollarSpin 2.5s ease-in-out infinite;
}

.capability-icon.optimization::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #f59e0b;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: savingsLine 2.5s ease-in-out infinite;
}

@keyframes growthChart {
    0%, 100% { 
        transform: translateX(-50%) scaleY(0.8);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(-50%) scaleY(1.1);
        opacity: 1;
    }
}

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

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

@keyframes dollarSpin {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    25% { 
        transform: rotate(90deg) scale(0.8);
        opacity: 0.7;
    }
    50% { 
        transform: rotate(180deg) scale(1.1);
        opacity: 1;
    }
    75% { 
        transform: rotate(270deg) scale(0.9);
        opacity: 0.8;
    }
}

@keyframes savingsLine {
    0%, 100% { 
        width: 30px;
        opacity: 0.6;
    }
    50% { 
        width: 40px;
        opacity: 1;
    }
}

.capability-card:hover .capability-icon {
    transform: rotate(5deg) scale(1.1);
}

.capability-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.capability-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Acquisitions Section */
.acquisitions {
    background: white;
}

/* Simple Success Stories Slider */
.simple-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    min-height: 380px;
}

.slide {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    min-height: 350px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.slide.active[data-slide="0"] {
    background: linear-gradient(135deg, white 95%, #f0f8ff 100%);
    border-color: rgba(0, 100, 200, 0.1);
}

.slide.active[data-slide="0"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    border-radius: 12px 12px 0 0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.slider-arrow:hover {
    background: #f8f8f8;
    color: #1a1a1a;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: -70px;
}

.slider-arrow.next {
    right: -70px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: scale(1.2);
}

.dot:hover:not(.active) {
    background: rgba(0, 0, 0, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .slider-arrow {
        display: none;
    }
    
    .slider-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .slide {
        padding: 1.5rem;
        min-height: 300px;
    }
}


.card-header {
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #f8f8f8;
    color: #666;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge.recent {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.company {
    color: #666;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.company-logo {
    margin-bottom: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.card-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.card-features span {
    padding: 0.4rem 1rem;
    background: #f8f8f8;
    color: #666;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 400;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-features span:hover {
    background: #e5e5e5;
    color: #333;
}

.card-features span::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;
}

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

/* Portfolio Section - All Projects in One View */
.portfolio {
    background: white;
}

.portfolio-grid-all {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.project-card {
    background: white;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }
.project-card:nth-child(6) { animation-delay: 0.6s; }
.project-card:nth-child(7) { animation-delay: 0.7s; }
.project-card:nth-child(8) { animation-delay: 0.8s; }
.project-card:nth-child(9) { animation-delay: 0.9s; }
.project-card:nth-child(10) { animation-delay: 1.0s; }

.project-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: projectSlideIn 0.8s ease forwards;
}

.project-card.animate-in:nth-child(1) { animation-delay: 0.1s; }
.project-card.animate-in:nth-child(2) { animation-delay: 0.2s; }
.project-card.animate-in:nth-child(3) { animation-delay: 0.3s; }
.project-card.animate-in:nth-child(4) { animation-delay: 0.4s; }
.project-card.animate-in:nth-child(5) { animation-delay: 0.5s; }
.project-card.animate-in:nth-child(6) { animation-delay: 0.6s; }
.project-card.animate-in:nth-child(7) { animation-delay: 0.7s; }
.project-card.animate-in:nth-child(8) { animation-delay: 0.8s; }
.project-card.animate-in:nth-child(9) { animation-delay: 0.9s; }
.project-card.animate-in:nth-child(10) { animation-delay: 1.0s; }

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-card.full-width {
    grid-column: 1 / -1;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.project-card.full-width .project-content {
    flex: 1;
}

.project-card.full-width .project-content h4 {
    margin-bottom: 0.5rem;
}

.project-card.double-width {
    grid-column: span 2;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.project-card.double-width .project-content {
    flex: 1;
}

.project-card.double-width .project-content h4 {
    margin-bottom: 0.5rem;
}

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

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

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

.project-content {
    position: relative;
    z-index: 2;
}

.project-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    line-height: 1.4;
}

.project-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.impact-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #f8f8f8;
    color: #666;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-card:hover .impact-badge {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.project-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: #f8f8f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.project-card:hover .project-icon {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: scale(1.1) rotate(5deg);
}

/* Healthcare Animations */
.healthcare-icon {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8f5e8 100%);
}

.heartbeat-line {
    position: absolute;
    width: 30px;
    height: 2px;
    background: #666;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: heartbeatLine 2s infinite;
}

.heartbeat-line::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
    left: -8px;
    top: -2px;
    animation: heartPulse 2s infinite;
}

.heartbeat-line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
    right: -8px;
    top: -2px;
    animation: heartPulse 2s infinite 0.3s;
}

.heart-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #666;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 2s infinite;
}

.healthcare:hover .heartbeat-line,
.healthcare:hover .heartbeat-line::before,
.healthcare:hover .heartbeat-line::after {
    background: white;
}

.healthcare:hover .heart-pulse {
    border-color: white;
}

@keyframes heartbeatLine {
    0%, 100% { transform: translate(-50%, -50%) scaleX(1); }
    50% { transform: translate(-50%, -50%) scaleX(1.2); }
}

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

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

/* Education Animations */
.education-icon {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8f0ff 100%);
}

.book-pages {
    position: absolute;
    width: 20px;
    height: 16px;
    background: #666;
    border-radius: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: bookFlip 3s infinite;
}

.book-pages::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 14px;
    background: #f8f8f8;
    border-radius: 1px;
    top: 1px;
    left: 1px;
    animation: pageFlip 3s infinite;
}

.knowledge-dots {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #666;
    border-radius: 50%;
    left: 40%;
    top: 30%;
    animation: knowledgeSpread 2s infinite;
}

.knowledge-dots::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: #666;
    border-radius: 50%;
    left: 8px;
    top: 5px;
    animation: knowledgeSpread 2s infinite 0.3s;
}

.knowledge-dots::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: #666;
    border-radius: 50%;
    left: 15px;
    top: -2px;
    animation: knowledgeSpread 2s infinite 0.6s;
}

.graduation-cap {
    position: absolute;
    width: 24px;
    height: 16px;
    background: #666;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    clip-path: polygon(20% 60%, 50% 20%, 80% 60%, 50% 100%);
    animation: capToss 3s infinite;
}

.learning-path {
    position: absolute;
    width: 30px;
    height: 2px;
    background: #666;
    left: 50%;
    bottom: 25%;
    transform: translateX(-50%);
    animation: pathGrow 2s infinite;
}

.learning-path::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #666;
    right: -4px;
    top: -2px;
    animation: arrowMove 2s infinite;
}

.education:hover .book-pages,
.education:hover .knowledge-dots,
.education:hover .knowledge-dots::before,
.education:hover .knowledge-dots::after,
.education:hover .graduation-cap,
.education:hover .learning-path,
.education:hover .learning-path::before {
    background: white;
    border-color: white;
}

.education:hover .learning-path::before {
    border-bottom-color: white;
}

/* Document Management hover effects */
.education:hover .document-stack,
.education:hover .document-stack::before,
.education:hover .document-stack::after {
    background: white;
}

.education:hover .file-transfer,
.education:hover .file-transfer::before {
    background: white;
}

.education:hover .file-transfer::after {
    border-bottom-color: white;
}

/* CRM System hover effects */
.enterprise:hover .crm-chart::before,
.enterprise:hover .crm-chart::after,
.enterprise:hover .crm-chart:before {
    background: white;
}

.enterprise:hover .data-flow,
.enterprise:hover .data-flow::before,
.enterprise:hover .data-flow::after {
    background: white;
}

@keyframes bookFlip {
    0%, 100% { transform: translate(-50%, -50%) rotateY(0deg); }
    50% { transform: translate(-50%, -50%) rotateY(180deg); }
}

@keyframes pageFlip {
    0%, 100% { transform: rotateY(0deg) scaleX(1); }
    50% { transform: rotateY(90deg) scaleX(0.5); }
}

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

@keyframes capToss {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
    50% { transform: translate(-50%, -50%) translateY(-8px) rotate(15deg); }
}

@keyframes pathGrow {
    0% { width: 20px; }
    100% { width: 30px; }
}

@keyframes arrowMove {
    0%, 100% { right: -4px; }
    50% { right: -8px; }
}

/* Document Management Enhanced Animations */
.document-stack {
    position: absolute;
    width: 20px;
    height: 16px;
    background: #666;
    border-radius: 2px;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    animation: documentStack 3s infinite;
}

.document-stack::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 14px;
    background: #999;
    border-radius: 2px;
    top: -3px;
    left: 1px;
    animation: documentLayer 3s infinite;
}

.document-stack::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 12px;
    background: #bbb;
    border-radius: 2px;
    top: -6px;
    left: 2px;
    animation: documentLayer 3s infinite 0.5s;
}

.file-transfer {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #666;
    border-radius: 50%;
    left: 25%;
    bottom: 30%;
    animation: fileTransfer 2.5s infinite;
}

.file-transfer::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 12px;
    background: #666;
    left: 3px;
    top: -8px;
    border-radius: 1px;
    animation: transferLine 2.5s infinite;
}

.file-transfer::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 4px solid #666;
    left: 1px;
    top: -12px;
    animation: transferArrow 2.5s infinite;
}

@keyframes documentStack {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    25% { 
        transform: translate(-50%, -50%) scale(1.05) rotateZ(1deg);
        opacity: 0.9;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1) rotateZ(0deg);
        opacity: 1;
    }
    75% { 
        transform: translate(-50%, -50%) scale(1.05) rotateZ(-1deg);
        opacity: 0.9;
    }
}

@keyframes documentLayer {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-2px) scale(1.05);
        opacity: 1;
    }
}

@keyframes fileTransfer {
    0%, 100% { 
        left: 25%;
        opacity: 1;
        transform: scale(1);
    }
    25% { 
        left: 35%;
        opacity: 0.8;
        transform: scale(1.1);
    }
    50% { 
        left: 50%;
        opacity: 1;
        transform: scale(0.9);
    }
    75% { 
        left: 65%;
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes transferLine {
    0%, 100% { 
        opacity: 0.6;
        transform: scaleY(1);
    }
    50% { 
        opacity: 1;
        transform: scaleY(1.2);
    }
}

@keyframes transferArrow {
    0%, 100% { 
        opacity: 0.7;
        transform: translateY(0);
    }
    50% { 
        opacity: 1;
        transform: translateY(-2px);
    }
}

/* CRM System Enhanced Animations */
.crm-chart {
    position: absolute;
    width: 24px;
    height: 20px;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
}

.crm-chart::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 12px;
    background: #666;
    left: 2px;
    bottom: 0;
    border-radius: 1px 1px 0 0;
    animation: chartBar1 2.5s infinite;
}

.crm-chart::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 16px;
    background: #666;
    left: 8px;
    bottom: 0;
    border-radius: 1px 1px 0 0;
    animation: chartBar2 2.5s infinite 0.3s;
}

.crm-chart {
    position: relative;
}

.crm-chart:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 20px;
    background: #666;
    right: 2px;
    bottom: 0;
    border-radius: 1px 1px 0 0;
    animation: chartBar3 2.5s infinite 0.6s;
}

.data-flow {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
    right: 25%;
    top: 25%;
    animation: dataFlow 2s infinite;
}

.data-flow::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #666;
    border-radius: 50%;
    left: 8px;
    top: 6px;
    animation: dataFlow 2s infinite 0.4s;
}

.data-flow::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #666;
    border-radius: 50%;
    left: -6px;
    top: 8px;
    animation: dataFlow 2s infinite 0.8s;
}

@keyframes chartBar1 {
    0%, 100% { 
        height: 12px;
        opacity: 0.8;
    }
    50% { 
        height: 16px;
        opacity: 1;
    }
}

@keyframes chartBar2 {
    0%, 100% { 
        height: 16px;
        opacity: 0.8;
    }
    50% { 
        height: 20px;
        opacity: 1;
    }
}

@keyframes chartBar3 {
    0%, 100% { 
        height: 20px;
        opacity: 0.8;
    }
    50% { 
        height: 14px;
        opacity: 1;
    }
}

@keyframes dataFlow {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: scale(1.2);
        opacity: 1;
    }
    50% { 
        transform: scale(0.8);
        opacity: 0.4;
    }
    75% { 
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Enterprise - Gear rotation animation */
.portfolio-category:nth-child(3) .project-icon::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at center, transparent 4px, #1a1a1a 4px, #1a1a1a 6px, transparent 6px);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: gear-rotate 4s infinite linear;
}

/* AI Innovation - Neural network animation */
.portfolio-category:nth-child(4) .project-icon::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 50%;
    animation: neural-pulse 2s infinite;
    box-shadow: 
        8px 0 0 #1a1a1a,
        -8px 0 0 #1a1a1a,
        0 8px 0 #1a1a1a,
        0 -8px 0 #1a1a1a;
}

.portfolio-category:nth-child(4) .project-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: #1a1a1a;
    animation: neural-connect 2s infinite;
    transform-origin: center;
}

.project-card:hover .project-icon {
    background: #e5e5e5;
    transform: scale(1.05);
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1) rotate(45deg); }
    14% { transform: scale(1.2) rotate(45deg); }
    28% { transform: scale(1) rotate(45deg); }
    42% { transform: scale(1.2) rotate(45deg); }
    70% { transform: scale(1) rotate(45deg); }
}

@keyframes book-flip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

@keyframes page-turn {
    0%, 100% { transform: rotateY(0deg) scaleX(1); }
    50% { transform: rotateY(90deg) scaleX(0.5); }
}

@keyframes gear-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes neural-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            8px 0 0 #1a1a1a,
            -8px 0 0 #1a1a1a,
            0 8px 0 #1a1a1a,
            0 -8px 0 #1a1a1a;
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 
            8px 0 0 rgba(26, 26, 26, 0.7),
            -8px 0 0 rgba(26, 26, 26, 0.7),
            0 8px 0 rgba(26, 26, 26, 0.7),
            0 -8px 0 rgba(26, 26, 26, 0.7);
    }
}

@keyframes neural-connect {
    0% { transform: rotate(0deg); opacity: 0.3; }
    25% { transform: rotate(45deg); opacity: 0.8; }
    50% { transform: rotate(90deg); opacity: 0.3; }
    75% { transform: rotate(135deg); opacity: 0.8; }
    100% { transform: rotate(180deg); opacity: 0.3; }
}

.project-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.project-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.location {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #f8f8f8;
    color: #666;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Work in Progress Section */
.wip {
    background: linear-gradient(135deg, #f8f8f8 0%, white 50%, #f8f8f8 100%);
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.wip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='0.02'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.wip .section-header h2,
.wip .section-header p {
    color: #1a1a1a;
}

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

.wip-grid.two-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.wip-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

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

.wip-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.12);
}

.wip-card.featured {
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.06);
}

.wip-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
}

/* WIP Card Icons */
.wip-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    background: #f8f8f8;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Mega Project Animation - Student Flow */
.mega-project-icon {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
}

.student-flow {
    position: relative;
    width: 60px;
    height: 60px;
}

.student-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
    animation: studentFlow 3s infinite;
}

.student-dot:nth-child(1) {
    top: 10px; left: 10px;
    animation-delay: 0s;
}

.student-dot:nth-child(2) {
    top: 20px; right: 15px;
    animation-delay: 0.3s;
}

.student-dot:nth-child(3) {
    bottom: 25px; left: 20px;
    animation-delay: 0.6s;
}

.student-dot:nth-child(4) {
    bottom: 15px; right: 10px;
    animation-delay: 0.9s;
}

.student-dot:nth-child(5) {
    top: 30px; left: 30px;
    animation-delay: 1.2s;
}

.ai-brain-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #1a1a1a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: brainPulse 2s infinite;
}

@keyframes studentFlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Debug Icon Animation */
.debug-icon {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    flex-direction: column;
}

.code-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 40px;
}

.code-line {
    height: 2px;
    background: #666;
    border-radius: 1px;
    animation: codeScan 3s infinite;
}

.code-line:nth-child(1) {
    width: 35px;
    animation-delay: 0s;
}

.code-line:nth-child(2) {
    width: 28px;
    animation-delay: 0.5s;
}

.code-line:nth-child(3) {
    width: 40px;
    animation-delay: 1s;
}

.code-line.error {
    background: #ff6b6b;
    animation: errorBlink 1.5s infinite;
}

.debug-cursor {
    position: absolute;
    right: 15px;
    top: 50%;
    width: 2px;
    height: 20px;
    background: #1a1a1a;
    animation: cursorBlink 1s infinite;
}

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

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

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

/* Factory Icon Animation */
.factory-icon {
    background: linear-gradient(135deg, #f5f5f5, #e5e5e5);
    position: relative;
}

.factory-conveyor {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #1a1a1a,
        #1a1a1a 8px,
        transparent 8px,
        transparent 16px
    );
    animation: conveyorMove 2s linear infinite;
}

.factory-products {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
}

.product {
    width: 8px;
    height: 8px;
    background: #666;
    border-radius: 2px;
    animation: productDrop 3s infinite;
}

.product:nth-child(2) {
    animation-delay: 1s;
}

.product:nth-child(3) {
    animation-delay: 2s;
}

.factory-timer {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    font-weight: bold;
    color: #1a1a1a;
    animation: timerPulse 2s infinite;
}

@keyframes conveyorMove {
    0% { background-position: 0 0; }
    100% { background-position: 16px 0; }
}

@keyframes productDrop {
    0%, 70%, 100% { transform: translateY(0); }
    35% { transform: translateY(30px); }
}

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

.wip-card.mega-project {
    grid-column: span 1;
    background: white;
}

.wip-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8f8f8;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #666;
}

.wip-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.wip-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.wip-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wip-stats span {
    padding: 0.25rem 0.75rem;
    background: #f8f8f8;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Contact Section - Modern Design */
.contact {
    background: #f8f8f8;
    position: relative;
}

.contact-content-modern {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.contact .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact .section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

/* Journey Steps */
.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.journey-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #e5e7eb, #9ca3af, #e5e7eb);
    z-index: 1;
}

.journey-step {
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    animation: stepFadeIn 0.6s ease forwards;
    animation-delay: calc(var(--step) * 0.2s);
    opacity: 0;
    transform: translateY(20px);
}

.journey-step[data-step="1"] { --step: 1; }
.journey-step[data-step="2"] { --step: 2; }
.journey-step[data-step="3"] { --step: 3; }
.journey-step[data-step="4"] { --step: 4; }

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

.journey-step:hover {
    transform: scale(1.05) translateY(-5px);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.journey-step:hover .step-icon {
    border-color: #1a1a1a;
    transform: rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, transparent, rgba(26,26,26,0.05), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journey-step:hover .step-icon::before {
    opacity: 1;
}

.journey-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.journey-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Animated Icons for Journey Steps */
.step-icon {
    overflow: hidden;
}

/* Vision - Lightbulb Animation */
.animated-vision .lightbulb {
    width: 20px;
    height: 24px;
    position: relative;
}

.lightbulb .bulb-core {
    width: 16px;
    height: 20px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: bulbGlow 2s ease-in-out infinite alternate;
}

.lightbulb .bulb-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
}

.lightbulb .bulb-rays::before,
.lightbulb .bulb-rays::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 8px;
    background: #fcd34d;
    transform-origin: center bottom;
    animation: rayRotate 3s linear infinite;
}

.lightbulb .bulb-rays::after {
    animation-delay: 1.5s;
}

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

@keyframes rayRotate {
    0% { transform: translateX(-50%) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 1; }
    100% { transform: translateX(-50%) rotate(360deg); opacity: 0; }
}

/* Architect - Blueprint Layers */
.animated-architect .blueprint-layers {
    position: relative;
    width: 24px;
    height: 20px;
}

.blueprint-layers .layer {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #dbeafe;
    border-radius: 2px;
    opacity: 0;
    animation: layerBuild 3s infinite;
}

.blueprint-layers .layer:nth-child(1) {
    top: 0;
    animation-delay: 0s;
}

.blueprint-layers .layer:nth-child(2) {
    top: 8px;
    animation-delay: 0.5s;
}

.blueprint-layers .layer:nth-child(3) {
    top: 16px;
    animation-delay: 1s;
}

@keyframes layerBuild {
    0%, 20% { opacity: 0; transform: scaleX(0); }
    30%, 80% { opacity: 1; transform: scaleX(1); }
    90%, 100% { opacity: 0; transform: scaleX(0); }
}

/* Rocket - Development Speed */
.animated-rocket .rocket-body {
    position: relative;
    width: 20px;
    height: 28px;
}

.rocket-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 20px;
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    border-radius: 50% 50% 20% 20%;
    animation: rocketBounce 1.5s ease-in-out infinite;
}

.rocket-body .rocket-flame {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 12px;
    background: linear-gradient(180deg, #fef3c7 0%, #fef3c7 50%, #fecaca 100%);
    border-radius: 50% 50% 0 0;
    animation: flameFlicker 0.3s ease-in-out infinite alternate;
}

.rocket-body .speed-lines {
    position: absolute;
    top: 50%;
    right: -15px;
    width: 12px;
    height: 2px;
}

.speed-lines::before,
.speed-lines::after {
    content: '';
    position: absolute;
    right: 0;
    width: 8px;
    height: 1px;
    background: #9ca3af;
    animation: speedMove 0.8s ease-in-out infinite;
}

.speed-lines::after {
    top: 4px;
    animation-delay: 0.2s;
}

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

@keyframes flameFlicker {
    0% { opacity: 0.7; transform: translateX(-50%) scaleY(0.8); }
    100% { opacity: 1; transform: translateX(-50%) scaleY(1.2); }
}

@keyframes speedMove {
    0% { opacity: 0; transform: translateX(10px); }
    50% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-10px); }
}

/* Launch Success - Celebration */
.animated-launch .celebration {
    position: relative;
    width: 24px;
    height: 24px;
}

.celebration .success-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 50%;
    animation: successPulse 2s ease-in-out infinite;
}

.celebration .confetti {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
}

.celebration .confetti::before,
.celebration .confetti::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    animation: confettiFall 2s linear infinite;
}

.celebration .confetti::before {
    top: -5px;
    left: 2px;
    background: #fef3c7;
    animation-delay: 0s;
}

.celebration .confetti::after {
    top: -5px;
    right: 2px;
    background: #fecaca;
    animation-delay: 0.5s;
}

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

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(15px) rotate(180deg); opacity: 0; }
}











.comment {
    color: #10b981;
    font-style: italic;
}











.contact-info-terminal {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #4a5568;
    opacity: 0;
    animation: contactInfoReveal 1s ease forwards;
    animation-delay: 4.5s;
}

@keyframes contactInfoReveal {
    to {
        opacity: 1;
    }
}


.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f1f5f9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Footer - Left-Center-Right Layout with reduced height */
.footer {
    background: white;
    color: #333;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

.footer-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.footer-left p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

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

.footer-logo {
    height: 40px;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    
    .contact-content-simple {
        padding: 0 1rem;
    }
    
    .contact .section-header h2 {
        font-size: 2.2rem;
    }
    
    .contact .section-header p {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .journey-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .journey-steps::before {
        display: none;
    }
    
    
    
    .stats-animation {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-list {
        grid-template-columns: 1fr;
    }
    
    .wip-grid {
        grid-template-columns: 1fr;
    }
    
    .wip-card.mega-project {
        grid-column: 1;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact .section-header h2 {
        font-size: 1.8rem;
    }
    
    .journey-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    
    .step-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}

/* Legal Pages Styling */
.legal-page {
    background: white;
    padding: 6rem 0 4rem;
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 1.5rem 0 1rem 0;
}

.legal-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul, 
.legal-section ol {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

/* Mobile responsiveness for legal pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 5rem 0 3rem;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        flex: none;
        justify-content: center;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    /* About section mobile fixes */
    .story-card {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    
    .story-card.reverse {
        grid-template-columns: 60px 1fr;
    }
    
    .story-card.reverse .story-visual {
        order: initial;
    }
    
    .story-visual {
        display: none;
    }
    
    .story-number {
        font-size: 2rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* Additional Portfolio Animations */
.enterprise-icon {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff8e8 100%);
}

.support-waves {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #666;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: supportWaves 2s infinite;
}

.support-waves::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #666;
    border-radius: 50%;
    left: -7px;
    top: -7px;
    opacity: 0.6;
    animation: supportWaves 2s infinite 0.5s;
}

.communication-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #666;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: commPulse 1.5s infinite;
}

.mobility-icon {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8f8f0 100%);
}

.car-movement {
    position: absolute;
    width: 20px;
    height: 12px;
    background: #666;
    border-radius: 3px;
    left: 30%;
    top: 50%;
    transform: translateY(-50%);
    animation: carMove 3s infinite;
}

.car-movement::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #666;
    border-radius: 50%;
    left: 2px;
    bottom: -2px;
    animation: wheelSpin 0.5s infinite linear;
}

.car-movement::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #666;
    border-radius: 50%;
    right: 2px;
    bottom: -2px;
    animation: wheelSpin 0.5s infinite linear;
}

.route-line {
    position: absolute;
    width: 30px;
    height: 2px;
    background: repeating-linear-gradient(90deg, #666 0, #666 4px, transparent 4px, transparent 8px);
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    animation: routeFlow 2s infinite;
}

.innovation-icon {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f8ff 100%);
}

.visitor-scan {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #666;
    border-radius: 4px;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    animation: scanPulse 2s infinite;
}

.visitor-scan::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #666;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: scanLine 2s infinite;
}

.security-check {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #666;
    border-radius: 50%;
    right: 25%;
    top: 25%;
    animation: securityBlink 1.5s infinite;
}

.ai-icon {
    background: linear-gradient(135deg, #f8f8f8 0%, #f5f0ff 100%);
}

.ai-brain {
    position: absolute;
    width: 24px;
    height: 20px;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
}

.ai-brain::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #666;
    border-radius: 50% 50% 45% 45%;
    animation: brainPulse 2s infinite;
}

.neural-network {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #666;
    border-radius: 50%;
    left: 40%;
    top: 40%;
    animation: neuralPulse 1.5s infinite;
}

.neural-network::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: #666;
    border-radius: 50%;
    left: 8px;
    top: -2px;
    animation: neuralPulse 1.5s infinite 0.3s;
}

.neural-network::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: #666;
    border-radius: 50%;
    left: 4px;
    top: 6px;
    animation: neuralPulse 1.5s infinite 0.6s;
}

.web-icon {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff5f0 100%);
}

.globe-rotate {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid #666;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: globeRotate 4s infinite linear;
}

.globe-rotate::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #666;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.globe-rotate::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: #666;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.web-connections {
    position: absolute;
    width: 2px;
    height: 12px;
    background: #666;
    right: 25%;
    top: 30%;
    animation: connectionPulse 1.5s infinite;
}

.web-connections::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 8px;
    background: #666;
    left: -6px;
    top: 6px;
    animation: connectionPulse 1.5s infinite 0.3s;
}

/* Website Development Animation */
.web-dev-icon {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.browser-window {
    position: absolute;
    width: 32px;
    height: 24px;
    background: white;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.browser-header {
    height: 6px;
    background: #f1f5f9;
    border-radius: 2px 2px 0 0;
    display: flex;
    align-items: center;
    padding: 0 2px;
    gap: 1px;
}

.browser-controls {
    display: flex;
    gap: 1px;
}

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

.control-dot.red { background: #ef4444; }
.control-dot.yellow { background: #eab308; }
.control-dot.green { background: #22c55e; }

.address-bar {
    margin-left: auto;
    font-size: 2px;
    color: #64748b;
    background: white;
    padding: 0 1px;
    border-radius: 1px;
}

.webpage-content {
    height: 18px;
    padding: 2px;
    display: grid;
    grid-template-columns: 1fr 8px;
    grid-template-rows: 4px 1fr;
    gap: 1px;
}

.webpage-element {
    background: #e2e8f0;
    border-radius: 1px;
}

.webpage-element.header {
    grid-column: 1 / -1;
    background: #3b82f6;
    animation: headerBuild 3s ease-in-out infinite;
}

.webpage-element.content {
    background: #f1f5f9;
}

.webpage-element.sidebar {
    background: #e2e8f0;
}

.webpage-element.building {
    animation: elementBuild 3s ease-in-out infinite;
}

.coding-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: #3b82f6;
    border-radius: 50%;
    animation: particleFloat 2s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 0.7s;
}

.particle:nth-child(3) {
    top: 80%;
    right: 15%;
    animation-delay: 1.4s;
}

@keyframes headerBuild {
    0%, 30% { transform: scaleX(0); }
    60%, 100% { transform: scaleX(1); }
}

@keyframes elementBuild {
    0%, 40% { opacity: 0.3; transform: scaleY(0.1); }
    70%, 100% { opacity: 1; transform: scaleY(1); }
}

@keyframes particleFloat {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateY(0) scale(0.5); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-8px) scale(1); 
    }
}

/* Portfolio Hover Effects */
.enterprise:hover .support-waves,
.enterprise:hover .support-waves::before,
.enterprise:hover .communication-pulse {
    background: white;
    border-color: white;
}

.mobility:hover .car-movement,
.mobility:hover .car-movement::before,
.mobility:hover .car-movement::after,
.mobility:hover .route-line {
    background: white;
}

.innovation:hover .visitor-scan,
.innovation:hover .visitor-scan::before,
.innovation:hover .security-check {
    background: white;
    border-color: white;
}

.ai:hover .ai-brain::before,
.ai:hover .neural-network,
.ai:hover .neural-network::before,
.ai:hover .neural-network::after {
    background: white;
    border-color: white;
}

/* Government project styling */
.government-icon {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8f0e8 100%);
}

.government:hover .student-flow .student-dot,
.government:hover .ai-brain-center {
    background: white;
}

.web:hover .globe-rotate,
.web:hover .globe-rotate::before,
.web:hover .globe-rotate::after,
.web:hover .web-connections,
.web:hover .web-connections::before {
    background: white;
    border-color: white;
}

/* Portfolio Animation Keyframes */
@keyframes supportWaves {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@keyframes commPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.5); }
}

@keyframes carMove {
    0%, 100% { left: 20%; }
    50% { left: 60%; }
}

@keyframes wheelSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes routeFlow {
    0% { background-position: 0 0; }
    100% { background-position: 8px 0; }
}

/* Enhanced Visitor Management Animations */
@keyframes scanPulse {
    0%, 100% { 
        border-color: #666; 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(102, 102, 102, 0);
    }
    25% { 
        border-color: #999; 
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 0 2px rgba(102, 102, 102, 0.2);
    }
    50% { 
        border-color: #1a1a1a; 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.3);
    }
    75% { 
        border-color: #999; 
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 0 2px rgba(102, 102, 102, 0.2);
    }
}

@keyframes scanLine {
    0% { 
        opacity: 0.2;
        transform: translateY(-50%) scaleX(0.5);
    }
    25% { 
        opacity: 0.8;
        transform: translateY(-50%) scaleX(0.8);
    }
    50% { 
        opacity: 1;
        transform: translateY(-50%) scaleX(1.2);
    }
    75% { 
        opacity: 0.8;
        transform: translateY(-50%) scaleX(0.8);
    }
    100% { 
        opacity: 0.2;
        transform: translateY(-50%) scaleX(0.5);
    }
}

@keyframes securityBlink {
    0%, 70%, 100% { 
        opacity: 0.4;
        transform: scale(1);
        background: #666;
    }
    10%, 30% { 
        opacity: 1;
        transform: scale(1.3);
        background: #ff6b6b;
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.1);
        background: #4CAF50;
    }
}

/* Enhanced AI Interview Animations */
@keyframes brainPulse {
    0%, 100% { 
        transform: scale(1);
        border-color: #666;
    }
    25% { 
        transform: scale(1.05);
        border-color: #999;
    }
    50% { 
        transform: scale(1.1);
        border-color: #1a1a1a;
    }
    75% { 
        transform: scale(1.05);
        border-color: #999;
    }
}

@keyframes neuralPulse {
    0% { 
        opacity: 0.3; 
        transform: scale(0.8);
        background: #666;
    }
    25% { 
        opacity: 0.7; 
        transform: scale(1.1);
        background: #999;
    }
    50% { 
        opacity: 1; 
        transform: scale(1.4);
        background: #1a1a1a;
    }
    75% { 
        opacity: 0.8; 
        transform: scale(1.2);
        background: #999;
    }
    100% { 
        opacity: 0.4; 
        transform: scale(1);
        background: #666;
    }
}

/* Enhanced Insurance Animation (already good but minor improvements) */
@keyframes heartbeatLine {
    0%, 100% { 
        transform: translate(-50%, -50%) scaleX(1);
        background: #666;
    }
    14% { 
        transform: translate(-50%, -50%) scaleX(1.3);
        background: #ff6b6b;
    }
    28% { 
        transform: translate(-50%, -50%) scaleX(1);
        background: #666;
    }
    42% { 
        transform: translate(-50%, -50%) scaleX(1.3);
        background: #ff6b6b;
    }
    70% { 
        transform: translate(-50%, -50%) scaleX(1);
        background: #666;
    }
}

@keyframes globeRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.5; height: 8px; }
    50% { opacity: 1; height: 12px; }
}

/* Contact Info Section */
.contact-info {
    padding: 4rem 0;
    background: #ffffff;
}

.terminal-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal-window {
    width: 600px;
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.terminal-header {
    background: #2d2d2d;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #404040;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.control-dot:hover {
    transform: scale(1.1);
}

.control-dot.red {
    background: #ff5f56;
    border: 1px solid #e04640;
}

.control-dot.yellow {
    background: #ffbd2e;
    border: 1px solid #dea123;
}

.control-dot.green {
    background: #27ca3f;
    border: 1px solid #1aab2e;
}

.terminal-title {
    color: #999;
    font-size: 13px;
    font-weight: 500;
    margin-left: 8px;
}

.terminal-content {
    padding: 20px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 16px;
}

.terminal-prompt {
    color: #61dafb;
    font-weight: 600;
}

.terminal-command {
    color: #98d982;
    margin-left: 8px;
}

.typing-effect {
    animation: typeWriter 2s steps(40, end) 1s both;
    border-right: 2px solid #61dafb;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes typeWriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.terminal-output {
    margin-top: 16px;
    padding-left: 8px;
}

.contact-detail {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-label {
    color: #ffd23f;
    font-weight: 600;
    min-width: 80px;
}

.contact-value {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #61dafb;
    text-decoration: underline;
}

.terminal-cursor {
    display: inline-block;
    background: #61dafb;
    width: 8px;
    height: 16px;
    margin-left: 4px;
    animation: blink 1s infinite;
}

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


/* Terminal Responsive Styles */
@media (max-width: 768px) {
    .terminal-window {
        width: 90%;
        margin: 0 20px;
    }
    
    .terminal-header {
        padding: 10px 12px;
    }
    
    .terminal-title {
        font-size: 12px;
    }
    
    .terminal-content {
        padding: 16px;
        font-size: 13px;
    }
    
    .contact-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .contact-label {
        min-width: auto;
        font-size: 13px;
    }
    
    .contact-value {
        font-size: 13px;
    }
    
    .hero-animation {
        max-width: 300px;
        height: 250px;
    }
    
    .device-frame {
        width: 100px;
        height: 200px;
        padding: 10px 8px;
    }
    
    .app-window {
        width: 180px;
        height: 140px;
    }
    
    .desktop-app {
        transform: scale(0.8) translateX(-40px) translateY(30px);
    }
}
