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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f1419 25%, #1a1a2e 50%, #16213e 75%, #0f1419 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    position: relative;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(64, 224, 255, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
}

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

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

.logo-icon {
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(15deg) scale(1.1);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #40e0ff;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: #888;
    line-height: 1;
}

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

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #40e0ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #40e0ff, #00d4aa);
    transition: width 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    padding: 8px 20px;
    border-radius: 25px;
    color: #0a0a0a !important;
    font-weight: 600;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(64, 224, 255, 0.3);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #40e0ff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(64, 224, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Interactive Web Network */
.network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    display: block;
    visibility: visible;
    opacity: 0.9;
    filter: blur(0.3px);
    background: radial-gradient(circle at 50% 50%, rgba(64, 224, 255, 0.02) 0%, transparent 70%);
}

/* Optimized Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.1s ease, background 0.2s ease;
    box-shadow: 0 0 15px rgba(64, 224, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    will-change: transform;
    transform-origin: center;
}

.custom-cursor::after {
    content: '⚡';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #0a0a0a;
    font-weight: bold;
}

/* Simplified hover effects */
.custom-cursor.hover {
    background: linear-gradient(45deg, #00d4aa, #9333ea);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.8);
}

.custom-cursor.hover::after {
    content: '🎯';
    font-size: 14px;
}

/* Custom cursor only on desktop */
@media (hover: hover) and (pointer: fine) {
    *, *::before, *::after {
        cursor: none !important;
    }
}

/* Disable custom cursor on touch devices */
@media (hover: none), (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
    *, *::before, *::after {
        cursor: auto !important;
    }
    a, button, .btn, .filter-btn, .nav-link, .contact-btn {
        cursor: pointer !important;
    }
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #40e0ff, #00d4aa, #9333ea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}

.wave {
    display: inline-block;
    animation: wave 2s infinite;
}

@keyframes wave {
    0%, 20%, 60%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    30% { transform: rotate(-8deg); }
    40% { transform: rotate(14deg); }
    50% { transform: rotate(-4deg); }
    70% { transform: rotate(10deg); }
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.8;
}

.hero-description strong {
    color: #40e0ff;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: #00d4aa;
    font-weight: 600;
}

.highlight {
    color: #40e0ff;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    color: #0a0a0a;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(64, 224, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #40e0ff;
    border: 2px solid #40e0ff;
}

.btn-secondary:hover {
    background: #40e0ff;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease 0.8s both;
    position: relative;
    z-index: 10;
}

.hero-profile-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(64, 224, 255, 0.3);
    box-shadow: 0 15px 40px rgba(64, 224, 255, 0.2);
    transition: all 0.3s ease;
    display: block;
    max-width: 100%;
}

.hero-profile-image:hover {
    transform: scale(1.05);
    border-color: rgba(64, 224, 255, 0.6);
    box-shadow: 0 20px 50px rgba(64, 224, 255, 0.3);
}

.image-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(64, 224, 255, 0.1), rgba(0, 212, 170, 0.1));
    border: 3px solid rgba(64, 224, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #40e0ff;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 0.9rem;
    text-align: center;
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #40e0ff, #00d4aa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Work Section */
.work {
    background: transparent;
}

.work-grid {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.work-item {
    background: linear-gradient(135deg, rgba(64, 224, 255, 0.05), rgba(0, 212, 170, 0.05));
    border: 1px solid rgba(64, 224, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 10;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Force all content to be visible */
.work-item,
.portfolio-section,
.work-grid,
.work-content {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Content visibility ensured */
.work-item {
    background: linear-gradient(135deg, rgba(64, 224, 255, 0.05), rgba(0, 212, 170, 0.05)) !important;
    border: 1px solid rgba(64, 224, 255, 0.2) !important;
}

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

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

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(64, 224, 255, 0.2);
}

.work-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #40e0ff;
    margin-bottom: 1.5rem;
}

.work-problem, .work-solution, .work-result {
    margin-bottom: 1.5rem;
}

.work-problem h4, .work-solution h4, .work-result h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.work-problem h4 { color: #ff6b6b; }
.work-solution h4 { color: #ffd93d; }
.work-result h4 { color: #6bcf7f; }

.work-visual {
    margin: 2rem 0;
}

.work-diagram {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    border: 2px solid rgba(64, 224, 255, 0.2);
    box-shadow: 0 4px 15px rgba(64, 224, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.work-diagram:hover {
    transform: scale(1.02);
    border-color: rgba(64, 224, 255, 0.4);
    box-shadow: 0 8px 25px rgba(64, 224, 255, 0.2);
}

.diagram-caption {
    text-align: center;
    margin-top: 1rem;
}

.diagram-caption p {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.diagram-caption small {
    color: #b8b8b8;
    font-size: 0.85rem;
}

.diagram-placeholder {
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(64, 224, 255, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: #888;
}

.diagram-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #40e0ff;
}

.work-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tech-tag {
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    color: #0a0a0a;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.skill-category {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(64, 224, 255, 0.1));
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.2);
}

.skill-category h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #40e0ff;
    font-weight: 600;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(64, 224, 255, 0.1);
    transition: all 0.3s ease;
}

.skill-category li:hover {
    color: #40e0ff;
    padding-left: 1rem;
}

.skill-category li:last-child {
    border-bottom: none;
}

/* Process Section */
.process {
    background: transparent;
}

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

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(64, 224, 255, 0.05), rgba(0, 212, 170, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(64, 224, 255, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(64, 224, 255, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: #40e0ff;
}

.step-icon {
    font-size: 2rem;
    color: #40e0ff;
    margin-top: 1rem;
}

.faq-section {
    margin-top: 4rem;
}

.faq-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #40e0ff;
}

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

.faq-item {
    background: rgba(64, 224, 255, 0.05);
    border: 1px solid rgba(64, 224, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(64, 224, 255, 0.1);
}

.faq-item h4 {
    color: #40e0ff;
    margin-bottom: 0.5rem;
}

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

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(64, 224, 255, 0.3);
    box-shadow: 0 10px 30px rgba(64, 224, 255, 0.2);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    border-color: rgba(64, 224, 255, 0.6);
    box-shadow: 0 15px 40px rgba(64, 224, 255, 0.3);
}

.about-intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.about-description, .about-results {
    margin-bottom: 1.5rem;
    color: #b0b0b0;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(64, 224, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #40e0ff;
}

.credential i {
    font-size: 1.5rem;
    color: #40e0ff;
}

/* Contact Section */
.contact {
    background: transparent;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #40e0ff;
}

.contact-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(64, 224, 255, 0.1), rgba(0, 212, 170, 0.1));
    border: 1px solid rgba(64, 224, 255, 0.3);
    border-radius: 10px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(64, 224, 255, 0.3);
    color: #40e0ff;
}

.contact-method i {
    font-size: 1.2rem;
}

.contact-cta {
    margin-top: 2rem;
}

.contact-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(64, 224, 255, 0.2);
    padding: 2rem 0;
    text-align: center;
    color: #888;
}

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

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

/* Add floating particles animation */
.hero::after,
.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(64, 224, 255, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 212, 170, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(147, 51, 234, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(64, 224, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(0, 212, 170, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatingParticles 25s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

@keyframes floatingParticles {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-30px) translateX(15px) rotate(90deg); }
    50% { transform: translateY(-60px) translateX(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) translateX(-20px) rotate(270deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

/* Add subtle text glow animations */
.hero-title,
.page-title {
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 20px rgba(64, 224, 255, 0.5);
    }
    100% {
        text-shadow: 0 0 30px rgba(64, 224, 255, 0.8),
                     0 0 40px rgba(0, 212, 170, 0.6);
    }
}

/* Enhanced button hover animations */
.btn-primary {
    position: relative;
    overflow: hidden;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .work-item {
        padding: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(64, 224, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.page-description {
    font-size: 1.15rem;
    color: #b8b8b8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Overview Styles */
.services-overview {
    padding: 80px 0;
    background: #0f0f0f;
}

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

.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(64, 224, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(64, 224, 255, 0.05), rgba(0, 212, 170, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(64, 224, 255, 0.4);
    box-shadow: 0 25px 50px rgba(64, 224, 255, 0.15), 
                0 10px 20px rgba(0, 212, 170, 0.1),
                inset 0 0 30px rgba(64, 224, 255, 0.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0a0a0a;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
}

.service-link {
    color: #40e0ff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-link:hover {
    color: #00d4aa;
    transform: translateX(5px);
}

/* Quick Stats Styles */
.quick-stats {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(64, 224, 255, 0.03), rgba(0, 212, 170, 0.02));
    border-radius: 20px;
    border: 2px solid rgba(64, 224, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(64, 224, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(64, 224, 255, 0.4);
    box-shadow: 0 20px 40px rgba(64, 224, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0.5rem 0;
}

.stat-description {
    font-size: 0.9rem;
    color: #b8b8b8;
}

/* CTA Section Styles */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(64, 224, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

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

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

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

/* Footer Updates */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(64, 224, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-subtitle {
    font-size: 0.85rem;
    color: #b8b8b8;
    margin-top: 2px;
}

.footer-left p {
    color: #888;
    line-height: 1.6;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

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

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #40e0ff;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(64, 224, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #40e0ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(64, 224, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Portfolio Page Styles */
.portfolio-section {
    padding: 40px 0 80px;
    background: #0f0f0f;
    position: relative;
    z-index: 10;
}

.portfolio-section .work-grid {
    margin-bottom: 2rem;
}

.portfolio-section .work-grid:last-child {
    margin-bottom: 0;
}

.work-item.featured {
    border: 2px solid rgba(64, 224, 255, 0.3);
    position: relative;
}

.work-item.featured::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.1;
}

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.work-status {
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.work-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(64, 224, 255, 0.1);
}

.metric {
    text-align: center;
    padding: 1rem;
    background: rgba(64, 224, 255, 0.05);
    border-radius: 10px;
}

.metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #40e0ff;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.85rem;
    color: #b8b8b8;
}

.work-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.work-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
}

.work-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 224, 255, 0.3);
}

.results-summary {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.result-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 2px solid rgba(64, 224, 255, 0.1);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-10px);
    border-color: rgba(64, 224, 255, 0.3);
    box-shadow: 0 20px 40px rgba(64, 224, 255, 0.1);
}

.result-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.result-description {
    font-size: 0.9rem;
    color: #b8b8b8;
}

/* Portfolio Category Headers */
.category-header {
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(64, 224, 255, 0.15);
}

.category-header:first-of-type {
    margin-top: 0;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.category-title i {
    color: #40e0ff;
    margin-right: 0.75rem;
}

.category-description {
    font-size: 1rem;
    color: #b8b8b8;
    max-width: 800px;
}

/* Portfolio Filter Buttons */
.portfolio-filters {
    padding: 2rem 0 0;
    background: #0f0f0f;
    position: relative;
    z-index: 10;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 224, 255, 0.2);
    color: #b8b8b8;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(64, 224, 255, 0.1);
    color: #40e0ff;
    border-color: rgba(64, 224, 255, 0.4);
}

.filter-btn.active {
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    color: #0a0a0a;
    font-weight: 600;
    border-color: transparent;
}

/* Portfolio filter hide/show */
.work-item.filter-hidden,
.category-header.filter-hidden,
.work-grid.filter-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .filter-buttons {
        gap: 0.5rem;
    }
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    .category-title {
        font-size: 1.4rem;
    }
}

/* About Page Styles */
.why-choose {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.reason-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(64, 224, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 255, 0.3);
    box-shadow: 0 15px 30px rgba(64, 224, 255, 0.1);
}

.reason-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0a0a;
}

.reason-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.reason-item p {
    color: #b8b8b8;
    line-height: 1.6;
}

.process-intro {
    text-align: center;
    color: #b8b8b8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Styles */
.contact {
    padding: 80px 0;
    background: #0f0f0f;
}

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

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

.contact-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-text p {
    color: #b8b8b8;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(64, 224, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: rgba(64, 224, 255, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(64, 224, 255, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0a0a0a;
    flex-shrink: 0;
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-title {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
}

.method-detail {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #40e0ff;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(64, 224, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 224, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #40e0ff;
    box-shadow: 0 0 0 3px rgba(64, 224, 255, 0.1);
}

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

.contact-form .btn {
    margin-top: 1rem;
    justify-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.pricing-left h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-tier {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(64, 224, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pricing-tier.featured {
    border-color: rgba(64, 224, 255, 0.3);
    position: relative;
}

.pricing-tier.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 2rem;
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-tier:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 255, 0.3);
    box-shadow: 0 15px 30px rgba(64, 224, 255, 0.1);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tier-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.tier-features li {
    padding: 0.5rem 0;
    color: #b8b8b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tier-features li::before {
    content: '✓';
    color: #40e0ff;
    font-weight: bold;
    font-size: 1.1rem;
}

.tier-example {
    background: rgba(64, 224, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #40e0ff;
    color: #b8b8b8;
    font-size: 0.9rem;
}

.tier-example strong {
    color: #ffffff;
}

.pricing-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-benefits h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #b8b8b8;
}

.benefit-item i {
    color: #40e0ff;
    font-size: 1.1rem;
}

.contact-cta {
    background: rgba(64, 224, 255, 0.05);
    border: 1px solid rgba(64, 224, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.contact-cta h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-cta p {
    color: #b8b8b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.why-work-section {
    padding: 80px 0;
    background: #0f0f0f;
}

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

.why-work-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(64, 224, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-work-item:hover {
    transform: translateY(-5px);
    border-color: rgba(64, 224, 255, 0.3);
    box-shadow: 0 15px 30px rgba(64, 224, 255, 0.1);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #40e0ff, #00d4aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0a0a;
}

.why-work-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.why-work-item p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* Logo Link Styles */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-link:hover .logo-text {
    background: linear-gradient(45deg, #00d4aa, #40e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Outline Variant */
.btn.btn-outline {
    background: transparent;
    border: 2px solid #40e0ff;
    color: #40e0ff;
}

.btn.btn-outline:hover {
    background: #40e0ff;
    color: #0a0a0a;
    border-color: #40e0ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(64, 224, 255, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .work-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .work-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tier-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }

    .stats-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .work-metrics {
        grid-template-columns: 1fr;
    }

    .service-card,
    .reason-item,
    .why-work-item {
        padding: 2rem 1.5rem;
    }

    .page-header {
        padding: 100px 0 60px;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
    }
    
    .hero-profile-image {
        width: 250px;
        height: 250px;
    }
    
    .work-diagram {
        max-width: 100%;
    }
    
    .hero-profile-image {
        width: 200px;
        height: 200px;
    }
}

/* ============================================
   INTERACTIVE AUTOMATION DEMO SECTION
   ============================================ */

.interactive-demo {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5), rgba(22, 33, 62, 0.5));
    position: relative;
    overflow: hidden;
}

.interactive-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(64, 224, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.demo-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.demo-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-top: 1rem;
}

.privacy-notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 12px;
    padding: 12px 24px;
    margin-top: 20px;
    color: #00d4aa;
    font-size: 0.95rem;
}

.privacy-notice i {
    font-size: 1.2rem;
    color: #00d4aa;
}

.privacy-notice strong {
    color: #40e0ff;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Left Side - Form */
.demo-form-side {
    position: relative;
}

.demo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(64, 224, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(64, 224, 255, 0.2);
}

.demo-card h3 {
    color: #40e0ff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.demo-instructions {
    color: #b8b8b8;
    margin-bottom: 30px;
    font-size: 1rem;
}

.automation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #00d4aa;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #40e0ff;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 224, 255, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #40e0ff;
    box-shadow: 0 0 0 3px rgba(64, 224, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.btn-run-demo {
    background: linear-gradient(135deg, #40e0ff, #00d4aa);
    color: #0a0a0a;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-run-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(64, 224, 255, 0.4);
}

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

.btn-run-demo.running {
    background: linear-gradient(135deg, #888, #666);
    cursor: not-allowed;
}

/* Results Preview */
.results-preview {
    margin-top: 30px;
    animation: fadeInUp 0.5s ease;
}

.results-preview h4 {
    color: #00d4aa;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.result-card {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.result-header {
    background: rgba(0, 212, 170, 0.2);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00d4aa;
    font-weight: 600;
}

.result-content {
    padding: 20px;
    color: #e0e0e0;
    line-height: 1.8;
}

.result-content strong {
    color: #40e0ff;
}

.btn-reset {
    background: transparent;
    border: 2px solid #40e0ff;
    color: #40e0ff;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-reset:hover {
    background: #40e0ff;
    color: #0a0a0a;
}

/* Right Side - Workflow Animation */
.demo-workflow-side {
    position: relative;
}

.workflow-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(64, 224, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.workflow-container h3 {
    color: #40e0ff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.workflow-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0.4;
    transition: all 0.5s ease;
    padding: 15px 0;
}

.workflow-step.active {
    opacity: 1;
}

.workflow-step.completed {
    opacity: 0.7;
}

.workflow-step.completed .step-icon {
    background: linear-gradient(135deg, #00d4aa, #40e0ff);
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.workflow-step.active .step-icon {
    animation: pulse 1.5s infinite;
    background: linear-gradient(135deg, #40e0ff, #00d4aa);
    color: #0a0a0a;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(64, 224, 255, 0.1);
    border: 2px solid rgba(64, 224, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #40e0ff;
    flex-shrink: 0;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-title {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-status {
    color: #888;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.workflow-step.active .step-status {
    color: #40e0ff;
}

.workflow-step.completed .step-status {
    color: #00d4aa;
}

.step-connector {
    position: absolute;
    left: 24px;
    top: 65px;
    width: 2px;
    height: 40px;
    background: rgba(64, 224, 255, 0.2);
    transition: all 0.5s ease;
}

.workflow-step.completed .step-connector {
    background: linear-gradient(180deg, #00d4aa, #40e0ff);
    box-shadow: 0 0 10px rgba(64, 224, 255, 0.5);
}

.workflow-step.active .step-connector {
    background: linear-gradient(180deg, #40e0ff, transparent);
    animation: flowDown 1s ease-in-out infinite;
}

.workflow-info {
    margin-top: 30px;
    padding: 15px;
    background: rgba(64, 224, 255, 0.05);
    border: 1px solid rgba(64, 224, 255, 0.2);
    border-radius: 10px;
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.workflow-info i {
    color: #40e0ff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(64, 224, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(64, 224, 255, 0);
    }
}

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

/* Mobile Responsive */
@media (max-width: 968px) {
    .demo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .interactive-demo {
        padding: 60px 0;
    }
    
    .demo-card,
    .workflow-container {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .demo-card,
    .workflow-container {
        padding: 20px;
    }
    
    .demo-header h2 {
        font-size: 2rem;
    }
    
    .demo-subtitle {
        font-size: 1rem;
    }
} 