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

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

:root {
    /* Border Radius Variables */
    --border-radius-sm: 0.375rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    
    /* Color Palette - Consolidated */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

/* Futuristic Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.nav-container.scrolled {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
    border-bottom: 1px solid rgba(59, 130, 246, 0.4);
}

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

.nav-logo {
    position: relative;
    z-index: 10;
}

.nav-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Removed animated pseudo-element */

.nav-logo .logo-text:hover {
    transform: scale(1.1) rotate(2deg);
    color: #3b82f6;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

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

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

.nav-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.nav-link.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}


@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    padding: 2rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(30, 64, 175, 0.15) 0%, transparent 50%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(30, 64, 175, 0.8) 50%, rgba(59, 130, 246, 0.9) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    margin-top: 1rem;
    margin-bottom: 1.275rem;
}

.badge-text {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.425rem 0.85rem;
    border-radius: 17px;
    font-size: 0.7225rem;
    font-weight: 600;
    letter-spacing: 0.425px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.6), 0 0 40px rgba(34, 197, 94, 0.4), 0 0 60px rgba(34, 197, 94, 0.2);
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
    animation: greenGlow 2s ease-in-out infinite alternate;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 2.975rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.275rem;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.0625rem;
    font-weight: 500;
    margin-bottom: 1.275rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 0.935rem;
    line-height: 1.6;
    margin-bottom: 2.125rem;
    opacity: 0.8;
}

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

.cta-primary, .cta-secondary {
    padding: 0.85rem 1.7rem;
    border: none;
    border-radius: 6.8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 500px;
    overflow: visible;
    animation: visualFloat 6s ease-in-out infinite;
}

/* Molecular Visualization */
.molecular-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* Main Molecule Container */
.molecule-container {
    position: relative;
    width: 500px;
    height: 500px;
    transform: scale(1.1) translateY(35px);
}

/* Process Nodes - Stunning Effects */
.process-node {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    text-align: center;
    line-height: 1.1;
    animation: glowPulse 3s ease-in-out infinite;
}

.process-node::before {
    content: attr(data-process);
    font-size: 0.55rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Hover effects removed */

/* Experience Node (Start) */
.node-experience {
    width: 75px;
    height: 75px;
    background: #7c3aed;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    left: calc(10% - 30px);
    top: calc(50% + 20px);
    transform: translateY(-50%);
}

/* Data Node */
.node-data {
    width: 65px;
    height: 65px;
    background: #d97706;
    box-shadow: 
        0 0 18px rgba(245, 158, 11, 0.6),
        inset 0 0 18px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    left: calc(25% - 30px);
    top: calc(50% + 20px);
    transform: translateY(-50%);
}

/* API Node */
.node-api {
    width: 75px;
    height: 75px;
    background: #2563eb;
    box-shadow: 
        0 0 22px rgba(37, 99, 235, 0.6),
        inset 0 0 22px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    left: 50%;
    top: calc(25% + 75px);
    transform: translate(-50%, -50%);
}

/* AI Node */
.node-ai {
    width: 70px;
    height: 70px;
    background: #059669;
    box-shadow: 
        0 0 20px rgba(16, 185, 129, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    left: calc(50% - 25px);
    top: calc(75% + 30px);
    transform: translate(-50%, -50%);
}

/* Blockchain Node */
.node-blockchain {
    width: 75px;
    height: 75px;
    background: #dc2626;
    box-shadow: 
        0 0 22px rgba(220, 38, 38, 0.6),
        inset 0 0 22px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    left: 50%;
    top: 5%;
    transform: translate(-50%, -50%);
}

/* Output Nodes */
.node-web {
    width: 60px;
    height: 60px;
    background: #b91c1c;
    box-shadow: 
        0 0 16px rgba(220, 38, 38, 0.6),
        inset 0 0 16px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    right: 8%;
    top: 15%;
    transform: translateY(-50%);
}

.node-app {
    width: 60px;
    height: 60px;
    background: #7c3aed;
    box-shadow: 
        0 0 16px rgba(124, 58, 237, 0.6),
        inset 0 0 16px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
}

.node-cloud {
    width: 60px;
    height: 60px;
    background: #059669;
    box-shadow: 
        0 0 16px rgba(5, 150, 105, 0.6),
        inset 0 0 16px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    right: 8%;
    top: calc(85% + 35px);
    transform: translateY(-50%);
}

/* Flowing Process Connections */
.process-flows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.flow-svg {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}


/* Flow Paths - Curvy interconnected lines */
.flow-path {
    filter: drop-shadow(0 0 3px currentColor);
    animation: flowPulse 4s ease-in-out infinite;
}

.primary-flow {
    animation-delay: 0s;
}

.secondary-flow {
    animation-delay: 1s;
}

.tertiary-flow {
    animation-delay: 2s;
}

.quaternary-flow {
    animation-delay: 3s;
}

.blockchain-web-flow, .blockchain-app-flow, .blockchain-cloud-flow {
    animation-delay: 1.5s;
}

.blockchain-api-flow, .blockchain-ai-flow, .api-blockchain-flow, .ai-blockchain-flow {
    animation-delay: 2.5s;
}

/* Data Particles */
.data-particle {
    filter: drop-shadow(0 0 4px currentColor);
}

/* Atom Pulse Animation */
.atom-pulse {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(16, 185, 129, 0.6);
    border-radius: 50%;
    opacity: 0;
    animation: atomPulse 2s ease-out infinite;
}

/* D3.js data flow visualization styles removed */

/* Scroll-triggered animations */
.service-card,
.advantage-card,
.mission-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.service-card.animate-in,
.advantage-card.animate-in,
.mission-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Process node styling */
.process-node {
    cursor: pointer;
}


/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: var(--bg-secondary);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.service-timeline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.timeline-fast {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.timeline-vs {
    color: var(--text-light);
    font-weight: 500;
}

.timeline-slow {
    background: var(--text-light);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.service-benefits {
    list-style: none;
}

.service-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.specialized-services {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 2rem;
}

.specialized-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.specialized-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.specialized-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.specialized-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.specialized-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.specialized-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.specialized-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topic-tag {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.mission-statement {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.vision-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vision-statement {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.philosophy h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.philosophy p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.mission-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.25rem;
    color: white;
}

.mission-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Process Section */
.process-section {
    background: var(--bg-primary);
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin: 0 2rem;
    flex: 1;
    max-width: 400px;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.speed-demonstration {
    max-width: 1200px;
    margin: 4rem auto 2rem;
    padding: 0 2rem;
    text-align: center;
}

.speed-demonstration h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.speed-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.speed-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.speed-time {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.speed-action {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Advantages Section */
.advantages-section {
    background: var(--bg-secondary);
}

.advantages-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.advantage-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: white;
}

.advantage-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.growth-promise {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.growth-promise h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.growth-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.growth-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.growth-feature i {
    font-size: 2rem;
    color: var(--primary-color);
}

.growth-feature span {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Trust Section */
.trust-section {
    background: var(--bg-primary);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.experience-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.experience-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.experience-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-factors {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-factor {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.trust-factor:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.trust-factor i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.trust-factor h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.trust-factor p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.cta-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--bg-secondary);
    border-radius: 16px;
}

.cta-section h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-location p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

/* Enhanced Animations from lizer-d-cool-head */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





@keyframes visualFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(2deg);
    }
}


@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

@keyframes atomPulse {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes flowPulse {
    0%, 100% {
        opacity: 0.4;
        stroke-dashoffset: 0;
    }
    50% {
        opacity: 0.8;
        stroke-dashoffset: 20;
    }
}



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

@keyframes greenGlow {
    0% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.6), 0 0 40px rgba(34, 197, 94, 0.4), 0 0 60px rgba(34, 197, 94, 0.2);
        text-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
    }
    100% {
        box-shadow: 0 0 30px rgba(34, 197, 94, 0.8), 0 0 60px rgba(34, 197, 94, 0.6), 0 0 90px rgba(34, 197, 94, 0.4);
        text-shadow: 0 0 15px rgba(34, 197, 94, 1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        padding: 0.75rem 1rem;
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-logo .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-section {
        align-items: flex-start;
        padding-top: 4rem;
        min-height: 100vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .step-content {
        margin: 1rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .specialized-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        gap: 0.75rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.25rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
