@font-face {
    font-family: 'Geist Mono';
    src: url('https://cdn.jsdelivr.net/npm/geist-font@latest/fonts/geist-mono/GeistMono-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --teal-400: #4FD1C5;
    --teal-500: #38B2AC;
    --teal-600: #319795;
    --teal-900: #1D4044;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
}

.font-geist-mono {
    font-family: 'Geist Mono', monospace;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

/* Navigation Styles */
.nav-link {
    position: relative;
    color: #CBD5E0;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: white;
}

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

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

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: #CBD5E0;
    transition: color 0.3s;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--teal-400);
}

/* Logo animation */
.logo-svg {
    transition: transform 0.5s ease;
}

.logo-container:hover .logo-svg {
    transform: rotate(10deg);
}

.logo-path, .logo-path-inner, .logo-circle {
    transition: all 0.5s ease;
}

.logo-container:hover .logo-path {
    stroke: var(--teal-400);
}

.logo-container:hover .logo-path-inner {
    stroke-dasharray: 5,5;
    stroke-width: 3;
}

.logo-container:hover .logo-circle {
    r: 12;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 255, 170, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-bg-elements:before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: float 15s infinite ease-in-out;
}

.hero-bg-elements:after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: float 20s infinite ease-in-out reverse;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.tech-decorations {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px dashed rgba(79, 209, 197, 0.3);
    border-radius: 16px;
    z-index: -1;
}

.tech-decorations:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--teal-400);
    filter: blur(10px);
}

.tech-decorations:after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 40px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--teal-400);
    filter: blur(10px);
}

.tech-decorations-left {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px dashed rgba(79, 209, 197, 0.3);
    border-radius: 16px;
    z-index: -1;
}

.tech-decorations-right {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px dashed rgba(79, 209, 197, 0.3);
    border-radius: 16px;
    z-index: -1;
}

.code-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s;
}

.hero-image-container:hover .code-overlay {
    opacity: 1;
}

.text-gradient {
    background: linear-gradient(90deg, #4FD1C5, #38B2AC, #319795);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.text-gradient:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4FD1C5, #38B2AC, #319795);
    border-radius: 2px;
    opacity: 0.3;
}

.shadow-glow {
    box-shadow: 0 0 20px rgba(79, 209, 197, 0.2);
}

/* Tech code snippet */
.tech-code-snippet {
    font-family: 'Geist Mono', monospace;
    opacity: 0.8;
    font-size: 0.75rem;
    line-height: 1.4;
    overflow: hidden;
}

.code-line {
    white-space: pre;
    padding-left: 1rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, var(--teal-600), var(--teal-400));
    color: white;
    font-weight: 500;
    border-radius: 0.375rem;
    box-shadow: 0 4px 10px rgba(79, 209, 197, 0.3);
    transition: all 0.3s;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(79, 209, 197, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(79, 209, 197, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: white;
    font-weight: 500;
    border-radius: 0.375rem;
    border: 1px solid var(--teal-400);
    transition: all 0.3s;
    text-align: center;
}

.btn-secondary:hover {
    background-color: rgba(79, 209, 197, 0.1);
    transform: translateY(-2px);
}

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

/* Page Headers */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 255, 170, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Service Cards */
.service-card {
    position: relative;
    padding: 2rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 209, 197, 0.5);
    box-shadow: 0 10px 25px -5px rgba(79, 209, 197, 0.1);
}

.service-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-400), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

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

.icon-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(79, 209, 197, 0.1);
    border-radius: 0.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: rgba(79, 209, 197, 0.1);
    border: 1px solid rgba(79, 209, 197, 0.3);
    color: var(--teal-400);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Background patterns and elements */
.tech-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(79, 209, 197, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    opacity: 0.3;
}

.tech-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(79, 209, 197, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 209, 197, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.3;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-bg-elements:before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 209, 197, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.cta-bg-elements:after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    z-index: -1;
}

/* Social icons */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(79, 209, 197, 0.1);
    color: var(--teal-400);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--teal-400);
    color: white;
    transform: translateY(-3px);
}

.social-icon-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(79, 209, 197, 0.2);
    color: var(--teal-400);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon-sm:hover {
    background-color: var(--teal-400);
    color: white;
}

/* Footer styles */
.footer-link {
    color: #CBD5E0;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--teal-400);
}

/* About page team member card */
.team-member {
    padding: 1.5rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 209, 197, 0.3);
    box-shadow: 0 10px 25px -5px rgba(79, 209, 197, 0.1);
}

/* Timeline styles */
.timeline {
    position: relative;
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
}

.timeline-dot {
    width: 1rem;
    height: 1rem;
    background-color: var(--teal-400);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(79, 209, 197, 0.1);
}

.timeline-content {
    padding-right: 2rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
    padding-right: 0;
    padding-left: 2rem;
    text-align: left;
}

.timeline-date {
    font-family: 'Geist Mono', monospace;
    color: var(--teal-400);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.timeline-card {
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
}

/* Tech badges and cards */
.tech-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(79, 209, 197, 0.1);
    border: 1px solid rgba(79, 209, 197, 0.2);
    color: var(--teal-400);
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s;
}

.tech-badge:hover {
    background-color: rgba(79, 209, 197, 0.2);
    border-color: rgba(79, 209, 197, 0.4);
    transform: translateY(-2px);
}

.tech-card {
    padding: 1.5rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.tech-card:hover {
    border-color: rgba(79, 209, 197, 0.3);
}

/* Value cards */
.value-card {
    padding: 2rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 209, 197, 0.4);
    box-shadow: 0 10px 25px -5px rgba(79, 209, 197, 0.1);
}

.value-card .icon-container {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
}

/* Testimonial card */
.testimonial-card {
    padding: 1.5rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 209, 197, 0.4);
    box-shadow: 0 10px 25px -5px rgba(79, 209, 197, 0.1);
}

/* Service page styles */
.stat-card {
    padding: 1rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: white;
    font-weight: 500;
    border-radius: 0.375rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.category-tab:hover, .category-tab.active {
    background-color: rgba(79, 209, 197, 0.1);
    border-color: var(--teal-400);
    color: var(--teal-400);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.detailed-service-card {
    padding: 2rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.detailed-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 209, 197, 0.4);
    box-shadow: 0 10px 25px -5px rgba(79, 209, 197, 0.1);
}

/* Process timeline */
.process-timeline {
    position: relative;
}

.process-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, var(--teal-400), var(--teal-600));
    transform: translateX(-50%);
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2rem;
    position: relative;
}

.process-number {
    font-family: 'Geist Mono', monospace;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--teal-400);
    margin-bottom: 1rem;
}

.process-dot {
    width: 1rem;
    height: 1rem;
    background-color: var(--teal-400);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 5px rgba(79, 209, 197, 0.2);
}

.process-content {
    flex: 1;
}

/* Case study card */
.case-study-card {
    padding: 1.5rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.case-study-card:hover {
    border-color: rgba(79, 209, 197, 0.4);
    box-shadow: 0 10px 25px -5px rgba(79, 209, 197, 0.1);
}

/* Solutions page styles */
.solution-nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: white;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.3s;
}

.solution-nav-link:hover {
    background-color: rgba(79, 209, 197, 0.1);
    color: var(--teal-400);
}

.schema-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
    text-align: center;
}

.schema-item:hover {
    background-color: rgba(79, 209, 197, 0.1);
    border-color: rgba(79, 209, 197, 0.4);
    transform: translateY(-3px);
}

.schema-icon {
    margin-bottom: 0.5rem;
}

.schema-text {
    font-weight: 500;
}

.solution-section {
    scroll-margin-top: 5rem;
}

.feature-box {
    padding: 1rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.feature-box:hover {
    background-color: rgba(79, 209, 197, 0.1);
    border-color: rgba(79, 209, 197, 0.4);
}

.feature-icon {
    margin-bottom: 0.75rem;
}

.highlight-card {
    padding: 1.5rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
    text-align: center;
}

.highlight-card:hover {
    background-color: rgba(79, 209, 197, 0.05);
    border-color: rgba(79, 209, 197, 0.4);
    transform: translateY(-3px);
}

.scenario-card {
    padding: 1.5rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
    text-align: center;
}

.scenario-card:hover {
    background-color: rgba(79, 209, 197, 0.05);
    border-color: rgba(79, 209, 197, 0.4);
    transform: translateY(-3px);
}

.scenario-icon {
    margin: 0 auto 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(79, 209, 197, 0.1);
    border-radius: 50%;
}

.scenario-card-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.scenario-card-horizontal:hover {
    background-color: rgba(79, 209, 197, 0.05);
    border-color: rgba(79, 209, 197, 0.4);
    transform: translateY(-3px);
}

.app-showcase-card {
    padding: 2rem;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
    height: 100%;
}

.app-showcase-card:hover {
    background-color: rgba(79, 209, 197, 0.05);
    border-color: rgba(79, 209, 197, 0.4);
}

.app-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: rgba(79, 209, 197, 0.1);
    border-radius: 16px;
}

/* Contact page styles */
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(79, 209, 197, 0.1);
    border-radius: 0.5rem;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.375rem;
    color: white;
    transition: all 0.3s;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--teal-400);
    outline: none;
    box-shadow: 0 0 0 2px rgba(79, 209, 197, 0.2);
}

.form-checkbox {
    width: 1rem;
    height: 1rem;
    background-color: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.25rem;
    appearance: none;
    transition: all 0.3s;
    position: relative;
}

.form-checkbox:checked {
    background-color: var(--teal-400);
    border-color: var(--teal-400);
}

.form-checkbox:checked:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-bg-elements {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle at 30% 70%, rgba(79, 209, 197, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* FAQ styles */
.faq-item {
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 1.25rem;
    background-color: rgba(17, 24, 39, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-answer.active {
    padding: 1.25rem;
    max-height: 1000px;
    border-top: 1px solid rgba(79, 209, 197, 0.2);
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

/* Animation keyframes */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, 20px);
    }
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: auto 1fr;
        grid-template-areas: "dot content";
    }
    
    .timeline-dot {
        grid-area: dot;
    }
    
    .timeline-content {
        grid-area: content;
        padding-right: 0;
        padding-left: 2rem;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
    }
    
    .timeline-line {
        left: 7px;
    }
    
    .process-item {
        flex-direction: column;
    }
    
    .process-step {
        margin-right: 0;
        margin-bottom: 1rem;
        flex-direction: row;
        align-items: center;
    }
    
    .process-number {
        margin-bottom: 0;
        margin-right: 1rem;
    }
    
    .process-line {
        display: none;
    }
}

/* Animation for code typing effect */
.tech-code-snippet {
    position: relative;
    overflow: hidden;
}

.tech-code-snippet::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, black);
    animation: typing 3s steps(30) infinite;
}

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