/* ====================================
   Landing Page - Modern Professional Design
   ==================================== */

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

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

/* Offset scroll position for fixed navbar */
section[id] {
    scroll-margin-top: 90px;
}

/* ====================================
   RTL Text Support (Layout stays LTR)
   ==================================== */

/* Keep all layouts in LTR direction regardless of language */
body.rtl-text .hero-content,
body.rtl-text .features-grid,
body.rtl-text .process-steps,
body.rtl-text .hero-actions,
body.rtl-text .hero-features,
body.rtl-text .footer-content {
    direction: ltr !important;
}

/* Apply RTL only to text content containers */
body.rtl-text .hero-text-content,
body.rtl-text .section-header,
body.rtl-text .footer-section,
body.rtl-text .cta-content {
    direction: rtl;
    text-align: right;
}

/* Feature cards: keep icons centered, only text RTL */
body.rtl-text .feature-card {
    direction: ltr;
}

body.rtl-text .feature-title,
body.rtl-text .feature-description {
    direction: rtl;
    text-align: center;
}

/* Process steps: keep everything centered and stable */
body.rtl-text .process-step {
    direction: ltr;
}

body.rtl-text .step-title,
body.rtl-text .step-description {
    direction: rtl;
    text-align: center;
}

/* Keep hero text aligned appropriately when RTL */
body.rtl-text .hero-text-content {
    text-align: right;
}

body.rtl-text .hero-title,
body.rtl-text .hero-description {
    direction: rtl;
}

/* Keep buttons and icons in their original position */
body.rtl-text .hero-actions {
    direction: ltr;
    align-items: flex-start;
}

/* Ensure button text doesn't reverse */
body.rtl-text .btn span {
    direction: ltr;
}

body.rtl-text .btn svg {
    order: 2;
}

body.rtl-text .hero-features::before {
    right: 0;
    left: auto;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(168, 85, 247, 0.3) 50%,
        rgba(56, 189, 248, 0.5) 100%);
}

/* Keep feature icons and visual elements in place */
body.rtl-text .feature-icon,
body.rtl-text .hero-image,
body.rtl-text .step-icon,
body.rtl-text svg,
body.rtl-text img {
    direction: ltr;
}

/* Keep button content LTR */
body.rtl-text .btn {
    direction: ltr;
}

/* Center section headers when RTL */
body.rtl-text .section-header {
    text-align: center;
}

/* Keep CTA buttons centered */
body.rtl-text .cta-content {
    text-align: center;
}

body.rtl-text .cta-title,
body.rtl-text .cta-description {
    direction: rtl;
}

/* Keep grid layouts stable */
body.rtl-text .hero-content {
    grid-template-columns: 1fr 1fr;
}

body.rtl-text .hero-image {
    order: 2;
}

body.rtl-text .hero-text-content {
    order: 1;
}

/* Language selector stays LTR */
body.rtl-text .language-selector-wrapper,
body.rtl-text .language-dropdown-menu {
    direction: ltr;
}

/* Keep hero features (Written, Voice, Video) in place */
body.rtl-text .hero-features {
    direction: ltr;
    justify-content: center;
}

body.rtl-text .hero-feature-item {
    direction: ltr;
}

/* Keep footer layout LTR */
body.rtl-text .footer-links {
    direction: rtl;
}

/* Keep badges and visual elements LTR */
body.rtl-text .hero-badge {
    direction: ltr;
}

/* Ensure robot image and accents stay in place */
body.rtl-text .image-accent,
body.rtl-text .robot-image {
    direction: ltr;
}

/* Keep all background effects in place */
body.rtl-text .ai-particles,
body.rtl-text .floating-ai-icons,
body.rtl-text .data-streams,
body.rtl-text .neural-network,
body.rtl-text .gradient-orb {
    direction: ltr;
}

/* Keep scroll indicator centered */
body.rtl-text .scroll-indicator {
    direction: ltr;
}

/* Keep process connectors in place */
body.rtl-text .process-connector {
    direction: ltr;
}

/* Keep step numbers in place */
body.rtl-text .step-number {
    direction: ltr;
}

/* Responsive: maintain mobile layout */
@media (max-width: 768px) {
    body.rtl-text .hero-content {
        grid-template-columns: 1fr;
    }
    
    body.rtl-text .hero-text-content,
    body.rtl-text .hero-image {
        order: initial;
    }
    
    body.rtl-text .hero-actions {
        justify-content: center;
    }
}

/* ====================================
   EVAALO Simple Intro
   ==================================== */

#evaalo-intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a1628 0%, #1a1f3a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.6s ease;
}

#evaalo-intro-overlay.fade-out {
    opacity: 0;
}

.evaalo-intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.evaalo-e {
    width: 120px;
    height: 120px;
    opacity: 0;
}

.evaalo-e svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(123,104,238,0.5));
}

#eClear {
    opacity: 1;
    transform-origin: center;
}

#eCircular {
    opacity: 0;
    transform-origin: center;
}

.evaalo-text {
    display: flex;
    gap: 4px;
    font-family: 'Cairo', sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-left: 10px;
    opacity: 0;
}

.evaalo-text span {
    display: inline-block;
    background: linear-gradient(135deg, #4dd0e1 0%, #7b68ee 50%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(123,104,238,0.4));
}

/* Responsive */
@media (max-width: 768px) {
    .evaalo-e {
        width: 80px;
        height: 80px;
    }
    
    .evaalo-text {
        font-size: 48px;
        gap: 2px;
    }
    
    /* Show language selector on mobile, hide nav dropdown */
    .left-icon-wrapper {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 85px !important;
        left: 20px !important;
        z-index: 998 !important;
        background: transparent !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
    }
    
    .left-icon-wrapper.hidden {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .left-icon-button {
        background: transparent !important;
    }
    
    .left-feature-icon {
        background: linear-gradient(135deg, 
            rgba(15, 23, 42, 1) 0%, 
            rgba(20, 20, 35, 1) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .left-icon-button:hover .left-feature-icon {
        background: linear-gradient(135deg, 
            rgba(20, 20, 35, 0.98) 0%, 
            rgba(15, 15, 28, 0.98) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .language-selector-wrapper {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 85px !important;
        right: 20px !important;
        z-index: 998 !important;
        background: transparent !important;
    }
    
    .language-icon-button {
        background: transparent !important;
    }
    
    .language-feature-icon {
        background: linear-gradient(135deg, 
            rgba(15, 23, 42, 1) 0%, 
            rgba(20, 20, 35, 1) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .language-icon-button:hover .language-feature-icon,
    .language-icon-button[aria-expanded="true"] .language-feature-icon {
        background: linear-gradient(135deg, 
            rgba(20, 20, 35, 0.98) 0%, 
            rgba(15, 15, 28, 0.98) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .nav-link-dropdown {
        display: none !important;
    }
    
    /* Smaller icon sizes on mobile */
    .hero-feature-item {
        width: 90px;
        min-width: 90px;
        min-height: 100px;
    }
    
    .hero-feature-item::before {
        width: 80px;
        height: 80px;
    }
    
    .hero-feature-item .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .hero-feature-item .feature-icon svg {
        width: 54px;
        height: 54px;
    }
    
    /* Left icon - same size as hero-feature icons on mobile */
    .left-icon-button::before {
        width: 80px;
        height: 80px;
    }
    
    .left-feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, 
            rgba(15, 23, 42, 1) 0%, 
            rgba(20, 20, 35, 1) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1.5px solid rgba(34, 211, 238, 0.4) !important;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            0 2px 8px rgba(34, 211, 238, 0.2) !important;
    }
    
    .left-icon-wrapper {
        background: transparent !important;
    }
    
    .left-icon-button {
        background: transparent !important;
    }
    
    .left-feature-icon svg {
        width: 54px;
        height: 54px;
    }
    
    .left-icon-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    /* Language icon - same size as hero-feature icons on mobile */
    .language-icon-button::before {
        width: 80px;
        height: 80px;
    }
    
    .language-feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, 
            rgba(15, 23, 42, 1) 0%, 
            rgba(20, 20, 35, 1) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1.5px solid rgba(34, 211, 238, 0.4) !important;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            0 2px 8px rgba(34, 211, 238, 0.2) !important;
    }
    
    .language-selector-wrapper {
        background: transparent !important;
    }
    
    .language-icon-button {
        background: transparent !important;
    }
    
    .language-feature-icon svg {
        width: 54px;
        height: 54px;
    }
    
    .language-icon-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .language-icon-button:hover .language-feature-icon,
    .language-icon-button[aria-expanded="true"] .language-feature-icon {
        background: linear-gradient(135deg, 
            rgba(20, 20, 35, 0.98) 0%, 
            rgba(15, 15, 28, 0.98) 100%) !important;
        backdrop-filter: none !important;
    }
}

@media (max-width: 480px) {
    .evaalo-intro-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .evaalo-e {
        width: 70px;
        height: 70px;
    }
    
    .evaalo-text {
        font-size: 36px;
        margin-left: 0;
    }
}

:root {
    /* Primary Colors */
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    
    /* Secondary Colors */
    --secondary-color: #6b7280;
    --accent-color: #a78bfa;
    
    /* Neutral Colors */
    --white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

/* Smooth scroll with padding for better viewing */
section {
    scroll-margin-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Apply Cairo font only for Arabic */
body[dir="rtl"][lang="ar"],
html[lang="ar"] body,
[lang="ar"] {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Apply Noto Sans Arabic font for Kurdish */
body[dir="rtl"][lang="ku"],
html[lang="ku"] body,
[lang="ku"] {
    font-family: 'Noto Sans Arabic', 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

/* ====================================
   Navigation Menu
   ==================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(8, 12, 24, 0.98) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1 0%, #C084FC 50%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Professional Logo Image Styling */
.nav-logo-img {
    display: flex;
    align-items: center;
    gap: 8px; /* Default gap for mobile */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.nav-logo-img:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, 
        #6366F1 0%, 
        #818cf8 20%, 
        #22d3ee 40%, 
        #06b6d4 60%,
        #0891b2 80%,
        #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.logo-image {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    image-rendering: -webkit-optimize-contrast;
}

.nav-logo-img:hover .logo-image {
    transform: scale(1.02);
}

/* Smooth animation on page load */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-logo-img {
    animation: logoFadeIn 0.8s ease-out;
}

/* Desktop Navigation Links */
/* Desktop Navigation - Base styles (already defined above, keeping for reference) */

/* Mobile Hamburger Menu */
.nav-menu-wrapper {
    position: relative;
    display: none; /* Hidden on desktop, shown on mobile */
}

.nav-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.08) 0%, 
        rgba(168, 85, 247, 0.08) 50%,
        rgba(56, 189, 248, 0.06) 100%);
    border: 1.5px solid rgba(99, 102, 241, 0.25);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-links-mobile {
    display: none; /* Hidden on desktop */
}

.nav-menu-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.15) 0%, 
        rgba(168, 85, 247, 0.12) 50%,
        rgba(56, 189, 248, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu-toggle:hover::before {
    opacity: 1;
}

.nav-menu-toggle:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3),
                0 2px 8px rgba(168, 85, 247, 0.2);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2.5px;
    background: linear-gradient(90deg, #6366F1, #C084FC, #38BDF8);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-menu-wrapper.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-menu-wrapper.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-menu-wrapper.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile: Show hamburger menu and adjust logo */
@media (max-width: 768px) {
    /* Show hamburger menu on mobile */
    .nav-menu-wrapper {
        display: block !important;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-links-desktop {
        display: none !important;
    }
    
    /* Mobile logo styling - show logo and text */
    .nav-logo-img {
        gap: 8px !important;
    }
    
    .logo-text {
        display: block !important;
        font-size: 20px !important;
    }
    
    .logo-image {
        height: 36px !important;
    }
    
    /* Mobile nav container */
    .nav-container {
        padding: 0 20px !important;
        height: 64px !important;
    }
}

/* Desktop: Show nav links horizontally in header */
@media (min-width: 769px) {
    /* Hide language selector in top-right corner on desktop (use nav menu instead) */
    .language-selector-wrapper {
        display: none !important;
    }
    
    /* Desktop logo styling - close gap and show text */
    .nav-logo-img {
        gap: 2px !important;
    }
    
    .logo-text {
        display: block !important;
    }
    
    .nav-links-desktop {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
        flex-wrap: nowrap !important;
    }
    
    .nav-menu-wrapper {
        display: none !important; /* Hide hamburger on desktop */
    }
    
    .nav-links-mobile {
        display: none !important; /* Hide mobile menu on desktop */
    }
    
    .nav-links-desktop .nav-link {
        padding: 8px 12px !important;
        border-left: none !important;
        border-radius: 8px !important;
        white-space: nowrap !important;
        font-size: 13px !important;
        transition: all 0.2s ease !important;
        color: rgba(255, 255, 255, 0.9) !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1.5 !important;
        height: auto !important;
        overflow: visible !important;
        text-overflow: clip !important;
        flex-shrink: 0 !important;
        min-width: fit-content !important;
        position: relative !important;
        z-index: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .nav-links-desktop .nav-link:hover {
        background: rgba(99, 102, 241, 0.15) !important;
        transform: translateY(-1px) !important;
        border-left: none !important;
        padding-left: 16px !important;
    }
    
    .nav-links-desktop .nav-link.active {
        background: rgba(99, 102, 241, 0.2) !important;
        border-left: none !important;
    }
    
    .nav-links-desktop .nav-link-dropdown {
        padding: 8px 16px !important;
        border-left: none !important;
        position: relative;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1.5 !important;
        height: auto !important;
        color: rgba(255, 255, 255, 0.9) !important;
        z-index: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .nav-links-desktop .nav-link-dropdown:hover {
        background: rgba(99, 102, 241, 0.15) !important;
        border-left: none !important;
        padding-left: 16px !important;
    }
    
    .nav-links-desktop .nav-language-dropdown {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        right: 0 !important;
        left: auto !important;
        background: #ffffff !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1.5px solid rgba(34, 211, 238, 0.3) !important;
        border-radius: 10px !important;
        box-shadow: 
            0 12px 30px rgba(0, 0, 0, 0.12),
            0 4px 12px rgba(34, 211, 238, 0.15) !important;
        width: 140px !important;
        min-width: 140px !important;
        max-width: 140px !important;
        height: auto !important;
        min-height: 120px !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-15px) scale(0.95) !important;
        transform-origin: top right !important;
        transition: 
            opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
            transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
            visibility 0s linear 0.3s !important;
        z-index: 1001 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }
    
    /* Keep dropdown visible when hovering over it */
    .nav-links-desktop .nav-language-dropdown:hover {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        pointer-events: auto !important;
    }
    
    .nav-links-desktop .nav-language-dropdown::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: 
            radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.03) 0%, transparent 50%) !important;
        pointer-events: none !important;
        border-radius: 10px !important;
        z-index: 0 !important;
    }
    
    .nav-links-desktop .nav-language-dropdown::after {
        content: '' !important;
        position: absolute !important;
        top: -6px !important;
        right: 25px !important;
        width: 10px !important;
        height: 10px !important;
        background: #ffffff !important;
        border-left: 1.5px solid rgba(34, 211, 238, 0.3) !important;
        border-top: 1.5px solid rgba(34, 211, 238, 0.3) !important;
        transform: rotate(45deg) !important;
        box-shadow: -2px -2px 4px rgba(34, 211, 238, 0.12) !important;
        z-index: 1 !important;
    }
    
    .nav-link-dropdown:hover .nav-language-dropdown,
    .nav-link-dropdown .nav-language-dropdown:hover {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        transition: 
            opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
            transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
        pointer-events: auto !important;
    }
    
    .nav-links-desktop .nav-language-option {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        height: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
        padding: 10px 14px !important;
        box-sizing: border-box !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5) !important;
        text-align: left !important;
        font-size: 0.85rem !important;
        font-weight: 500 !important;
        color: #1a1a1a !important;
        cursor: pointer !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        font-family: inherit !important;
        overflow: hidden !important;
        white-space: nowrap !important;
        z-index: 1 !important;
    }
    
    .nav-links-desktop .nav-language-option:last-child {
        border-bottom: none !important;
    }
    
    .nav-links-desktop .nav-language-option::before {
        content: '' !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        height: 100% !important;
        width: 3px !important;
        background: linear-gradient(180deg, 
            rgba(34, 211, 238, 0.9) 0%, 
            rgba(34, 211, 238, 1) 50%,
            rgba(34, 211, 238, 0.9) 100%) !important;
        transform: scaleY(0) !important;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
        box-shadow: 0 0 6px rgba(34, 211, 238, 0.4) !important;
        z-index: 2 !important;
    }
    
    .nav-links-desktop .nav-language-option::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(34, 211, 238, 0.08) !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
        z-index: 1 !important;
    }
    
    .nav-links-desktop .nav-language-option:hover {
        background: rgba(34, 211, 238, 0.15) !important;
        color: #0a0a0a !important;
        padding-left: 18px !important;
        box-shadow: inset 0 0 12px rgba(34, 211, 238, 0.1) !important;
    }
    
    .nav-links-desktop .nav-language-option:hover::before {
        transform: scaleY(1) !important;
    }
    
    .nav-links-desktop .nav-language-option:hover::after {
        opacity: 1 !important;
    }
    
    .nav-links-desktop .nav-language-option:hover .language-name {
        transform: translateX(3px) !important;
        color: #000000 !important;
    }
    
    .nav-links-desktop .nav-language-option.active {
        background: rgba(34, 211, 238, 0.2) !important;
        color: #0a0a0a !important;
        padding-left: 18px !important;
        box-shadow: inset 0 0 15px rgba(34, 211, 238, 0.15) !important;
    }
    
    .nav-links-desktop .nav-language-option.active::before {
        transform: scaleY(1) !important;
        box-shadow: 0 0 10px rgba(34, 211, 238, 0.6) !important;
    }
    
    .nav-links-desktop .nav-language-option.active::after {
        opacity: 1 !important;
    }
    
    .nav-links-desktop .nav-language-option.active .language-name {
        font-weight: 700 !important;
        text-shadow: 0 0 6px rgba(34, 211, 238, 0.3) !important;
        color: #000000 !important;
    }
    
    .nav-links-desktop .nav-language-option .language-name {
        flex: 1 !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative !important;
        z-index: 3 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        min-width: 0 !important;
        color: #000000 !important;
    }
    
    .nav-links-desktop .nav-language-option .language-code {
        font-size: 0.85rem !important;
        color: rgba(100, 116, 139, 0.75) !important;
        margin-left: 8px !important;
        font-weight: 500 !important;
        position: relative !important;
        z-index: 3 !important;
        transition: color 0.3s ease !important;
    }
    
    .nav-links-desktop .nav-language-option:hover .language-code,
    .nav-links-desktop .nav-language-option.active .language-code {
        color: rgba(51, 65, 85, 0.9) !important;
    }
}

/* Desktop Navigation - Always visible and functional */
.nav-links-desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    max-width: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible !important;
    pointer-events: auto !important;
}

/* Desktop navigation links - ensure they work properly and are not affected by mobile styles */
.nav-links-desktop .nav-link {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    color: rgba(255, 255, 255, 0.9) !important;
    display: block !important;
    position: static !important;
    transform: none !important;
    padding: 8px 12px !important;
    border-left: none !important;
    background: transparent !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: normal !important;
}

.nav-links-desktop .nav-link::before {
    display: none !important;
}

.nav-links-desktop .nav-link:hover {
    background: rgba(99, 102, 241, 0.15) !important;
    transform: translateY(-1px) !important;
    padding-left: 12px !important;
    border-left: none !important;
}

/* Mobile: Modern Smart Sidebar - Slides from right */
/* Only apply to mobile sidebar, not desktop */
/* Applied same properties as design.html sidebar */
.nav-menu-wrapper .nav-links,
.nav-links-mobile {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    min-width: 240px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-left: 1px solid rgba(148, 163, 184, 0.2);
    border-right: none;
    border-radius: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5) !important;
    padding: 20px !important;
    padding-top: 80px !important;
    margin: 0;
    margin-right: 0;
    margin-left: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.3) transparent;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.nav-menu-wrapper .nav-links::-webkit-scrollbar,
.nav-links-mobile::-webkit-scrollbar {
    width: 6px;
}

.nav-menu-wrapper .nav-links::-webkit-scrollbar-track,
.nav-links-mobile::-webkit-scrollbar-track {
    background: transparent;
}

.nav-menu-wrapper .nav-links::-webkit-scrollbar-thumb,
.nav-links-mobile::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 3px;
}

.nav-menu-wrapper .nav-links::-webkit-scrollbar-thumb:hover,
.nav-links-mobile::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.5);
}

.nav-menu-wrapper.active .nav-links,
.nav-menu-wrapper.active .nav-links-mobile {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    -webkit-transform: translateX(0) !important;
    pointer-events: auto !important;
    filter: none !important;
    -webkit-filter: none !important;
    right: 0 !important;
    left: auto !important;
    touch-action: pan-y !important;
    -webkit-touch-callout: none !important;
}

/* Ensure all elements in active sidebar are clickable and visible */
.nav-menu-wrapper.active .nav-links *:not(script):not(style),
.nav-menu-wrapper.active .nav-links-mobile *:not(script):not(style) {
    pointer-events: auto !important;
    filter: none !important;
    -webkit-filter: none !important;
    text-shadow: none !important;
}

/* Navigation links in active sidebar - CRITICAL for touch */
.nav-menu-wrapper.active .nav-links a[href],
.nav-menu-wrapper.active .nav-links-mobile a[href] {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 10005 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: rgba(99, 102, 241, 0.5) !important;
    touch-action: manipulation !important;
    -webkit-touch-callout: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-user-drag: none !important;
    will-change: transform !important;
}

/* Explicitly ensure external links (design.html, form1.html) work */
.nav-menu-wrapper.active .nav-links a[href="design.html"],
.nav-menu-wrapper.active .nav-links-mobile a[href="design.html"],
.nav-menu-wrapper.active .nav-links a[href="form1.html"],
.nav-menu-wrapper.active .nav-links-mobile a[href="form1.html"] {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 10006 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu-wrapper.active .nav-links a[href]:active,
.nav-menu-wrapper.active .nav-links-mobile a[href]:active {
    opacity: 0.8 !important;
}

/* Prevent pseudo-elements from blocking clicks */
.nav-menu-wrapper.active .nav-links a[href]::before,
.nav-menu-wrapper.active .nav-links a[href]::after,
.nav-menu-wrapper.active .nav-links-mobile a[href]::before,
.nav-menu-wrapper.active .nav-links-mobile a[href]::after {
    pointer-events: none !important;
}

/* Interactive elements in sidebar */
.nav-menu-wrapper.active .nav-links button,
.nav-menu-wrapper.active .nav-links-mobile button,
.nav-menu-wrapper.active .nav-links .nav-link-dropdown,
.nav-menu-wrapper.active .nav-links-mobile .nav-link-dropdown {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 10002 !important;
    position: relative !important;
    touch-action: manipulation !important;
}

/* Language dropdown buttons */
.nav-menu-wrapper.active .nav-links .nav-language-option,
.nav-menu-wrapper.active .nav-links-mobile .nav-language-option {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 10004 !important;
    position: relative !important;
    touch-action: manipulation !important;
}

/* Smart link animations in mobile sidebar only */
.nav-menu-wrapper .nav-links .nav-link,
.nav-links-mobile .nav-link {
    position: relative;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 1) !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    display: block;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    text-shadow: none !important;
    filter: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: pointer !important;
    z-index: 10002 !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(99, 102, 241, 0.5) !important;
    -webkit-touch-callout: none !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
}

.nav-menu-wrapper .nav-links .nav-link::before,
.nav-links-mobile .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6366F1 0%, #8B5CF6 100%);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
}

.nav-menu-wrapper .nav-links .nav-link:hover,
.nav-links-mobile .nav-link:hover {
    background: rgba(99, 102, 241, 0.15);
    border-left-color: #6366F1;
    color: #fff;
    padding-left: 28px;
    transform: translateX(-4px);
}

/* Immediate touch response - no delay */
.nav-menu-wrapper .nav-links .nav-link:active,
.nav-links-mobile .nav-link:active {
    background: rgba(99, 102, 241, 0.25) !important;
    transform: translateX(-2px) !important;
    transition: none !important;
}

.nav-menu-wrapper .nav-links .nav-link:hover::before,
.nav-links-mobile .nav-link:hover::before {
    transform: scaleY(1);
}

.nav-menu-wrapper .nav-links .nav-link:active,
.nav-links-mobile .nav-link:active {
    background: rgba(99, 102, 241, 0.25);
    transform: translateX(-2px);
}

/* Mobile Sidebar Backdrop/Overlay - Same as design.html */
.nav-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    touch-action: none !important;
    -webkit-touch-callout: none !important;
}

/* Sidebar backdrop when open */
body.sidebar-open .nav-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
    z-index: 10000 !important;
}

/* Ensure sidebar and links are above backdrop */
body.sidebar-open .nav-menu-wrapper.active .nav-links,
body.sidebar-open .nav-menu-wrapper.active .nav-links-mobile {
    z-index: 10001 !important;
    pointer-events: auto !important;
}

body.sidebar-open .nav-menu-wrapper.active .nav-links a[href],
body.sidebar-open .nav-menu-wrapper.active .nav-links-mobile a[href] {
    z-index: 10005 !important;
    pointer-events: auto !important;
    position: relative !important;
}

/* Language icon behind sidebar when open */
body.sidebar-open .language-selector-wrapper {
    z-index: 998 !important;
}

body.sidebar-open .language-icon-button {
    pointer-events: none;
}

@media (max-width: 768px) {
    .nav-menu-backdrop {
        display: block;
    }
}

@media (min-width: 769px) {
    .nav-menu-backdrop {
        display: none !important;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    cursor: pointer;
    display: block;
}

/* Language dropdown menu item */
.nav-link-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.nav-link-dropdown span {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
}

.nav-link-dropdown .dropdown-arrow {
    margin-left: 8px;
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.nav-link-dropdown:hover .dropdown-arrow,
.nav-link-dropdown.expanded .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(30, 30, 46, 0.98) 0%, rgba(20, 20, 36, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    padding: 8px;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 100%;
}

/* Desktop: Show on hover */
@media (hover: hover) and (pointer: fine) {
    .nav-link-dropdown:hover .nav-language-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile: Show on tap/expand */
@media (max-width: 768px) {
    .nav-link-dropdown {
        position: relative;
    }
    
    .nav-link-dropdown .nav-language-dropdown {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        min-width: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Force show on mobile when expanded */
    .nav-link-dropdown .nav-language-dropdown {
        display: none !important;
    }
    
    .nav-link-dropdown.expanded .nav-language-dropdown {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        position: relative !important;
        margin-top: 8px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        flex-direction: column !important;
        gap: 4px !important;
        z-index: 1002 !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        pointer-events: auto !important;
        clip: auto !important;
        clip-path: none !important;
    }
    
    .nav-link-dropdown.expanded .nav-language-option {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        pointer-events: auto !important;
        width: 100% !important;
    }
    
    /* Ensure dropdown is not hidden by parent */
    .nav-links .nav-link-dropdown.expanded {
        overflow: visible !important;
    }
    
    .nav-links     .nav-link-dropdown.expanded .nav-language-dropdown {
        position: relative !important;
        margin-top: 8px !important;
        margin-bottom: 8px !important;
    }
    
    /* Override any conflicting styles */
    .nav-links .nav-link-dropdown.expanded {
        height: auto !important;
        min-height: auto !important;
    }
    
    /* Make sure dropdown is visible */
    .nav-links:has(.nav-link-dropdown.expanded) {
        overflow: visible !important;
    }
    
    /* Alternative for browsers that don't support :has() */
    .nav-links {
        overflow: visible !important;
    }
    
    /* Ensure nav-link-dropdown can expand */
    .nav-links .nav-link-dropdown {
        overflow: visible !important;
    }
}

.nav-language-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: left;
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.nav-language-option:hover {
    background: rgba(34, 211, 238, 0.2);
    border-color: rgba(34, 211, 238, 0.4);
    color: #ffffff;
    transform: translateX(4px);
}

.nav-language-option .language-name {
    display: flex;
    align-items: center;
    color: #000000;
}

.nav-language-option .language-code {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-left: 8px;
}

.nav-language-option:hover .language-code {
    color: rgba(255, 255, 255, 0.7);
}

.nav-language-option.active {
    background: rgba(34, 211, 238, 0.25);
    border-color: rgba(34, 211, 238, 0.5);
    color: #ffffff;
}

.nav-language-option.active .language-code {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link:hover {
    color: #fff;
    background: rgba(99, 102, 241, 0.1);
    border-left-color: #6366F1;
    padding-left: 24px;
}

.nav-link-dropdown:hover {
    color: #fff;
    background: rgba(99, 102, 241, 0.1);
    border-left-color: #6366F1;
    padding-left: 24px;
}

.nav-link.active {
    color: #fff;
    background: rgba(99, 102, 241, 0.15);
    border-left-color: #A78BFA;
}

/* Add padding to body to account for fixed nav */
body {
    padding-top: 70px;
}

/* RTL support for navigation */
body.rtl-text .nav-container,
body.rtl-text .nav-links {
    direction: ltr;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 60px;
    }
    
    .nav-logo {
        font-size: 20px;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .nav-logo-img {
        gap: 0;
        width: 48px !important;
        height: 48px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1px solid rgba(192, 132, 252, 0.4) !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2),
                    0 0 12px rgba(192, 132, 252, 0.15) !important;
        position: relative !important;
        overflow: hidden !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-logo-img::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, 
            rgba(192, 132, 252, 0.15) 0%, 
            rgba(139, 92, 246, 0.12) 50%,
            rgba(168, 85, 247, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 0;
    }
    
    .nav-logo-img:hover::before {
        opacity: 1;
    }
    
    .nav-logo-img:hover {
        background: transparent !important;
        border-color: rgba(192, 132, 252, 0.6) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4),
                    0 0 20px rgba(192, 132, 252, 0.3) !important;
    }
    
    .nav-logo-img .logo-image {
        position: relative;
        z-index: 1;
    }
    
    /* Hide logo text on mobile - show only image */
    .logo-text {
        display: none !important;
    }
    
    .nav-container {
        height: 58px;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-links-desktop {
        display: none !important;
    }
    
    /* Show hamburger menu on mobile */
    .nav-menu-wrapper {
        display: block !important;
    }
    
    .nav-menu-toggle {
        width: 48px !important;
        height: 48px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1px solid rgba(192, 132, 252, 0.4) !important;
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2),
                    0 0 12px rgba(192, 132, 252, 0.15) !important;
    }
    
    .nav-menu-toggle::before {
        background: linear-gradient(135deg, 
            rgba(192, 132, 252, 0.15) 0%, 
            rgba(139, 92, 246, 0.12) 50%,
            rgba(168, 85, 247, 0.1) 100%) !important;
    }
    
    .nav-menu-toggle:hover {
        background: transparent !important;
        border-color: rgba(192, 132, 252, 0.6) !important;
        box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4),
                    0 0 20px rgba(192, 132, 252, 0.3) !important;
    }
    
    .hamburger-icon {
        width: 22px;
    }
    
    .hamburger-line {
        background: linear-gradient(90deg, 
            rgba(192, 132, 252, 1) 0%, 
            rgba(255, 255, 255, 0.9) 50%,
            rgba(192, 132, 252, 1) 100%) !important;
        box-shadow: 0 0 8px rgba(192, 132, 252, 0.6) !important;
    }
    
    .nav-menu-wrapper.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px) !important;
    }
    
    .nav-menu-wrapper.active .hamburger-line:nth-child(2) {
        opacity: 0 !important;
    }
    
    .nav-menu-wrapper.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px) !important;
    }
    
    .nav-links-mobile {
        display: flex !important;
        flex-direction: column !important;
        overflow: visible !important;
    }
    
    /* Mobile sidebar - only apply to mobile menu wrapper */
    /* Applied same properties as design.html sidebar */
    .nav-menu-wrapper .nav-links,
    .nav-links-mobile {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        bottom: auto !important;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        min-width: 240px !important;
        z-index: 10001 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        transform: translateX(100%) !important;
        -webkit-transform: translateX(100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5) !important;
        background: linear-gradient(180deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-left: 1px solid rgba(148, 163, 184, 0.2) !important;
        border-right: none !important;
        padding: 20px !important;
        padding-top: 80px !important;
        margin: 0 !important;
        margin-right: 0 !important;
        margin-left: auto !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .nav-menu-wrapper.active .nav-links,
    .nav-menu-wrapper.active .nav-links-mobile {
        transform: translateX(0) !important;
        -webkit-transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        filter: none !important;
        -webkit-filter: none !important;
        right: 0 !important;
        left: auto !important;
        touch-action: pan-y !important;
        -webkit-touch-callout: none !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* All links in active sidebar are clickable on mobile - CRITICAL for touch */
    .nav-menu-wrapper.active .nav-links a[href],
    .nav-menu-wrapper.active .nav-links-mobile a[href] {
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10005 !important;
        position: relative !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.5) !important;
        touch-action: manipulation !important;
        -webkit-touch-callout: none !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        -webkit-user-drag: none !important;
        will-change: auto !important;
        min-height: 44px !important;
        transition: background-color 0.1s ease, opacity 0.1s ease !important;
    }
    
    /* Immediate touch response - no delay */
    .nav-menu-wrapper.active .nav-links a[href]:active,
    .nav-menu-wrapper.active .nav-links-mobile a[href]:active {
        background-color: rgba(99, 102, 241, 0.25) !important;
        opacity: 0.9 !important;
        transition: none !important;
    }
    
    /* Language dropdown buttons */
    .nav-menu-wrapper.active .nav-links .nav-language-option,
    .nav-menu-wrapper.active .nav-links-mobile .nav-language-option {
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10004 !important;
        position: relative !important;
        touch-action: manipulation !important;
    }
    
    /* Sidebar content visibility and touch */
    .nav-menu-wrapper.active .nav-links *,
    .nav-menu-wrapper.active .nav-links-mobile * {
        filter: none !important;
        -webkit-filter: none !important;
        text-shadow: none !important;
        pointer-events: auto !important;
    }
    
    /* Ensure all links receive touch events properly */
    .nav-menu-wrapper.active .nav-links a,
    .nav-menu-wrapper.active .nav-links-mobile a {
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.5) !important;
        touch-action: manipulation !important;
        -webkit-touch-callout: none !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .nav-menu-wrapper .nav-links .nav-link-dropdown,
    .nav-links-mobile .nav-link-dropdown {
        overflow: visible !important;
    }
    
    .nav-menu-wrapper .nav-links .nav-link,
    .nav-links-mobile .nav-link {
        font-size: 15px !important;
        padding: 16px 24px !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10002 !important;
        position: relative !important;
        color: rgba(255, 255, 255, 1) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        text-decoration: none !important;
        transition: background-color 0.15s ease, opacity 0.1s ease !important;
        border-left: 3px solid transparent !important;
        font-weight: 500 !important;
        letter-spacing: 0.3px !important;
        text-shadow: none !important;
        filter: none !important;
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
        touch-action: manipulation !important;
        -webkit-touch-callout: none !important;
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.5) !important;
        min-height: 44px !important;
        -webkit-user-drag: none !important;
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.5) !important;
    }
    
    /* Immediate response on touch - no delay */
    .nav-menu-wrapper .nav-links .nav-link:active,
    .nav-links-mobile .nav-link:active {
        background-color: rgba(99, 102, 241, 0.25) !important;
        opacity: 0.9 !important;
        transition: none !important;
    }
    
    .nav-menu-wrapper .nav-links .nav-link::before,
    .nav-links-mobile .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, #6366F1 0%, #8B5CF6 100%);
        transform: scaleY(0);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0 2px 2px 0;
    }
    
    .nav-menu-wrapper .nav-links .nav-link:hover,
    .nav-links-mobile .nav-link:hover {
        color: #fff !important;
        background: rgba(99, 102, 241, 0.15) !important;
        border-left-color: #6366F1 !important;
        padding-left: 28px !important;
        transform: translateX(-4px) !important;
    }
    
    .nav-menu-wrapper .nav-links .nav-link:hover::before,
    .nav-links-mobile .nav-link:hover::before {
        transform: scaleY(1) !important;
    }
    
    .nav-menu-wrapper .nav-links .nav-link:active,
    .nav-links-mobile .nav-link:active {
        background: rgba(99, 102, 241, 0.25) !important;
        transform: translateX(-2px) !important;
    }
    
    /* Prevent body scroll when sidebar is open */
    body.sidebar-open {
        overflow: hidden !important;
        padding-top: 60px;
    }
    
    body {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 18px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .nav-logo-img {
        gap: 0;
        /* Smart frame for logo on mobile - same as hamburger icon */
        padding: 7px;
        background: linear-gradient(135deg, 
            rgba(99, 102, 241, 0.08) 0%, 
            rgba(168, 85, 247, 0.08) 50%,
            rgba(56, 189, 248, 0.06) 100%);
        border: 1.5px solid rgba(99, 102, 241, 0.25);
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-logo-img::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, 
            rgba(99, 102, 241, 0.15) 0%, 
            rgba(168, 85, 247, 0.12) 50%,
            rgba(56, 189, 248, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 0;
    }
    
    .nav-logo-img:hover::before {
        opacity: 1;
    }
    
    .nav-logo-img:hover {
        border-color: rgba(99, 102, 241, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3),
                    0 2px 8px rgba(168, 85, 247, 0.2);
    }
    
    .nav-logo-img .logo-image {
        position: relative;
        z-index: 1;
    }
    
    /* Hide logo text on mobile - show only image */
    .logo-text {
        display: none !important;
    }
    
    .nav-menu-toggle {
        width: 42px;
        height: 42px;
    }
    
    .hamburger-icon {
        width: 20px;
        gap: 4px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    .nav-links {
        min-width: 280px !important;
        max-width: 90vw !important;
        width: 280px !important;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    /* Ensure sidebar scrolls smoothly on small screens */
    .nav-links {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(99, 102, 241, 0.5) transparent;
    }
    
    .nav-links::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav-links::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .nav-links::-webkit-scrollbar-thumb {
        background: rgba(99, 102, 241, 0.5);
        border-radius: 3px;
    }
    
    .nav-links::-webkit-scrollbar-thumb:hover {
        background: rgba(99, 102, 241, 0.7);
    }
}

/* ====================================
   Left Side Icon - Same style as language icon
   ==================================== */
.left-icon-wrapper {
    display: none; /* Hidden on desktop */
    position: fixed;
    top: 85px;
    left: 20px;
    z-index: 1000;
    background: transparent;
}

.left-icon-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.95;
    overflow: visible;
}

/* Soft gradient/glow background behind icon - same as language icon */
.left-icon-button::before {
    content: '';
    position: absolute;
    width: 95px;
    height: 95px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.25);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
    filter: blur(8px);
    animation: iconGlowPulse 3s ease-in-out infinite;
}

.left-icon-button:hover::before {
    box-shadow: 0 8px 35px rgba(34, 211, 238, 0.5);
    transform: translateX(-50%) scale(1.15);
    filter: blur(12px);
}

.left-icon-button:hover {
    opacity: 1;
    transform: translateY(-12px);
}

.left-feature-icon {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    backdrop-filter: none;
    border-radius: 50%;
    padding: 0;
    border: 1.5px solid rgba(34, 211, 238, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(34, 211, 238, 0.25) 0%, 
        rgba(34, 211, 238, 0.1) 100%);
}

.left-feature-icon svg {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 50%;
    overflow: visible;
}

.left-icon-image {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 2px 8px rgba(34, 211, 238, 0.3));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.left-icon-button:hover .left-feature-icon {
    background: linear-gradient(135deg, 
        rgba(34, 211, 238, 0.35) 0%, 
        rgba(34, 211, 238, 0.15) 100%);
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 
        0 12px 40px rgba(34, 211, 238, 0.4),
        0 4px 12px rgba(34, 211, 238, 0.3);
    transform: scale(1.05) rotate(3deg);
}

.left-icon-button:hover .left-icon-image {
    filter: drop-shadow(0 4px 16px rgba(34, 211, 238, 0.6)) brightness(1.1);
}

/* ====================================
   Language Selector - Icon Style (like hero-feature-item)
   ==================================== */
.language-selector-wrapper {
    position: fixed;
    top: 85px;
    right: 20px;
    z-index: 1000;
    background: transparent;
}

.language-icon-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.95;
    overflow: visible;
}

/* Soft gradient/glow background behind icon - same as hero-feature-item */
.language-icon-button::before {
    content: '';
    position: absolute;
    width: 95px;
    height: 95px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.25);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
    filter: blur(8px);
    animation: iconGlowPulse 3s ease-in-out infinite;
}

.language-icon-button:hover::before {
    box-shadow: 0 8px 35px rgba(34, 211, 238, 0.5);
    transform: translateX(-50%) scale(1.15);
    filter: blur(12px);
}

.language-icon-button:hover {
    opacity: 1;
    transform: translateY(-12px);
}

.language-feature-icon {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    backdrop-filter: none;
    border-radius: 50%;
    padding: 0;
    border: 1.5px solid rgba(34, 211, 238, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(34, 211, 238, 0.25) 0%, 
        rgba(34, 211, 238, 0.1) 100%);
}

.language-feature-icon svg {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 50%;
    overflow: visible;
}

.language-icon-image {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 2px 8px rgba(34, 211, 238, 0.3));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.language-icon-button:hover .language-feature-icon {
    transform: scale(1.15) rotate(3deg);
    backdrop-filter: none;
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 
        0 12px 40px rgba(34, 211, 238, 0.4),
        0 4px 12px rgba(34, 211, 238, 0.3);
    background: linear-gradient(135deg, 
        rgba(34, 211, 238, 0.35) 0%, 
        rgba(34, 211, 238, 0.15) 100%);
    animation: iconFloat 2s ease-in-out infinite;
}

.language-icon-button:hover .language-icon-image {
    filter: drop-shadow(0 4px 16px rgba(34, 211, 238, 0.6)) brightness(1.1);
    transform: scale(1.05);
}

.language-icon-button[aria-expanded="true"] .language-icon-image {
    filter: drop-shadow(0 4px 16px rgba(34, 211, 238, 0.6)) brightness(1.1);
}

.language-icon-button:focus {
    outline: none;
}

.language-icon-button[aria-expanded="true"] .language-feature-icon {
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 
        0 12px 40px rgba(34, 211, 238, 0.4),
        0 4px 12px rgba(34, 211, 238, 0.3);
    background: linear-gradient(135deg, 
        rgba(34, 211, 238, 0.35) 0%, 
        rgba(34, 211, 238, 0.15) 100%);
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    left: auto;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(34, 211, 238, 0.3);
    border-radius: 10px;
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(34, 211, 238, 0.15);
    /* Fixed width and height - no expansion or shrinking */
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    height: auto;
    min-height: 120px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transform-origin: top right;
    transition: 
        opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        visibility 0s linear 0.3s;
    z-index: 1001;
    overflow: hidden;
    pointer-events: none;
}

.language-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.03) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 10px;
}

.language-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    right: 25px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-left: 1.5px solid rgba(34, 211, 238, 0.3);
    border-top: 1.5px solid rgba(34, 211, 238, 0.3);
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(34, 211, 238, 0.12);
}

.language-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: 
        opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
}

.language-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* Fixed height for consistent sizing across all languages */
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: 10px 14px;
    box-sizing: border-box;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    text-align: left;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    overflow: hidden;
    white-space: nowrap;
}

.language-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(34, 211, 238, 0.9) 0%, 
        rgba(34, 211, 238, 1) 50%,
        rgba(34, 211, 238, 0.9) 100%);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 6px rgba(34, 211, 238, 0.4);
}

.language-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 211, 238, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(34, 211, 238, 0.15);
    color: #0a0a0a;
    padding-left: 18px;
    box-shadow: inset 0 0 12px rgba(34, 211, 238, 0.1);
}

.language-option:hover::before {
    transform: scaleY(1);
}

.language-option:hover::after {
    opacity: 1;
}

.language-option:hover .language-name {
    transform: translateX(3px);
    color: #000000;
}

.language-option.active {
    background: rgba(34, 211, 238, 0.2);
    color: #0a0a0a;
    padding-left: 18px;
    box-shadow: inset 0 0 15px rgba(34, 211, 238, 0.15);
}

.language-option.active::before {
    transform: scaleY(1);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
}

.language-option.active::after {
    opacity: 1;
}

.language-option.active .language-name {
    font-weight: 700;
    text-shadow: 0 0 6px rgba(34, 211, 238, 0.3);
    color: #000000;
}

.language-name {
    flex: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    color: #000000;
}

.language-code {
    font-size: 0.85rem;
    color: rgba(100, 116, 139, 0.75);
    margin-left: 8px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.language-option:hover .language-code,
.language-option.active .language-code {
    color: rgba(51, 65, 85, 0.9);
}

/* Staggered Animation for Language Options */
.language-dropdown-menu.active .language-option:nth-child(1) {
    animation: slideInOption 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s backwards;
}

.language-dropdown-menu.active .language-option:nth-child(2) {
    animation: slideInOption 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.18s backwards;
}

.language-dropdown-menu.active .language-option:nth-child(3) {
    animation: slideInOption 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.26s backwards;
}

@keyframes slideInOption {
    from {
        opacity: 0;
        transform: translateY(-10px) translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

/* AI Particle Effect for Language Selector */
.language-dropdown-btn::after {
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

/* Shimmer Effect on Hover */
.language-dropdown-btn:hover::before {
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 100px 20px 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Background Logo */
.background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.08;
    filter: blur(8px);
    width: 85vw;
    max-width: 1400px;
    pointer-events: none;
}

.background-logo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Circuit Pattern Background */
.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.3) 1px, transparent 1px),
        linear-gradient(rgba(168, 85, 247, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.2) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
    animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.9) 0%, rgba(14, 165, 233, 0.6) 40%, transparent 70%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.9) 0%, rgba(147, 51, 234, 0.6) 40%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: -7s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.8) 0%, rgba(6, 182, 212, 0.5) 40%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ====================================
   AI Magic Elements
   ==================================== */

/* Neural Network Canvas */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
}

/* AI Particles */
.ai-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.ai-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(56, 189, 248, 1), transparent);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite, particlePulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.8), 0 0 40px rgba(56, 189, 248, 0.4);
}

.ai-particle:nth-child(1) { animation-delay: 0s, 0s; }
.ai-particle:nth-child(2) { animation-delay: -2s, -0.5s; }
.ai-particle:nth-child(3) { animation-delay: -4s, -1s; }
.ai-particle:nth-child(4) { animation-delay: -6s, -1.5s; }
.ai-particle:nth-child(5) { animation-delay: -1s, -0.3s; }
.ai-particle:nth-child(6) { animation-delay: -3s, -0.8s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(-20px, 20px);
    }
    75% {
        transform: translate(20px, 10px);
    }
}

@keyframes particlePulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(2);
    }
}

/* Floating AI Icons */
.floating-ai-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.ai-icon {
    position: absolute;
    color: rgba(56, 189, 248, 0.4);
    animation: aiIconFloat 6s ease-in-out infinite, aiIconRotate 12s linear infinite;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.6));
}

.ai-icon:nth-child(1) { animation-delay: 0s, 0s; }
.ai-icon:nth-child(2) { 
    animation-delay: -2s, -3s;
    color: rgba(168, 85, 247, 0.4);
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
}
.ai-icon:nth-child(3) { 
    animation-delay: -4s, -6s;
    color: rgba(34, 211, 238, 0.4);
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.6));
}
.ai-icon:nth-child(4) { 
    animation-delay: -1s, -9s;
    color: rgba(192, 132, 252, 0.4);
    filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.6));
}

@keyframes aiIconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
}

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

/* Data Stream Lines */
.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.data-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(56, 189, 248, 0.8) 50%, 
        transparent 100%);
    animation: dataStream 4s linear infinite;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

.data-line:nth-child(1) { animation-delay: 0s; }
.data-line:nth-child(2) { 
    animation-delay: -1.5s;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(168, 85, 247, 0.8) 50%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}
.data-line:nth-child(3) { 
    animation-delay: -3s;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(34, 211, 238, 0.8) 50%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.8);
}

@keyframes dataStream {
    0% {
        left: -5%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 105%;
        opacity: 0;
    }
}

/* Scanning Effect */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(56, 189, 248, 0.8) 50%, 
        transparent 100%);
    box-shadow: 
        0 0 20px rgba(56, 189, 248, 0.8),
        0 0 40px rgba(56, 189, 248, 0.4);
    animation: scanMove 8s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes scanMove {
    0%, 100% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    95%, 100% {
        top: 100%;
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

.hero-text-content {
    text-align: left;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    animation: fadeInRight 1s ease-out 0.3s backwards, heroImageBreathe 10s ease-in-out infinite 1.3s;
}

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

/* Blue-violet glow behind robot's head (top area) */
.hero-image::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(168, 85, 247, 0.4) 0%, 
        rgba(56, 189, 248, 0.35) 30%,
        rgba(34, 211, 238, 0.2) 50%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -2;
    animation: robotHeadGlow 5s ease-in-out infinite, robotGlowFloat 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes robotHeadGlow {
    0%, 100% {
        opacity: 0.8;
        filter: blur(60px);
    }
    50% {
        opacity: 1;
        filter: blur(70px);
    }
}

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

/* Blurred backdrop effect behind entire image */
.hero-image::after {
    content: '';
    position: absolute;
    inset: -30px;
    background: linear-gradient(135deg, 
        rgba(15, 12, 41, 0.6) 0%, 
        rgba(48, 43, 99, 0.5) 50%, 
        rgba(36, 36, 62, 0.6) 100%);
    border-radius: 40px;
    filter: blur(25px);
    z-index: -1;
    animation: backdropPulse 6s ease-in-out infinite;
}

@keyframes backdropPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

.image-accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
    animation: accentFloat 6s ease-in-out infinite;
    mix-blend-mode: screen;
    opacity: 0.6;
}

.accent-1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, 
        rgba(56, 189, 248, 0.5) 0%, 
        rgba(56, 189, 248, 0.3) 40%,
        transparent 70%);
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.accent-2 {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, 
        rgba(168, 85, 247, 0.5) 0%, 
        rgba(168, 85, 247, 0.3) 40%,
        transparent 70%);
    bottom: -40px;
    left: -40px;
    animation-delay: -2s;
}

.accent-3 {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, 
        rgba(34, 211, 238, 0.4) 0%, 
        rgba(34, 211, 238, 0.25) 40%,
        transparent 70%);
    top: 50%;
    left: -55px;
    animation-delay: -4s;
}

@keyframes accentFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
        filter: blur(30px);
    }
    33% {
        transform: translate(6px, -10px) scale(1.1);
        opacity: 0.7;
        filter: blur(32px);
    }
    66% {
        transform: translate(-5px, 5px) scale(1.12);
        opacity: 0.75;
        filter: blur(35px);
    }
}

/* Atmospheric vignette effect around image */
.image-atmosphere {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at center, 
        transparent 30%,
        rgba(15, 12, 41, 0.3) 60%,
        rgba(15, 12, 41, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
    animation: atmospherePulse 7s ease-in-out infinite;
}

@keyframes atmospherePulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.7;
    }
}

.hero-image .robot-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(56, 189, 248, 0.3),
        0 10px 30px rgba(168, 85, 247, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(56, 189, 248, 0.25);
    transition: transform 0.6s ease, box-shadow 0.6s ease, border-color 0.6s ease, filter 0.6s ease;
    animation: floatAnimation 6s ease-in-out infinite, imageBorderPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    /* Color adjustment to match background tones */
    filter: 
        brightness(0.95) 
        contrast(1.05)
        saturate(1.1)
        hue-rotate(-5deg);
}

/* Soft overlay gradient matching background colors */
.hero-image .robot-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, 
        rgba(15, 12, 41, 0.15) 0%,
        rgba(48, 43, 99, 0.1) 30%,
        rgba(56, 189, 248, 0.08) 50%,
        rgba(168, 85, 247, 0.1) 70%,
        rgba(36, 36, 62, 0.15) 100%);
    pointer-events: none;
    z-index: 10;
    mix-blend-mode: overlay;
    opacity: 0.7;
}

/* ====================================
   Icon Highlights Section (3 cards)
   ==================================== */

.icon-highlights {
    padding: 80px 20px 60px;
}

.icon-highlights .container {
    max-width: 1100px;
}

.icon-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Premium grid layout for first section */
#features .icon-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Premium gradient overlay for icon section */
#features .icon-highlights-grid::before {
    content: '';
    position: absolute;
    inset: -100px;
    background: radial-gradient(ellipse at center, 
        rgba(99, 102, 241, 0.08) 0%,
        rgba(168, 85, 247, 0.04) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: gradientShiftScale 12s ease-in-out infinite;
}

@keyframes gradientShiftScale {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.15) rotate(2deg);
    }
}

/* Premium section container - Clean white gradient */
#features {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 50%, #f0f4ff 100%);
    padding: 120px 20px;
}

#features-2 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 120px 20px;
}

/* Subtle decorative dots - Light mode */
#features::before {
    display: none;
}

#features-2::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 70%;
    background: 
        radial-gradient(ellipse at top center, 
            rgba(168, 85, 247, 0.3) 0%,
            rgba(139, 92, 246, 0.25) 15%,
            rgba(99, 102, 241, 0.2) 30%,
            rgba(56, 189, 248, 0.15) 45%,
            transparent 65%),
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.25), transparent);
    background-size: 
        100% 100%,
        200% 200%,
        200% 200%,
        150% 150%,
        200% 200%;
    background-position: 
        50% 0%,
        0% 0%,
        40% 60%,
        50% 50%,
        80% 10%;
    filter: blur(45px);
    opacity: 0.95;
    pointer-events: none;
    z-index: 1;
}

/* Smooth gradient wave overlay - Top right corner */
#features-2::after {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 85%;
    height: 95%;
    background: radial-gradient(ellipse at top right, 
        rgba(99, 102, 241, 0.4) 0%,
        rgba(139, 92, 246, 0.35) 15%,
        rgba(168, 85, 247, 0.3) 30%,
        rgba(99, 102, 241, 0.2) 45%,
        rgba(139, 92, 246, 0.15) 60%,
        transparent 75%);
    filter: blur(50px);
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
    animation: waveFloat 8s ease-in-out infinite;
}

/* Additional gradient on left side for balance */
#features-2 .container::before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse at bottom left, 
        rgba(56, 189, 248, 0.35) 0%,
        rgba(34, 211, 238, 0.25) 20%,
        rgba(99, 102, 241, 0.2) 40%,
        rgba(56, 189, 248, 0.1) 60%,
        transparent 75%);
    filter: blur(50px);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
    animation: waveFloatLeft 10s ease-in-out infinite;
}

@keyframes waveFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate(-30px, 15px) scale(1.08);
        opacity: 0.75;
    }
}

@keyframes waveFloatLeft {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.85;
    }
    50% {
        transform: translate(20px, -10px) scale(1.05);
        opacity: 0.65;
    }
}


/* Subtle gradient overlay - Light mode */
#features::after {
    display: none;
}

/* Content should appear above gradient overlays */
#features-2 .container {
    position: relative;
    z-index: 2;
}

/* Inner wrapper for icon and label - removed generic rule to avoid conflicts */

/* Space Icon Label - Same as Hero */
#features .icon-label {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.8px;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    text-shadow: none;
    text-transform: uppercase;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    margin: 0;
    line-height: 1.2;
}



/* Decorative Icon before label */
.icon-label::before {
    content: '◆';
    position: absolute;
    left: 0;
    font-size: 12px;
    color: #6366F1;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Underline decoration */
.icon-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 25px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        #6366F1 0%,
        #A78BFA 50%,
        #C084FC 100%);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.simple-icon-wrapper:hover .icon-label {
    opacity: 1;
    transform: translateX(5px);
}

.simple-icon-wrapper:hover .icon-label::before {
    opacity: 1;
    transform: scale(1.3) rotate(45deg);
    color: #A78BFA;
}

.simple-icon-wrapper:hover .icon-label::after {
    width: calc(100% - 25px);
}

/* Different colors for different icons */
.simple-icon-wrapper:nth-child(1) .icon-label::before {
    color: #6366F1;
}

.simple-icon-wrapper:nth-child(2) .icon-label::before {
    color: #10B981;
}

.simple-icon-wrapper:nth-child(3) .icon-label::before {
    color: #F97316;
}

.simple-icon-wrapper:nth-child(4) .icon-label::before {
    color: #EC4899;
}

.simple-icon-wrapper:nth-child(5) .icon-label::before {
    color: #8B5CF6;
}

/* Disable decorative elements for Features page */
#features .icon-label::before,
#features .icon-label::after {
    display: none;
}

#features .simple-icon-wrapper:hover .icon-label {
    transform: none;
}

/* Clean Card Container - Light mode with proper spacing */
#features .simple-icon-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 32px;
    gap: 25px;
    position: relative;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.12);
    box-shadow: 
        0 10px 40px rgba(15, 23, 42, 0.06),
        0 4px 16px rgba(99, 102, 241, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    min-height: 180px;
    overflow: visible;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon wrapper inner - contains just the circular icon */
#features .icon-wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    z-index: 2;
}

/* Ensure consistent positioning for all icon containers */
#features .simple-icon-wrapper:nth-child(1) .icon-wrapper-inner,
#features .simple-icon-wrapper:nth-child(2) .icon-wrapper-inner,
#features .simple-icon-wrapper:nth-child(3) .icon-wrapper-inner,
#features .simple-icon-wrapper:nth-child(4) .icon-wrapper-inner,
#features .simple-icon-wrapper:nth-child(5) .icon-wrapper-inner,
#features .simple-icon-wrapper:nth-child(6) .icon-wrapper-inner,
#features .simple-icon-wrapper:nth-child(7) .icon-wrapper-inner,
#features .simple-icon-wrapper:nth-child(8) .icon-wrapper-inner {
    margin-left: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

/* Ensure all wrappers have consistent layout and smooth transitions */
#features .simple-icon-wrapper:nth-child(1),
#features .simple-icon-wrapper:nth-child(2),
#features .simple-icon-wrapper:nth-child(3),
#features .simple-icon-wrapper:nth-child(4),
#features .simple-icon-wrapper:nth-child(5),
#features .simple-icon-wrapper:nth-child(6),
#features .simple-icon-wrapper:nth-child(7),
#features .simple-icon-wrapper:nth-child(8) {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 32px !important;
    gap: 25px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
}

/* Text content beside icon */
#features .icon-text-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    text-align: left;
    align-items: flex-start;
    justify-content: center;
    padding-right: 25px;
    padding-left: 20px;
}

#features .icon-label {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.2px;
    margin: 0;
    line-height: 1.3;
}

#features .icon-description {
    font-size: 14.5px;
    font-weight: 400;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}




/* Space Section Title - Bold gradient on white */
#features .section-title {
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, 
        #38bdf8 0%, 
        #22d3ee 25%,
        #c084fc 50%, 
        #c084fc 75%,
        #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 8s ease infinite;
    filter: drop-shadow(0 2px 20px rgba(56, 189, 248, 0.3));
}

/* Unified gradient titles for features sections - Same as hero title */
#features-2 .section-title,
#process .section-title {
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, 
        #38bdf8 0%, 
        #22d3ee 25%,
        #c084fc 50%, 
        #c084fc 75%,
        #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 8s ease infinite;
    filter: drop-shadow(0 2px 20px rgba(56, 189, 248, 0.3));
}

#features-2 .section-description {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Space Section Description - Dark and readable */
#features .section-description {
    color: #475569;
    text-shadow: none;
    filter: none;
    font-weight: 500;
}

/* Clean - No decorative line */
/* Unified hover effect for all containers - Same as container 6 */
#features .simple-icon-wrapper:hover,
#features .simple-icon-wrapper:nth-child(1):hover,
#features .simple-icon-wrapper:nth-child(2):hover,
#features .simple-icon-wrapper:nth-child(3):hover,
#features .simple-icon-wrapper:nth-child(4):hover,
#features .simple-icon-wrapper:nth-child(5):hover,
#features .simple-icon-wrapper:nth-child(6):hover,
#features .simple-icon-wrapper:nth-child(7):hover,
#features .simple-icon-wrapper:nth-child(8):hover {
    transform: translateY(-10px) !important;
}

/* Individual borders for each wrapper - Clear and colorful */
#features .simple-icon-wrapper:nth-child(1) {
    border: 2px solid rgba(56, 189, 248, 0.25);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.08),
        0 2px 12px rgba(56, 189, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(2) {
    border: 2px solid rgba(34, 211, 238, 0.25);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.08),
        0 2px 12px rgba(34, 211, 238, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(3) {
    border: 2px solid rgba(239, 68, 68, 0.25);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.08),
        0 2px 12px rgba(239, 68, 68, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(4) {
    border: 2px solid rgba(139, 92, 246, 0.25);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.08),
        0 2px 12px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(5) {
    border: 2px solid rgba(34, 197, 94, 0.25);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.08),
        0 2px 12px rgba(34, 197, 94, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(6) {
    border: 2px solid rgba(99, 102, 241, 0.25);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.08),
        0 2px 12px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(7) {
    border: 2px solid rgba(16, 185, 129, 0.25);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.08),
        0 2px 12px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(8) {
    border: 2px solid rgba(236, 72, 153, 0.25);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.08),
        0 2px 12px rgba(236, 72, 153, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Individual hover glow for each wrapper - Vibrant on white */
#features .simple-icon-wrapper:nth-child(1):hover {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 
        0 20px 60px rgba(56, 189, 248, 0.2),
        0 10px 30px rgba(56, 189, 248, 0.15),
        0 0 40px rgba(56, 189, 248, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(2):hover {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 
        0 20px 60px rgba(34, 211, 238, 0.2),
        0 10px 30px rgba(34, 211, 238, 0.15),
        0 0 40px rgba(34, 211, 238, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(3):hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 
        0 20px 60px rgba(239, 68, 68, 0.2),
        0 10px 30px rgba(239, 68, 68, 0.15),
        0 0 40px rgba(239, 68, 68, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(4):hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.2),
        0 10px 30px rgba(139, 92, 246, 0.15),
        0 0 40px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(5):hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 
        0 20px 60px rgba(34, 197, 94, 0.2),
        0 10px 30px rgba(34, 197, 94, 0.15),
        0 0 40px rgba(34, 197, 94, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(6):hover {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 
        0 20px 60px rgba(99, 102, 241, 0.2),
        0 10px 30px rgba(99, 102, 241, 0.15),
        0 0 40px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(7):hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 
        0 20px 60px rgba(16, 185, 129, 0.2),
        0 10px 30px rgba(16, 185, 129, 0.15),
        0 0 40px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

#features .simple-icon-wrapper:nth-child(8):hover {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 
        0 20px 60px rgba(236, 72, 153, 0.2),
        0 10px 30px rgba(236, 72, 153, 0.15),
        0 0 40px rgba(236, 72, 153, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Space Warp Border Effect on Click */
.simple-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: linear-gradient(45deg, 
        rgba(99, 102, 241, 0) 0%,
        rgba(99, 102, 241, 0.4) 25%,
        rgba(168, 85, 247, 0.6) 50%,
        rgba(99, 102, 241, 0.4) 75%,
        rgba(99, 102, 241, 0) 100%);
    background-size: 200% 200%;
    opacity: 0;
    animation: none;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.simple-icon-wrapper:active::before {
    opacity: 1;
    animation: warpBorder 0.8s ease-out;
}

@keyframes warpBorder {
    0% {
        background-position: 0% 50%;
        transform: scale(0.98);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.02);
    }
    100% {
        background-position: 200% 50%;
        transform: scale(1);
    }
}

/* Expanding Energy Wave */
.simple-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at center, 
        rgba(99, 102, 241, 0.3) 0%,
        transparent 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.simple-icon-wrapper:active::after {
    opacity: 1;
    transform: scale(1.5);
    animation: energyWave 0.6s ease-out;
}

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

/* No movement on container hover */
.simple-icon-wrapper:hover {
    border-color: rgba(99, 102, 241, 0.1);
}

/* Sci-Fi Card Expansion on Active */
.simple-icon-wrapper:active {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.3),
                0 5px 20px rgba(168, 85, 247, 0.2),
                0 0 60px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Remove glassmorphism effect */

/* Space Icon Container - Same as Hero Feature Icons */
#features .simple-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    margin-bottom: 0;
    padding: 10px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Ensure all icons have same size, padding and smooth transitions */
#features .simple-icon-wrapper:nth-child(1) .simple-icon,
#features .simple-icon-wrapper:nth-child(2) .simple-icon,
#features .simple-icon-wrapper:nth-child(3) .simple-icon,
#features .simple-icon-wrapper:nth-child(4) .simple-icon,
#features .simple-icon-wrapper:nth-child(5) .simple-icon,
#features .simple-icon-wrapper:nth-child(6) .simple-icon,
#features .simple-icon-wrapper:nth-child(7) .simple-icon,
#features .simple-icon-wrapper:nth-child(8) .simple-icon {
    width: 100px !important;
    height: 100px !important;
    padding: 10px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Subtle glow ring behind icon - minimal on white */
#features .simple-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
    filter: blur(15px);
}

#features .simple-icon-wrapper:hover .simple-icon::before {
    opacity: 0.4;
}

/* Individual icon colors - vibrant on white */
#features .simple-icon-wrapper:nth-child(1) .simple-icon {
    background: linear-gradient(135deg, 
        #dbeafe 0%,
        #bae6fd 50%,
        #dbeafe 100%);
    border: 3px solid rgba(56, 189, 248, 0.5);
    box-shadow: 
        0 8px 32px rgba(56, 189, 248, 0.15),
        0 2px 12px rgba(56, 189, 248, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.8);
}

#features .simple-icon-wrapper:nth-child(1) .simple-icon::before {
    background: radial-gradient(circle, 
        rgba(56, 189, 248, 0.5) 0%, 
        rgba(56, 189, 248, 0.3) 50%,
        transparent 100%);
}

#features .simple-icon-wrapper:nth-child(2) .simple-icon {
    background: linear-gradient(135deg, 
        #cffafe 0%,
        #a5f3fc 50%,
        #cffafe 100%);
    border: 3px solid rgba(34, 211, 238, 0.5);
    box-shadow: 
        0 8px 32px rgba(34, 211, 238, 0.15),
        0 2px 12px rgba(34, 211, 238, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.8);
}

#features .simple-icon-wrapper:nth-child(2) .simple-icon::before {
    background: radial-gradient(circle, 
        rgba(34, 211, 238, 0.5) 0%, 
        rgba(34, 211, 238, 0.3) 50%,
        transparent 100%);
}

#features .simple-icon-wrapper:nth-child(3) .simple-icon {
    background: linear-gradient(135deg, 
        #fee2e2 0%,
        #fecaca 50%,
        #fee2e2 100%);
    border: 3px solid rgba(239, 68, 68, 0.5);
    box-shadow: 
        0 8px 32px rgba(239, 68, 68, 0.15),
        0 2px 12px rgba(239, 68, 68, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.8);
}

#features .simple-icon-wrapper:nth-child(3) .simple-icon::before {
    background: radial-gradient(circle, 
        rgba(239, 68, 68, 0.4) 0%, 
        rgba(239, 68, 68, 0.2) 50%,
        transparent 100%);
}

#features .simple-icon-wrapper:nth-child(4) .simple-icon {
    background: linear-gradient(135deg, 
        #ede9fe 0%,
        #ddd6fe 50%,
        #ede9fe 100%);
    border: 3px solid rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 8px 32px rgba(139, 92, 246, 0.15),
        0 2px 12px rgba(139, 92, 246, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.8);
}

#features .simple-icon-wrapper:nth-child(4) .simple-icon::before {
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.4) 0%, 
        rgba(139, 92, 246, 0.2) 50%,
        transparent 100%);
}

#features .simple-icon-wrapper:nth-child(5) .simple-icon {
    background: linear-gradient(135deg, 
        #dcfce7 0%,
        #bbf7d0 50%,
        #dcfce7 100%);
    border: 3px solid rgba(34, 197, 94, 0.5);
    box-shadow: 
        0 8px 32px rgba(34, 197, 94, 0.15),
        0 2px 12px rgba(34, 197, 94, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.8);
}

#features .simple-icon-wrapper:nth-child(5) .simple-icon::before {
    background: radial-gradient(circle, 
        rgba(34, 197, 94, 0.4) 0%, 
        rgba(34, 197, 94, 0.2) 50%,
        transparent 100%);
}

#features .simple-icon-wrapper:nth-child(6) .simple-icon {
    background: linear-gradient(135deg, 
        #e0e7ff 0%,
        #c7d2fe 50%,
        #e0e7ff 100%);
    border: 3px solid rgba(99, 102, 241, 0.5);
    box-shadow: 
        0 8px 32px rgba(99, 102, 241, 0.15),
        0 2px 12px rgba(99, 102, 241, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.8);
}

#features .simple-icon-wrapper:nth-child(6) .simple-icon::before {
    background: radial-gradient(circle, 
        rgba(99, 102, 241, 0.4) 0%, 
        rgba(99, 102, 241, 0.2) 50%,
        transparent 100%);
}

#features .simple-icon-wrapper:nth-child(7) .simple-icon {
    background: linear-gradient(135deg, 
        #d1fae5 0%,
        #a7f3d0 50%,
        #d1fae5 100%);
    border: 3px solid rgba(16, 185, 129, 0.5);
    box-shadow: 
        0 8px 32px rgba(16, 185, 129, 0.15),
        0 2px 12px rgba(16, 185, 129, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.8);
}

#features .simple-icon-wrapper:nth-child(7) .simple-icon::before {
    background: radial-gradient(circle, 
        rgba(16, 185, 129, 0.4) 0%, 
        rgba(16, 185, 129, 0.2) 50%,
        transparent 100%);
}

#features .simple-icon-wrapper:nth-child(8) .simple-icon {
    background: linear-gradient(135deg, 
        #fce7f3 0%,
        #fbcfe8 50%,
        #fce7f3 100%);
    border: 3px solid rgba(236, 72, 153, 0.5);
    box-shadow: 
        0 8px 32px rgba(236, 72, 153, 0.15),
        0 2px 12px rgba(236, 72, 153, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.8);
}

#features .simple-icon-wrapper:nth-child(8) .simple-icon::before {
    background: radial-gradient(circle, 
        rgba(236, 72, 153, 0.4) 0%, 
        rgba(236, 72, 153, 0.2) 50%,
        transparent 100%);
}

#features .simple-icon-wrapper:hover .simple-icon::before {
    opacity: 1;
}

/* Icon image inside container */
#features .simple-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.2)) 
            drop-shadow(0 1px 4px rgba(0, 0, 0, 0.1))
            contrast(1.18) 
            saturate(1.05)
            brightness(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#features .simple-icon-wrapper:hover .simple-icon img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15)) 
            contrast(1.1) 
            saturate(1.1)
            brightness(1.05);
}

/* Space Color Themes - Same as Hero Feature Icons */
#features .simple-icon-wrapper:nth-child(1) .simple-icon {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 50px rgba(56, 189, 248, 0.2);
}

#features .simple-icon-wrapper:nth-child(2) .simple-icon {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 50px rgba(34, 211, 238, 0.2);
}

#features .simple-icon-wrapper:nth-child(3) .simple-icon {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 50px rgba(168, 85, 247, 0.2);
}

#features .simple-icon-wrapper:nth-child(4) .simple-icon {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 50px rgba(236, 72, 153, 0.2);
}

#features .simple-icon-wrapper:nth-child(5) .simple-icon {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 50px rgba(139, 92, 246, 0.2);
}

/* Simple fade in for cards */
@keyframes iconFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.simple-icon-wrapper:nth-child(1) {
    animation: iconFadeIn 0.5s ease-out 0.1s both;
}

.simple-icon-wrapper:nth-child(2) {
    animation: iconFadeIn 0.5s ease-out 0.2s both;
}

.simple-icon-wrapper:nth-child(3) {
    animation: iconFadeIn 0.5s ease-out 0.3s both;
}

.simple-icon-wrapper:nth-child(4) {
    animation: iconFadeIn 0.5s ease-out 0.4s both;
}

.simple-icon-wrapper:nth-child(5) {
    animation: iconFadeIn 0.5s ease-out 0.5s both;
}

/* No automatic animation - only on hover */

/* Unified icon hover effect - Same smooth scale for all */
#features .simple-icon-wrapper:hover .simple-icon,
#features .simple-icon-wrapper:nth-child(1):hover .simple-icon,
#features .simple-icon-wrapper:nth-child(2):hover .simple-icon,
#features .simple-icon-wrapper:nth-child(3):hover .simple-icon,
#features .simple-icon-wrapper:nth-child(4):hover .simple-icon,
#features .simple-icon-wrapper:nth-child(5):hover .simple-icon,
#features .simple-icon-wrapper:nth-child(6):hover .simple-icon,
#features .simple-icon-wrapper:nth-child(7):hover .simple-icon,
#features .simple-icon-wrapper:nth-child(8):hover .simple-icon {
    transform: scale(1.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Individual hover effects for each icon - Enhanced on white */
#features .simple-icon-wrapper:nth-child(1):hover .simple-icon {
    box-shadow: 
        0 12px 40px rgba(56, 189, 248, 0.3),
        0 4px 16px rgba(56, 189, 248, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.9);
}

#features .simple-icon-wrapper:nth-child(2):hover .simple-icon {
    box-shadow: 
        0 12px 40px rgba(34, 211, 238, 0.3),
        0 4px 16px rgba(34, 211, 238, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.9);
}

#features .simple-icon-wrapper:nth-child(3):hover .simple-icon {
    box-shadow: 
        0 12px 40px rgba(239, 68, 68, 0.3),
        0 4px 16px rgba(239, 68, 68, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.9);
}

#features .simple-icon-wrapper:nth-child(4):hover .simple-icon {
    box-shadow: 
        0 12px 40px rgba(139, 92, 246, 0.3),
        0 4px 16px rgba(139, 92, 246, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.9);
}

#features .simple-icon-wrapper:nth-child(5):hover .simple-icon {
    box-shadow: 
        0 12px 40px rgba(34, 197, 94, 0.3),
        0 4px 16px rgba(34, 197, 94, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.9);
}

#features .simple-icon-wrapper:nth-child(6):hover .simple-icon {
    box-shadow: 
        0 12px 40px rgba(99, 102, 241, 0.3),
        0 4px 16px rgba(99, 102, 241, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.9);
}

#features .simple-icon-wrapper:nth-child(7):hover .simple-icon {
    box-shadow: 
        0 12px 40px rgba(16, 185, 129, 0.3),
        0 4px 16px rgba(16, 185, 129, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.9);
}

#features .simple-icon-wrapper:nth-child(8):hover .simple-icon {
    box-shadow: 
        0 12px 40px rgba(236, 72, 153, 0.3),
        0 4px 16px rgba(236, 72, 153, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.9);
}

/* Shimmer/Shine Animation */
@keyframes shimmerPulse {
    0%, 100% {
        box-shadow: inset 0 2px 8px rgba(99, 102, 241, 0.08);
    }
    50% {
        box-shadow: inset 0 2px 8px rgba(99, 102, 241, 0.08),
                    inset -20px -20px 40px rgba(255, 255, 255, 0.3),
                    inset 20px 20px 40px rgba(99, 102, 241, 0.1);
    }
}

/* Space Hover Effects - Same as Hero */

/* Sci-Fi Space Effect on Click */
.simple-icon::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(99, 102, 241, 0.6) 0%,
        rgba(168, 85, 247, 0.4) 30%,
        transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    filter: blur(15px);
}

/* Particle Ring Effect */
.simple-icon::after {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    border: 3px dashed rgba(99, 102, 241, 0);
    opacity: 0;
    transform: scale(0.3) rotate(0deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

/* Activate on click/active state */
.simple-icon-wrapper:active .simple-icon::before {
    opacity: 1;
    transform: scale(2.5);
    filter: blur(25px);
    animation: warpPulse 0.6s ease-out;
}

.simple-icon-wrapper:active .simple-icon::after {
    opacity: 0.8;
    transform: scale(3) rotate(180deg);
    border-color: rgba(99, 102, 241, 0.6);
    animation: particleRing 0.8s ease-out;
}

.simple-icon-wrapper:active .simple-icon {
    transform: scale(0.95);
    filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.8))
            drop-shadow(0 0 80px rgba(168, 85, 247, 0.6))
            brightness(1.3) saturate(1.5);
}

/* Warp Speed Animation */
@keyframes warpPulse {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

/* Particle Ring Animation */
@keyframes particleRing {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
        border-width: 3px;
    }
    50% {
        opacity: 0.8;
        transform: scale(2) rotate(90deg);
        border-width: 2px;
    }
    100% {
        opacity: 0;
        transform: scale(3) rotate(180deg);
        border-width: 0px;
    }
}

/* Holographic Shimmer on Active */
.simple-icon-wrapper:active {
    animation: hologramFlicker 0.3s ease-in-out;
}

@keyframes hologramFlicker {
    0%, 100% {
        opacity: 1;
    }
    25% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.9;
    }
}

/* Different colors for each icon click effect */
.simple-icon-wrapper:nth-child(1):active .simple-icon::before {
    background: radial-gradient(circle, 
        rgba(99, 102, 241, 0.7) 0%,
        rgba(79, 70, 229, 0.5) 30%,
        transparent 70%);
}

.simple-icon-wrapper:nth-child(2):active .simple-icon::before {
    background: radial-gradient(circle, 
        rgba(16, 185, 129, 0.7) 0%,
        rgba(5, 150, 105, 0.5) 30%,
        transparent 70%);
}

.simple-icon-wrapper:nth-child(3):active .simple-icon::before {
    background: radial-gradient(circle, 
        rgba(249, 115, 22, 0.7) 0%,
        rgba(234, 88, 12, 0.5) 30%,
        transparent 70%);
}

.simple-icon-wrapper:nth-child(4):active .simple-icon::before {
    background: radial-gradient(circle, 
        rgba(236, 72, 153, 0.7) 0%,
        rgba(219, 39, 119, 0.5) 30%,
        transparent 70%);
}

.simple-icon-wrapper:nth-child(5):active .simple-icon::before {
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.7) 0%,
        rgba(124, 58, 237, 0.5) 30%,
        transparent 70%);
}

.icon-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow:
        0 14px 35px rgba(15, 23, 42, 0.12),
        0 4px 10px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    padding: 28px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.45s ease;
    transform-origin: center;
}

.icon-card-graphic {
    position: relative;
    width: 140px;
    height: 140px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-card-graphic::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    /* Base: modern yellow block like cards example */
    background: linear-gradient(135deg,
        #fef9c3 0%,
        #fef3c7 40%,
        #fee2b3 100%);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.2),
        0 6px 12px rgba(148, 163, 184, 0.5);
    transform: none;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.6s ease, background 0.6s ease;
    z-index: 0;
}

.icon-card-image {
    position: relative;
    z-index: 1;
    width: 88%;
    height: 88%;
    object-fit: contain;
    /* Keep image rendering stable on mobile – avoid blend modes that قد تخفي الصورة */
    mix-blend-mode: normal;
    opacity: 1;
    filter: saturate(1.05) contrast(1.05);
    display: block !important;
    margin: 0 auto;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    visibility: visible !important;
}

.icon-card-image[src=""] {
    display: none !important;
}

.icon-card-image:not([src=""]) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure icon5 image loads properly */
.icon-card:nth-child(5) .icon-card-image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 88% !important;
    height: 88% !important;
    object-fit: contain !important;
}

.icon-card-body {
    flex: 1;
}

.icon-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.icon-card-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}


/* Hover / smart interactions */
.icon-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.18),
        0 8px 18px rgba(15, 23, 42, 0.12);
}

.icon-card:hover .icon-card-graphic {
    transform: translateY(-4px) rotate(-2deg);
}

.icon-card:hover .icon-card-graphic::before {
    transform: skewX(-14deg) rotate(-5deg);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.25),
        0 10px 22px rgba(148, 163, 184, 0.6);
}

.icon-card:hover .icon-card-image {
    transform: translateY(-2px) scale(1.04);
}

/* Wave / ripple effect when clicking the card */
@keyframes iconWaveGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.icon-card:active .icon-card-graphic::before {
    background: linear-gradient(135deg,
        #fef9c3 0%,
        #e0f2fe 40%,
        #ede9fe 70%,
        #fee2b3 100%);
    background-size: 200% 200%;
    animation: iconWaveGradient 0.7s ease-out;
}

/* Subtle floating animation so cards feel alive even بدون hover */
@keyframes iconCardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.icon-card:nth-child(1) {
    animation: iconCardFloat 7s ease-in-out infinite;
}

.icon-card:nth-child(2) {
    animation: iconCardFloat 8s ease-in-out infinite;
    animation-delay: 0.5s;
}

.icon-card:nth-child(3) {
    animation: iconCardFloat 9s ease-in-out infinite;
    animation-delay: 0.9s;
}

.icon-card:nth-child(4) {
    animation: iconCardFloat 7.5s ease-in-out infinite;
    animation-delay: 1.2s;
}

.icon-card:nth-child(5) {
    animation: iconCardFloat 8.5s ease-in-out infinite;
    animation-delay: 1.5s;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.icon-card:nth-child(6) {
    animation: iconCardFloat 9s ease-in-out infinite;
    animation-delay: 1.8s;
}

.icon-card:nth-child(6) .icon-card-image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 88% !important;
    height: 88% !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    /* Space Theme Mobile Adjustments */
    #features {
        padding: 80px 20px;
    }
    
    /* Reduce stars on mobile */
    #features::before {
        opacity: 0.4;
        background-size: 
            150% 150%,
            150% 150%,
            120% 120%,
            150% 150%,
            140% 140%,
            150% 150%,
            160% 160%;
    }
    
    /* Reduce nebula effect on mobile */
    #features::after {
        display: none;
    }
    
    /* Mobile glassmorphism cards */
    #features .simple-icon-wrapper {
        padding: 20px 20px 20px 0;
        min-height: 130px;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 22px;
        background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
        overflow: visible;
    }
    
    #features .icon-wrapper-inner {
        margin-left: 8px;
    }
    
    /* Ensure consistent positioning on tablet - All containers */
    #features .simple-icon-wrapper:nth-child(1) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(2) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(3) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(4) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(5) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(6) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(7) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(8) .icon-wrapper-inner {
        margin-left: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        position: relative !important;
    }
    
    /* Unified sizing for all containers on mobile */
    #features .simple-icon-wrapper:nth-child(1),
    #features .simple-icon-wrapper:nth-child(2),
    #features .simple-icon-wrapper:nth-child(3),
    #features .simple-icon-wrapper:nth-child(4),
    #features .simple-icon-wrapper:nth-child(5),
    #features .simple-icon-wrapper:nth-child(6),
    #features .simple-icon-wrapper:nth-child(7),
    #features .simple-icon-wrapper:nth-child(8) {
        padding: 20px 20px 20px 20px !important;
        min-height: 130px !important;
        gap: 15px !important;
    }
    
    /* Unified icon sizing for all containers */
    #features .simple-icon-wrapper:nth-child(1) .simple-icon,
    #features .simple-icon-wrapper:nth-child(2) .simple-icon,
    #features .simple-icon-wrapper:nth-child(3) .simple-icon,
    #features .simple-icon-wrapper:nth-child(4) .simple-icon,
    #features .simple-icon-wrapper:nth-child(5) .simple-icon,
    #features .simple-icon-wrapper:nth-child(6) .simple-icon,
    #features .simple-icon-wrapper:nth-child(7) .simple-icon,
    #features .simple-icon-wrapper:nth-child(8) .simple-icon {
        width: 85px !important;
        height: 85px !important;
        padding: 8px !important;
    }
    
    #features .icon-label {
        font-size: 16px;
        letter-spacing: 0.3px;
    }
    
    #features .icon-description {
        font-size: 13px;
    }
    
    #features .icon-text-content {
        gap: 10px;
        padding-right: 15px;
    }
    
    /* Mobile icon size - matching hero icons */
    #features .simple-icon {
        width: 85px;
        height: 85px;
        padding: 8px;
    }
    
    #features .simple-icon img {
        width: 100%;
        height: 100%;
    }
    
    /* Adjust decorative elements for mobile */
    .features::before {
        width: 400px;
        height: 400px;
        left: -30%;
    }
    
    .features::after {
        width: 400px;
        height: 400px;
        right: -30%;
    }
    
    /* Hide decorative lines on mobile */
    .section-header::before,
    .section-header .section-title::after {
        display: none;
    }
    
    /* Adjust icon labels for mobile */
    .icon-label {
        font-size: 14px;
        padding-left: 20px;
    }
    
    .icon-label::before {
        font-size: 10px;
    }
    
    /* Smaller corner decorations on mobile */
    .simple-icon-wrapper::before,
    .simple-icon-wrapper::after {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }
    
    .simple-icon-wrapper:hover::before,
    .simple-icon-wrapper:hover::after {
        width: 25px;
        height: 25px;
    }
    
    .icon-highlights {
        padding: 60px 16px 40px;
    }
    
    /* For evaalo Visual Language in features section - Single column on mobile */
    #features .icon-highlights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 10px;
    }
    
    .features .icon-highlights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .icon-highlights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .icon-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 14px;
        border-radius: 18px;
    }

    .icon-card-graphic {
        width: 85px;
        height: 85px;
        margin-bottom: 12px;
    }
    
    .icon-card-graphic::before {
        border-radius: 18px;
    }
    
    .icon-card-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .icon-card-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    /* Simple Icons in mobile - Bigger icon, smaller frame */
    .simple-icon-wrapper {
        padding: 28px 20px;
        min-height: 180px;
    }
    
    .simple-icon {
        width: 85px;
        height: 85px;
        padding: 10px;
    }
    
    .simple-icon-wrapper:hover .simple-icon {
        transform: scale(1.08) translateY(-6px);
    }
}

@media (max-width: 480px) {
    .icon-highlights {
        padding: 50px 10px 30px;
    }
    
    /* For evaalo Visual Language in features section */
    .features .section-header {
        margin-bottom: 35px;
    }
    
    .features .section-title {
        font-size: 1.65rem;
        margin-bottom: 14px;
    }
    
    .features .section-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .features .icon-highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .icon-highlights .section-header {
        margin-bottom: 35px;
    }
    
    .icon-highlights .section-title {
        font-size: 1.65rem;
        margin-bottom: 14px;
    }
    
    .icon-highlights .section-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .icon-highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .icon-card {
        padding: 14px 10px;
        border-radius: 14px;
        align-items: center;
        text-align: center;
    }

    .icon-card-graphic {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }
    
    .icon-card-graphic::before {
        border-radius: 14px;
    }
    
    .icon-card-title {
        font-size: 0.85rem;
        margin-bottom: 5px;
        font-weight: 700;
    }
    
    .icon-card-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    /* Reduce hover effects on mobile */
    .icon-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .icon-card:hover .icon-card-graphic {
        transform: translateY(-1px) rotate(-1deg);
    }
    
    .icon-card:hover .icon-card-image {
        transform: scale(1.02);
    }
    
    /* Simple Icons in small mobile - Bigger icon, smaller frame */
    #features .simple-icon-wrapper {
        padding: 18px 18px 18px 0;
        min-height: 120px;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        border-radius: 18px;
        background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
        overflow: visible;
    }
    
    #features .icon-wrapper-inner {
        margin-left: 12px;
    }
    
    /* Ensure consistent positioning on mobile - All 8 containers */
    #features .simple-icon-wrapper:nth-child(1) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(2) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(3) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(4) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(5) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(6) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(7) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(8) .icon-wrapper-inner {
        margin-left: 12px !important;
    }
    
    /* Unified sizing for all 8 containers on small mobile */
    #features .simple-icon-wrapper:nth-child(1),
    #features .simple-icon-wrapper:nth-child(2),
    #features .simple-icon-wrapper:nth-child(3),
    #features .simple-icon-wrapper:nth-child(4),
    #features .simple-icon-wrapper:nth-child(5),
    #features .simple-icon-wrapper:nth-child(6),
    #features .simple-icon-wrapper:nth-child(7),
    #features .simple-icon-wrapper:nth-child(8) {
        padding: 18px 18px 18px 18px !important;
        min-height: 120px !important;
        gap: 12px !important;
    }
    
    /* Unified icon sizing for all 8 containers */
    #features .simple-icon-wrapper:nth-child(1) .simple-icon,
    #features .simple-icon-wrapper:nth-child(2) .simple-icon,
    #features .simple-icon-wrapper:nth-child(3) .simple-icon,
    #features .simple-icon-wrapper:nth-child(4) .simple-icon,
    #features .simple-icon-wrapper:nth-child(5) .simple-icon,
    #features .simple-icon-wrapper:nth-child(6) .simple-icon,
    #features .simple-icon-wrapper:nth-child(7) .simple-icon,
    #features .simple-icon-wrapper:nth-child(8) .simple-icon {
        width: 85px !important;
        height: 85px !important;
        padding: 8px !important;
    }
    
    #features .icon-label {
        font-size: 15px;
    }
    
    #features .icon-description {
        font-size: 12px;
    }
    
    #features .icon-text-content {
        gap: 8px;
        padding-right: 10px;
    }
    
    #features .simple-icon {
        width: 85px;
        height: 85px;
        padding: 8px;
    }
    
    #features .simple-icon img {
        width: 100%;
        height: 100%;
    }
    
    #features .simple-icon-wrapper:hover .simple-icon {
        transform: scale(1.15) rotate(4deg);
    }
}

@media (max-width: 380px) {
    .features .section-title,
    .icon-highlights .section-title {
        font-size: 1.5rem;
    }
    
    .features .section-description,
    .icon-highlights .section-description {
        font-size: 0.85rem;
    }
    
    .features .icon-highlights-grid,
    .icon-highlights-grid {
        gap: 12px;
    }
    
    .icon-card {
        padding: 12px 8px;
        border-radius: 12px;
    }
    
    .icon-card-graphic {
        width: 65px;
        height: 65px;
        margin-bottom: 8px;
    }
    
    .icon-card-graphic::before {
        border-radius: 12px;
    }
    
    .icon-card-title {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .icon-card-text {
        font-size: 0.7rem;
    }
    
    /* Simple Icons in extra small mobile - Bigger icon, smaller frame */
    #features .simple-icon-wrapper {
        padding: 16px 15px 16px 0;
        min-height: 110px;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        border-radius: 16px;
        background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
        overflow: visible;
    }
    
    #features .icon-wrapper-inner {
        margin-left: 10px;
    }
    
    /* Ensure consistent positioning on small mobile */
    #features .simple-icon-wrapper:nth-child(1) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(2) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(3) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(4) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(5) .icon-wrapper-inner,
    #features .simple-icon-wrapper:nth-child(6) .icon-wrapper-inner {
        margin-left: 10px !important;
    }
    
    #features .icon-label {
        font-size: 14px;
    }
    
    #features .icon-description {
        font-size: 11px;
    }
    
    #features .icon-text-content {
        gap: 6px;
        padding-right: 8px;
    }
    
    #features .simple-icon {
        width: 70px;
        height: 70px;
        padding: 7px;
    }
    
    #features .simple-icon img {
        width: 100%;
        height: 100%;
    }
    
    #features .simple-icon-wrapper:hover .simple-icon {
        transform: scale(1.12) rotate(4deg);
    }
}

/* Edge reflection effect */
.hero-image .robot-image::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, 
        rgba(56, 189, 248, 0.3) 0%,
        transparent 15%,
        transparent 85%,
        rgba(168, 85, 247, 0.3) 100%);
    pointer-events: none;
    z-index: 11;
    animation: edgeReflectionPulse 4s ease-in-out infinite;
}

@keyframes edgeReflectionPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.65;
    }
}

.hero-image .robot-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(56, 189, 248, 0.5),
        0 15px 40px rgba(168, 85, 247, 0.4),
        0 5px 20px rgba(34, 211, 238, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(56, 189, 248, 0.4);
    filter: 
        brightness(1) 
        contrast(1.08)
        saturate(1.15)
        hue-rotate(-5deg);
}

.hero-image .robot-image:hover::before {
    opacity: 0.85;
}

.hero-image .robot-image:hover::after {
    animation: edgeReflectionShimmer 2s ease-in-out infinite;
}

@keyframes edgeReflectionShimmer {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.85;
    }
}

@keyframes imageBorderPulse {
    0%, 100% {
        border-color: rgba(56, 189, 248, 0.2);
    }
    50% {
        border-color: rgba(168, 85, 247, 0.4);
    }
}

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

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

/* AI Robot Card */
.ai-robot-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.robot-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.robot-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.robot-image-wrapper:hover .robot-image {
    transform: scale(1.02);
}

.robot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* Floating UI Elements */
.floating-ui-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.ui-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatElement 3s ease-in-out infinite;
}

.ui-chart {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.ui-users {
    bottom: 20%;
    left: -8%;
    animation-delay: 1s;
}

.ui-time {
    top: 20%;
    right: -10%;
    animation-delay: 0.5s;
}

.ui-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1C1F2A;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(168, 85, 247, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.5);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-badge svg {
    width: 20px;
    height: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(56, 189, 248, 0.3);
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.6s;
}

.gradient-text {
    background: linear-gradient(135deg, 
        #38bdf8 0%, 
        #22d3ee 25%,
        #c084fc 50%, 
        #c084fc 75%,
        #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 8s ease infinite;
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.5));
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.8s backwards;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 1s backwards;
}

/* Buttons on same row */
.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    display: inline-flex;
}

.hero-actions .btn-primary {
    margin-right: 20px;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    width: 100%;
    animation: fadeInUp 1s ease-out 1.2s backwards;
    flex-wrap: wrap;
    padding-top: 15px;
    position: relative;
}

/* Subtle separator above icons */
.hero-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(56, 189, 248, 0.5) 0%, 
        rgba(168, 85, 247, 0.3) 50%,
        transparent 100%);
    opacity: 0.6;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.95;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    width: 105px;
    min-width: 105px;
    min-height: 120px;
    flex-shrink: 0;
}

/* Soft gradient/glow background behind icon */
.hero-feature-item::before {
    content: '';
    position: absolute;
    width: 95px;
    height: 95px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.2);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
    filter: blur(8px);
    animation: iconGlowPulse 3s ease-in-out infinite;
}

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

.hero-feature-item:hover::before {
    box-shadow: 0 8px 35px rgba(56, 189, 248, 0.4);
    transform: translateX(-50%) scale(1.15);
    filter: blur(12px);
}

/* Individual glow colors for each icon */
.hero-feature-item:nth-child(1)::before {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.25);
}

.hero-feature-item:nth-child(2)::before {
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.25);
}

.hero-feature-item:nth-child(3)::before {
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 70%);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.25);
}

.hero-feature-item:nth-child(1):hover::before {
    box-shadow: 0 8px 35px rgba(56, 189, 248, 0.5);
}

.hero-feature-item:nth-child(2):hover::before {
    box-shadow: 0 8px 35px rgba(34, 211, 238, 0.5);
}

.hero-feature-item:nth-child(3):hover::before {
    box-shadow: 0 8px 35px rgba(255, 107, 107, 0.5);
}

.hero-feature-item:hover {
    opacity: 1;
    transform: translateY(-12px);
}

.hero-feature-item .feature-icon {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 2px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin: 0 auto;
}

.hero-feature-item .feature-icon svg {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
}

.hero-feature-item:nth-child(1) .feature-icon {
    border-color: rgba(56, 189, 248, 0.4);
    color: #38bdf8;
    background: linear-gradient(135deg, 
        rgba(56, 189, 248, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.hero-feature-item:nth-child(2) .feature-icon {
    border-color: rgba(34, 211, 238, 0.4);
    color: #22d3ee;
    background: linear-gradient(135deg, 
        rgba(34, 211, 238, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.hero-feature-item:nth-child(3) .feature-icon {
    border-color: rgba(255, 107, 107, 0.4);
    color: #ff6b6b;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.hero-feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(3deg);
    backdrop-filter: blur(15px);
}

.hero-feature-item:nth-child(1):hover .feature-icon {
    border-color: rgba(56, 189, 248, 0.6);
    color: #38bdf8;
    box-shadow: 
        0 12px 40px rgba(56, 189, 248, 0.4),
        0 4px 12px rgba(56, 189, 248, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, 
        rgba(56, 189, 248, 0.35) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
}

.hero-feature-item:nth-child(2):hover .feature-icon {
    border-color: rgba(34, 211, 238, 0.6);
    color: #22d3ee;
    box-shadow: 
        0 12px 40px rgba(34, 211, 238, 0.4),
        0 4px 12px rgba(34, 211, 238, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, 
        rgba(34, 211, 238, 0.35) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
}

.hero-feature-item:nth-child(3):hover .feature-icon {
    border-color: rgba(255, 107, 107, 0.6);
    color: #ff6b6b;
    box-shadow: 
        0 12px 40px rgba(255, 107, 107, 0.4),
        0 4px 12px rgba(255, 107, 107, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.35) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
}

/* Smooth floating animation on hover */
.hero-feature-item:hover .feature-icon {
    animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: scale(1.15) rotate(3deg) translateY(0px); }
    50% { transform: scale(1.15) rotate(3deg) translateY(-5px); }
}

/* Pulse effect on hover */
.hero-feature-item:hover .feature-icon line,
.hero-feature-item:hover .feature-icon path,
.hero-feature-item:hover .feature-icon rect,
.hero-feature-item:hover .feature-icon circle,
.hero-feature-item:hover .feature-icon ellipse {
    animation: iconPulse 0.8s ease-out;
}

.hero-feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    text-transform: capitalize;
    transition: all 0.4s ease;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(34, 211, 238, 0.2);
    text-align: center;
    width: 100%;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-feature-item:hover span {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.08);
    letter-spacing: 1.2px;
}

.hero-feature-item:nth-child(1):hover span {
    text-shadow: 
        0 3px 12px rgba(56, 189, 248, 0.6),
        0 0 30px rgba(56, 189, 248, 0.4);
}

.hero-feature-item:nth-child(2):hover span {
    text-shadow: 
        0 3px 12px rgba(34, 211, 238, 0.6),
        0 0 30px rgba(34, 211, 238, 0.4);
}

.hero-feature-item:nth-child(3):hover span {
    text-shadow: 
        0 3px 12px rgba(255, 107, 107, 0.6),
        0 0 30px rgba(255, 107, 107, 0.4);
}

/* Coming Soon special styling */
.hero-feature-item:nth-child(3) span {
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    opacity: 0.85;
}

.hero-feature-item:nth-child(3):hover span {
    letter-spacing: 1px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-base);
    font-family: inherit;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #38bdf8 0%, #c084fc 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(56, 189, 248, 0.4), 0 4px 16px rgba(168, 85, 247, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(56, 189, 248, 0.5), 0 6px 20px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(56, 189, 248, 0.4);
}

.btn-secondary:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.6);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.15rem;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease-in-out infinite;
}

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

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.arrow-down {
    color: rgba(255, 255, 255, 0.6);
}

/* ====================================
   Features Section
   ==================================== */
.features {
    padding: 140px 20px;
    background: linear-gradient(180deg, #fafbff 0%, #f0f4f9 50%, #e8eef6 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Floating Orbs */
.features::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(99, 102, 241, 0.12) 0%,
        rgba(139, 92, 246, 0.08) 40%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: floatOrbLeft 18s ease-in-out infinite;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(168, 85, 247, 0.1) 0%,
        rgba(236, 72, 153, 0.06) 40%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    animation: floatOrbRight 22s ease-in-out infinite;
}

@keyframes floatOrbLeft {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(60px, 80px) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes floatOrbRight {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-80px, -60px) scale(1.15);
        opacity: 0.7;
    }
}

/* AI Network Pattern Background */
.ai-network-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(0deg, 
            transparent, 
            transparent 49px, 
            rgba(56, 189, 248, 0.3) 49px, 
            rgba(56, 189, 248, 0.3) 50px),
        repeating-linear-gradient(90deg, 
            transparent, 
            transparent 49px, 
            rgba(168, 85, 247, 0.2) 49px, 
            rgba(168, 85, 247, 0.2) 50px);
    background-size: 50px 50px;
    animation: networkShift 30s linear infinite;
}

@keyframes networkShift {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 50px 50px, 50px 50px;
    }
}

/* Geometric Dots Pattern */
.geometric-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.06;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(56, 189, 248, 0.4) 1px, transparent 1px),
                      radial-gradient(circle, rgba(168, 85, 247, 0.3) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    background-position: 0 0, 30px 30px;
    animation: dotsFloat 40s ease-in-out infinite;
}

@keyframes dotsFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

/* Connection Network SVG */
.connection-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    pointer-events: none;
}

.network-line {
    stroke: rgba(56, 189, 248, 0.4);
    stroke-width: 1;
    stroke-dasharray: 5, 10;
    animation: networkPulse 15s linear infinite;
}

.network-line:nth-child(2) {
    stroke: rgba(168, 85, 247, 0.4);
    animation-delay: -3s;
}

.network-line:nth-child(3) {
    stroke: rgba(34, 211, 238, 0.4);
    animation-delay: -6s;
}

.network-line:nth-child(4) {
    stroke: rgba(56, 189, 248, 0.4);
    animation-delay: -9s;
}

.network-node {
    fill: rgba(56, 189, 248, 0.6);
    animation: nodePulse 3s ease-in-out infinite;
}

.network-node:nth-child(6) {
    fill: rgba(168, 85, 247, 0.6);
    animation-delay: 0.5s;
}

.network-node:nth-child(7) {
    fill: rgba(34, 211, 238, 0.6);
    animation-delay: 1s;
}

.network-node:nth-child(8) {
    fill: rgba(56, 189, 248, 0.6);
    animation-delay: 1.5s;
}

.network-node:nth-child(9) {
    fill: rgba(168, 85, 247, 0.6);
    animation-delay: 2s;
}

.network-node:nth-child(10) {
    fill: rgba(34, 211, 238, 0.6);
    animation-delay: 2.5s;
}

@keyframes networkPulse {
    0% {
        stroke-dashoffset: 0;
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: -100;
        opacity: 0.3;
    }
}

@keyframes nodePulse {
    0%, 100% {
        opacity: 0.4;
        r: 3;
    }
    50% {
        opacity: 0.8;
        r: 4;
    }
}

/* Animated gradient orbs in background */
.features::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(56, 189, 248, 0.08) 0%, 
        rgba(56, 189, 248, 0.04) 40%,
        transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: floatOrb 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.features::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(168, 85, 247, 0.06) 0%, 
        rgba(168, 85, 247, 0.03) 40%,
        transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: floatOrb 25s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

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

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

/* Geometric Dots Pattern */
.features .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at center, rgba(99, 102, 241, 0.08) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

/* Grid Lines */
.features .container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

/* Decorative Lines on sides */
.section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(99, 102, 241, 0.2) 30%,
        rgba(99, 102, 241, 0.5) 100%);
    transform: translateY(-50%);
}

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6366F1, #A78BFA, #C084FC);
    margin: 28px auto 0;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

/* Right decorative line */
.section-header .section-title::after {
    display: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.2));
    line-height: 1.2;
    letter-spacing: -0.5px;
}


.section-description {
    font-size: 1.15rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.3px;
    opacity: 0.9;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

/* Stagger animation on scroll */
.feature-card {
    padding: 48px 36px;
    background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
    border: 1.5px solid rgba(99, 102, 241, 0.12);
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(99, 102, 241, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Icon smart-frame background for Features cards */
.features .feature-card .feature-icon {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    z-index: 0;
}

.features .feature-card .feature-icon::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 26px;
    background: linear-gradient(135deg,
        rgba(56, 189, 248, 0.16) 0%,
        rgba(129, 140, 248, 0.18) 40%,
        rgba(248, 250, 252, 0.9) 100%);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.25),
        0 4px 12px rgba(148, 163, 184, 0.35);
    transform: skewX(-6deg) rotate(-2deg);
    z-index: -2;
}

.features .feature-card .feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    background: radial-gradient(circle at 20% 20%,
        rgba(59, 130, 246, 0.35) 0%,
        transparent 55%),
        radial-gradient(circle at 80% 80%,
        rgba(56, 189, 248, 0.3) 0%,
        transparent 55%);
    opacity: 0.9;
    /* Real visible border */
    box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.6);
    z-index: -1;
}

.features .feature-card .feature-icon svg {
    position: relative;
    z-index: 1;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

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

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

/* Gradient accent line at top of card */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:nth-child(1) { color: #6366F1; }
.feature-card:nth-child(2) { color: #22C55E; }
.feature-card:nth-child(3) { color: #F97316; }
.feature-card:nth-child(4) { color: #EF4444; }
.feature-card:nth-child(5) { color: #C084FC; }
.feature-card:nth-child(6) { color: #10B981; }

.feature-card:hover::after {
    opacity: 0.6;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 60px rgba(99, 102, 241, 0.2),
        0 12px 32px rgba(99, 102, 241, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 2px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Gentle colored glow behind each feature icon */
.feature-card .feature-icon::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.2;
    transition: all 0.5s ease;
    animation: featureGlowPulse 4s ease-in-out infinite;
}

/* Light blue glow for first icon */
.feature-card:nth-child(1) .feature-icon::before {
    background: radial-gradient(circle, 
        rgba(56, 189, 248, 0.3) 0%, 
        rgba(56, 189, 248, 0.15) 40%,
        transparent 70%);
    animation-delay: 0s;
}

/* Fresh green glow for second icon */
.feature-card:nth-child(2) .feature-icon::before {
    background: radial-gradient(circle, 
        rgba(34, 197, 94, 0.3) 0%, 
        rgba(34, 197, 94, 0.15) 40%,
        transparent 70%);
    animation-delay: 0.5s;
}

/* Warm orange glow for third icon */
.feature-card:nth-child(3) .feature-icon::before {
    background: radial-gradient(circle, 
        rgba(249, 115, 22, 0.3) 0%, 
        rgba(249, 115, 22, 0.15) 40%,
        transparent 70%);
    animation-delay: 1s;
}

/* Enhanced glows for remaining icons */
.feature-card:nth-child(4) .feature-icon::before {
    background: radial-gradient(circle, 
        rgba(239, 68, 68, 0.3) 0%, 
        rgba(239, 68, 68, 0.15) 40%,
        transparent 70%);
    animation-delay: 1.5s;
}

.feature-card:nth-child(5) .feature-icon::before {
    background: radial-gradient(circle, 
        rgba(168, 85, 247, 0.3) 0%, 
        rgba(168, 85, 247, 0.15) 40%,
        transparent 70%);
    animation-delay: 2s;
}

.feature-card:nth-child(6) .feature-icon::before {
    background: radial-gradient(circle, 
        rgba(16, 185, 129, 0.3) 0%, 
        rgba(16, 185, 129, 0.15) 40%,
        transparent 70%);
    animation-delay: 2.5s;
}

@keyframes featureGlowPulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

/* Intensify glow on hover */
.feature-card:hover .feature-icon::before {
    opacity: 0.4;
    transform: scale(1.15);
    filter: blur(22px);
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px) rotate(-5deg) scale(1.05);
}

.feature-icon svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.05));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(3deg);
    backdrop-filter: blur(15px);
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* Enhanced icon glow for each card on hover */
.feature-card:nth-child(1) .feature-icon {
    border-color: rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.feature-card:nth-child(1):hover .feature-icon {
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 
        0 12px 40px rgba(99, 102, 241, 0.4),
        0 4px 12px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.35) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
}

.feature-card:nth-child(1):hover .feature-icon svg {
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.feature-card:nth-child(2) .feature-icon {
    border-color: rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.feature-card:nth-child(2):hover .feature-icon {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 
        0 12px 40px rgba(34, 197, 94, 0.4),
        0 4px 12px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.35) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
}

.feature-card:nth-child(2):hover .feature-icon svg {
    filter: drop-shadow(0 4px 12px rgba(34, 197, 94, 0.3));
}

.feature-card:nth-child(3) .feature-icon {
    border-color: rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, 
        rgba(249, 115, 22, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.feature-card:nth-child(3):hover .feature-icon {
    border-color: rgba(249, 115, 22, 0.6);
    box-shadow: 
        0 12px 40px rgba(249, 115, 22, 0.4),
        0 4px 12px rgba(249, 115, 22, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, 
        rgba(249, 115, 22, 0.35) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
}

.feature-card:nth-child(3):hover .feature-icon svg {
    filter: drop-shadow(0 4px 12px rgba(249, 115, 22, 0.3));
}

.feature-card:nth-child(4) .feature-icon {
    border-color: rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.feature-card:nth-child(4):hover .feature-icon {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 
        0 12px 40px rgba(239, 68, 68, 0.4),
        0 4px 12px rgba(239, 68, 68, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.35) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
}

.feature-card:nth-child(4):hover .feature-icon svg {
    filter: drop-shadow(0 4px 12px rgba(239, 68, 68, 0.3));
}

.feature-card:nth-child(5) .feature-icon {
    border-color: rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, 
        rgba(168, 85, 247, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.feature-card:nth-child(5):hover .feature-icon {
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 
        0 12px 40px rgba(168, 85, 247, 0.4),
        0 4px 12px rgba(168, 85, 247, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, 
        rgba(168, 85, 247, 0.35) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
}

.feature-card:nth-child(5):hover .feature-icon svg {
    filter: drop-shadow(0 4px 12px rgba(168, 85, 247, 0.3));
}

.feature-card:nth-child(6) .feature-icon {
    border-color: rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.feature-card:nth-child(6):hover .feature-icon {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 
        0 12px 40px rgba(16, 185, 129, 0.4),
        0 4px 12px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.35) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
}

.feature-card:nth-child(6):hover .feature-icon svg {
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

/* Animated gradient background for icon backgrounds */
.feature-icon svg rect:first-child {
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon svg rect:first-child {
    filter: brightness(1.05);
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #4f46e5 0%, #6366F1 50%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -0.3px;
}


.feature-card:hover .feature-title {
    filter: drop-shadow(0 2px 6px rgba(0, 110, 255, 0.2));
}

.feature-description {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.9;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.2px;
    opacity: 0.8;
}


.feature-card:hover .feature-description {
    opacity: 1;
}

/* Smooth entrance for all content sections */
.features .container,
.process .container {
    animation: fadeInContent 1s ease-out 0.3s backwards;
}

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

/* Icon pulse animation on hover */
@keyframes iconPulseScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.feature-card:hover .feature-icon svg {
    animation: iconPulseScale 2s ease-in-out infinite;
}

/* Gradient shimmer effect on icon backgrounds */
.feature-card:nth-child(1):hover .feature-icon svg rect:first-child {
    animation: shimmerBlue 2s ease-in-out infinite;
}

.feature-card:nth-child(2):hover .feature-icon svg rect:first-child {
    animation: shimmerGreen 2s ease-in-out infinite;
}

.feature-card:nth-child(3):hover .feature-icon svg rect:first-child {
    animation: shimmerOrange 2s ease-in-out infinite;
}

.feature-card:nth-child(4):hover .feature-icon svg rect:first-child {
    animation: shimmerRed 2s ease-in-out infinite;
}

.feature-card:nth-child(5):hover .feature-icon svg rect:first-child {
    animation: shimmerPurple 2s ease-in-out infinite;
}

.feature-card:nth-child(6):hover .feature-icon svg rect:first-child {
    animation: shimmerEmerald 2s ease-in-out infinite;
}

@keyframes shimmerBlue {
    0%, 100% { fill: #F0F4FF; }
    50% { fill: #E0E7FF; }
}

@keyframes shimmerGreen {
    0%, 100% { fill: #F0FDF4; }
    50% { fill: #DCFCE7; }
}

@keyframes shimmerOrange {
    0%, 100% { fill: #FFF7ED; }
    50% { fill: #FFEDD5; }
}

@keyframes shimmerRed {
    0%, 100% { fill: #FEF2F2; }
    50% { fill: #FEE2E2; }
}

@keyframes shimmerPurple {
    0%, 100% { fill: #F5F3FF; }
    50% { fill: #EDE9FE; }
}

@keyframes shimmerEmerald {
    0%, 100% { fill: #ECFDF5; }
    50% { fill: #D1FAE5; }
}

/* ====================================
   Application Process Section
   ==================================== */
.process {
    padding: 140px 20px;
    background: linear-gradient(180deg, #f0f5fb 0%, #e6eef8 40%, #f4f8fd 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 4px 24px rgba(99, 102, 241, 0.04);
}

/* Circuit Lines Pattern */
.circuit-lines-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.07;
    pointer-events: none;
    background-image: 
        /* Diagonal lines */
        repeating-linear-gradient(45deg, 
            transparent, 
            transparent 80px, 
            rgba(56, 189, 248, 0.4) 80px, 
            rgba(56, 189, 248, 0.4) 81px),
        repeating-linear-gradient(-45deg, 
            transparent, 
            transparent 80px, 
            rgba(168, 85, 247, 0.3) 80px, 
            rgba(168, 85, 247, 0.3) 81px),
        /* Circuit nodes */
        radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 40% 70%, rgba(168, 85, 247, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 70% 80%, rgba(34, 211, 238, 0.3) 2px, transparent 2px);
    background-size: 
        100% 100%, 
        100% 100%,
        300px 300px,
        400px 400px,
        350px 350px,
        250px 250px;
    animation: circuitPulse 20s ease-in-out infinite;
}

@keyframes circuitPulse {
    0%, 100% {
        opacity: 0.05;
    }
    50% {
        opacity: 0.09;
    }
}

/* Tech Grid Overlay */
.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.2) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridSlide 25s linear infinite;
}

@keyframes gridSlide {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, 100px 100px;
    }
}

/* Radial Waves Pattern */
.radial-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0.06;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 30% 40%, 
            transparent 0%, 
            transparent 48%, 
            rgba(56, 189, 248, 0.3) 49%, 
            rgba(56, 189, 248, 0.3) 50%, 
            transparent 51%),
        radial-gradient(circle at 70% 60%, 
            transparent 0%, 
            transparent 58%, 
            rgba(168, 85, 247, 0.2) 59%, 
            rgba(168, 85, 247, 0.2) 60%, 
            transparent 61%);
    background-size: 400px 400px, 500px 500px;
    animation: waveExpand 15s ease-in-out infinite;
}

@keyframes waveExpand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.04;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.08;
    }
}

.process .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
    overflow: visible;
}

.process-steps-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    flex-wrap: nowrap;
    gap: 20px;
    flex: 1;
    overflow: visible;
}

/* Desktop: Show all cards side by side - Wider and shorter, single row */
@media (min-width: 1025px) {
    /* Hide Swiper on desktop */
    .process-steps-swiper {
        display: none !important;
    }
    
    /* Show desktop layout */
    #processStepsDesktop {
        display: flex;
        overflow: visible;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: nowrap;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    #processStepsDesktop .process-step {
        flex: 1;
        padding: 24px 20px 20px;
        min-width: 0;
        margin: 0;
    }
    .process-steps {
        overflow: visible;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: nowrap;
        padding: 0;
        margin: 0;
    }
    
    .process-step {
        flex: 1;
        padding: 24px 20px 20px;
        min-width: 0;
        margin: 0;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .step-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .process-nav-btn {
        display: none;
    }
    
    /* Hide indicators on desktop */
    .process-step-indicators {
        display: none;
    }
}

.process-nav-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    color: #6366F1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.process-nav-btn:hover {
    background: linear-gradient(135deg, #6366F1 0%, #A78BFA 100%);
    color: #ffffff;
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

.process-nav-btn:active {
    transform: scale(0.95);
}

.process-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.process-nav-btn:disabled:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    color: #6366F1;
    transform: none;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 28px 20px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    border-radius: 24px;
    box-shadow: 
        0 12px 48px rgba(99, 102, 241, 0.1),
        0 6px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    position: relative;
    border: 1.5px solid rgba(99, 102, 241, 0.12);
    flex-shrink: 0;
}

.process-step:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 24px 72px rgba(99, 102, 241, 0.2),
        0 12px 32px rgba(99, 102, 241, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f3f5ff 100%);
}

.step-number {
    font-size: 1.15rem;
    font-weight: 800;
    background: linear-gradient(135deg, #006eff 0%, #8f4fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(0, 110, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    color: #006eff;
    transition: var(--transition-base);
    filter: drop-shadow(0 2px 6px rgba(0, 110, 255, 0.08));
    flex-shrink: 0;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    color: #8f4fff;
    filter: drop-shadow(0 4px 12px rgba(143, 79, 255, 0.12));
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f46e5 0%, #6366F1 50%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.2px;
    filter: drop-shadow(0 1px 4px rgba(0, 110, 255, 0.1));
    flex-shrink: 0;
}


.step-description {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.7;
    font-weight: 400;
}


.process-connector {
    flex: 0 0 auto;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #006eff, #8f4fff);
    align-self: center;
    margin-top: 0;
    box-shadow: 0 1px 4px rgba(0, 110, 255, 0.1);
    border-radius: 2px;
    position: relative;
}

.process-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, 
        rgba(0, 110, 255, 0.15), 
        rgba(143, 79, 255, 0.15));
    filter: blur(3px);
    z-index: -1;
}

/* ====================================
   CTA Section
   ==================================== */
.cta {
    position: relative;
    padding: 140px 20px;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(56, 189, 248, 0.3);
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        rgba(255, 255, 255, 0.95) 50%,
        #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button Glow Effect */
.cta .btn-primary {
    position: relative;
    box-shadow: 
        0 8px 32px rgba(56, 189, 248, 0.5),
        0 4px 16px rgba(168, 85, 247, 0.4),
        0 0 60px rgba(56, 189, 248, 0.3);
    animation: ctaButtonGlow 3s ease-in-out infinite;
}

.cta .btn-primary::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, 
        rgba(56, 189, 248, 0.4) 0%, 
        transparent 70%);
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    animation: ctaButtonHalo 4s ease-in-out infinite;
}

@keyframes ctaButtonGlow {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(56, 189, 248, 0.5),
            0 4px 16px rgba(168, 85, 247, 0.4),
            0 0 60px rgba(56, 189, 248, 0.3);
    }
    50% {
        box-shadow: 
            0 12px 48px rgba(56, 189, 248, 0.7),
            0 6px 24px rgba(168, 85, 247, 0.6),
            0 0 80px rgba(56, 189, 248, 0.5);
    }
}

@keyframes ctaButtonHalo {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

.cta .btn-primary:hover {
    box-shadow: 
        0 12px 48px rgba(56, 189, 248, 0.7),
        0 6px 24px rgba(168, 85, 247, 0.6),
        0 0 100px rgba(56, 189, 248, 0.6);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(56, 189, 248, 0.9) 0%, 
        rgba(14, 165, 233, 0.6) 40%, 
        transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.cta-orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, 
        rgba(168, 85, 247, 0.9) 0%, 
        rgba(147, 51, 234, 0.6) 40%, 
        transparent 70%);
    bottom: -175px;
    left: -175px;
    animation-delay: -10s;
}

.cta-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(34, 211, 238, 0.8) 0%, 
        rgba(6, 182, 212, 0.5) 40%, 
        transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    position: relative;
    padding: 100px 20px 40px;
    background: linear-gradient(180deg, 
        #0f0c29 0%, 
        #1a1636 40%,
        #1e1b4b 70%, 
        #312e81 100%);
    color: var(--white);
    overflow: hidden;
    box-shadow: inset 0 4px 32px rgba(99, 102, 241, 0.1);
}

/* AI Connection Lines Background */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.footer-ai-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.ai-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, 
        rgba(56, 189, 248, 1) 0%, 
        rgba(56, 189, 248, 0.5) 50%, 
        transparent 100%);
    border-radius: 50%;
    animation: dotPulse 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.8);
}

.ai-dot:nth-child(1) { animation-delay: 0s; }
.ai-dot:nth-child(2) { 
    animation-delay: 0.5s;
    background: radial-gradient(circle, 
        rgba(168, 85, 247, 1) 0%, 
        rgba(168, 85, 247, 0.5) 50%, 
        transparent 100%);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.8);
}
.ai-dot:nth-child(3) { animation-delay: 1s; }
.ai-dot:nth-child(4) { 
    animation-delay: 1.5s;
    background: radial-gradient(circle, 
        rgba(34, 211, 238, 1) 0%, 
        rgba(34, 211, 238, 0.5) 50%, 
        transparent 100%);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.8);
}
.ai-dot:nth-child(5) { animation-delay: 2s; }
.ai-dot:nth-child(6) { animation-delay: 2.5s; }

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

.footer-connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.connection-line {
    stroke: rgba(56, 189, 248, 0.3);
    stroke-width: 1;
    stroke-dasharray: 5, 10;
    animation: lineDash 20s linear infinite;
}

.connection-line:nth-child(2) {
    stroke: rgba(168, 85, 247, 0.3);
    animation-delay: -4s;
}

.connection-line:nth-child(3) {
    stroke: rgba(34, 211, 238, 0.3);
    animation-delay: -8s;
}

.connection-line:nth-child(4) {
    stroke: rgba(56, 189, 248, 0.3);
    animation-delay: -12s;
}

.connection-line:nth-child(5) {
    stroke: rgba(168, 85, 247, 0.3);
    animation-delay: -16s;
}

@keyframes lineDash {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -100;
    }
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.footer-title {
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(56, 189, 248, 0.8) 0%, 
        transparent 100%);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-tagline {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.footer-tagline p {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, 
        rgba(56, 189, 248, 1) 0%, 
        rgba(168, 85, 247, 1) 50%,
        rgba(34, 211, 238, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
    animation: taglineGlow 4s ease-in-out infinite;
}

@keyframes taglineGlow {
    0%, 100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.4));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.6));
    }
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 25px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ====================================
   RTL Support
   ==================================== */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .language-selector-wrapper {
    right: auto;
    left: 20px;
}

html[dir="rtl"] .language-dropdown-menu {
    right: auto;
    left: 0;
}

html[dir="rtl"] .language-btn-text {
    text-align: right;
}

html[dir="rtl"] .language-option {
    text-align: right;
}

html[dir="rtl"] .btn:hover svg {
    transform: translateX(-5px);
}

html[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 1024px) {
    .process-connector {
        width: 30px;
    }
    
    .process-steps {
        justify-content: center;
        gap: 16px;
    }
    
    .process-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-content {
        text-align: center;
    }
    
    .hero-image {
        max-width: 450px;
        margin: 0 auto;
        order: 1;
    }
    
    .hero-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ai-robot-card {
        max-width: 100%;
    }
    
    .ui-element {
        display: none;
    }
    
    /* Optimize AI effects for mobile */
    .neural-network {
        opacity: 0.2;
    }
    
    .background-logo {
        width: 90vw;
        opacity: 0.06;
        filter: blur(10px);
    }
    
    .ai-icon {
        display: none;
    }
    
    .ai-icon:nth-child(1),
    .ai-icon:nth-child(2) {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }

    /* How evaalo Works: swipeable steps on mobile */
    .process-steps {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px;
    }

    .process-step {
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .process-connector {
        display: none;
    }
    
    .hero-actions {
        align-items: center;
        gap: 30px;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        margin-right: 0;
        margin-bottom: 0;
        width: auto;
    }
    
    .hero-features {
        justify-content: center;
        gap: 35px;
        margin-top: 0;
        padding-top: 0;
    }
    
    .btn {
        width: auto;
        justify-content: center;
    }
    
    .hero-feature-item {
        width: 90px;
        min-width: 90px;
        flex-shrink: 0;
    }
    
    .hero-feature-item span {
        font-size: 0.85rem;
    }
    
    .hero-feature-item .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .hero-feature-item .feature-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .hero-feature-item::before {
        width: 75px;
        height: 75px;
        top: -10px;
        left: -10px;
    }
    
    .hero-features {
        gap: 30px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    /* Reduce background pattern complexity on mobile */
    .ai-network-pattern,
    .geometric-dots,
    .connection-network {
        opacity: 0.04;
    }
    
    .circuit-lines-pattern,
    .tech-grid-overlay,
    .radial-waves {
        opacity: 0.03;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-header {
        margin-bottom: 70px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-connector {
        display: none;
    }
    
    .features {
        padding: 100px 20px;
    }
    
    .process {
        padding: 100px 20px;
    }
    
    .cta {
        padding: 100px 20px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 36px;
    }
    
    .cta-orb-1,
    .cta-orb-2,
    .cta-orb-3 {
        filter: blur(80px);
    }
}

@media (max-width: 480px) {
    .left-icon-wrapper {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 75px !important;
        left: 10px !important;
        z-index: 1000 !important;
        background: transparent !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
    }
    
    .left-icon-wrapper.hidden {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .left-icon-button {
        background: transparent !important;
    }
    
    .left-feature-icon {
        background: linear-gradient(135deg, 
            rgba(15, 23, 42, 1) 0%, 
            rgba(20, 20, 35, 1) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .left-icon-button:hover .left-feature-icon {
        background: linear-gradient(135deg, 
            rgba(20, 20, 35, 0.98) 0%, 
            rgba(15, 15, 28, 0.98) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .language-selector-wrapper {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 75px !important;
        right: 10px !important;
        z-index: 1000 !important;
        background: transparent !important;
    }
    
    .language-icon-button {
        background: transparent !important;
    }
    
    .language-feature-icon {
        background: linear-gradient(135deg, 
            rgba(15, 23, 42, 1) 0%, 
            rgba(20, 20, 35, 1) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .language-icon-button:hover .language-feature-icon,
    .language-icon-button[aria-expanded="true"] .language-feature-icon {
        background: linear-gradient(135deg, 
            rgba(20, 20, 35, 0.98) 0%, 
            rgba(15, 15, 28, 0.98) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Even smaller icon sizes on small mobile */
    .hero-feature-item {
        width: 80px;
        min-width: 80px;
        min-height: 90px;
    }
    
    .hero-feature-item::before {
        width: 70px;
        height: 70px;
    }
    
    .hero-feature-item .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .hero-feature-item .feature-icon svg {
        width: 49px;
        height: 49px;
    }
    
    /* Left icon - same size as hero-feature icons on small mobile */
    .left-icon-button::before {
        width: 70px;
        height: 70px;
    }
    
    .left-feature-icon {
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, 
            rgba(15, 23, 42, 1) 0%, 
            rgba(20, 20, 35, 1) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1.5px solid rgba(34, 211, 238, 0.4) !important;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            0 2px 8px rgba(34, 211, 238, 0.2) !important;
    }
    
    .left-icon-wrapper {
        background: transparent !important;
    }
    
    .left-icon-button {
        background: transparent !important;
    }
    
    .left-feature-icon svg {
        width: 49px;
        height: 49px;
    }
    
    .left-icon-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    /* Language icon - same size as hero-feature icons on small mobile */
    .language-icon-button::before {
        width: 70px;
        height: 70px;
    }
    
    .language-feature-icon {
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, 
            rgba(15, 23, 42, 1) 0%, 
            rgba(20, 20, 35, 1) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1.5px solid rgba(34, 211, 238, 0.4) !important;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            0 2px 8px rgba(34, 211, 238, 0.2) !important;
    }
    
    .language-selector-wrapper {
        background: transparent !important;
    }
    
    .language-icon-button {
        background: transparent !important;
    }
    
    .language-feature-icon svg {
        width: 49px;
        height: 49px;
    }
    
    .language-icon-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .language-icon-button:hover .language-feature-icon,
    .language-icon-button[aria-expanded="true"] .language-feature-icon {
        background: linear-gradient(135deg, 
            rgba(15, 23, 42, 1) 0%, 
            rgba(20, 20, 35, 1) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .features {
        padding: 80px 20px;
    }
    
    .process {
        padding: 80px 20px;
    }
    
    .cta {
        padding: 80px 20px;
    }
    
    .footer {
        padding: 80px 20px 30px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .hero-image {
        max-width: 350px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    .process-connector {
        display: none;
    }
    
    .process-steps-wrapper {
        gap: 0;
        overflow: visible;
        width: 100%;
        padding: 0;
        margin: 0;
        position: relative;
    }
    
    /* Hide navigation buttons on mobile - use swipe instead */
    .process-nav-btn {
        display: none;
    }
    
    /* Hide desktop layout on mobile */
    #processStepsDesktop {
        display: none;
    }
    
    /* Swiper Container for Mobile */
    .process-steps-swiper {
        width: 100%;
        padding: 0 20px;
        overflow: visible;
        margin: 0;
        display: block !important;
    }
    
    .process-steps-swiper .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }
    
    .process-steps-swiper .swiper-slide {
        width: 100% !important;
        flex-shrink: 0;
        box-sizing: border-box;
        height: auto;
    }
    
    .process-steps-swiper .process-step {
        padding: 32px 20px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 24px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    /* Swiper Pagination - Custom Style */
    .process-step-indicators {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 24px;
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
    }
    
    .process-step-indicators .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(99, 102, 241, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
        flex-shrink: 0;
        opacity: 1;
        margin: 0 5px !important;
    }
    
    .process-step-indicators .swiper-pagination-bullet-active {
        width: 24px;
        height: 8px;
        border-radius: 4px;
        background: linear-gradient(135deg, #6366F1 0%, #A78BFA 100%);
        box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 36px 28px;
    }
    
    .process-step {
        padding: 36px 28px;
        flex: 1 1 100%;
    }
    
    .features-grid {
        gap: 32px;
    }
    
    .process-steps {
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-tagline {
        padding: 20px 0;
        margin-bottom: 30px;
    }
    
    .footer-tagline p {
        font-size: 1rem;
    }
    
    .ai-dot {
        width: 4px;
        height: 4px;
    }
    
    .connection-line {
        stroke-width: 0.5;
    }
}

/* ====================================
   Accessibility & Focus States
   ==================================== */

/* Smooth focus states for better UX */
a:focus,
/* Remove blue outline on buttons in dashboard */
.design-page button:focus,
.design-page button:active,
.dashboard-page button:focus,
.dashboard-page button:active {
    outline: none !important;
    box-shadow: none !important;
}

button:focus {
    outline: 2px solid rgba(0, 110, 255, 0.5);
    outline-offset: 4px;
    transition: outline 0.2s ease;
}

/* Remove default outline and add custom */
*:focus-visible {
    outline: 2px solid rgba(0, 110, 255, 0.5);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Remove blue outline in dashboard and design pages */
.design-page *:focus-visible,
.dashboard-page *:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* ====================================
   Mobile Responsive Styles for Features
   ==================================== */

/* Mobile: Make #features-2 look like #features layout */
@media (max-width: 768px) {
    /* Make icon-highlights-grid single column like #features */
    #features-2 .icon-highlights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }
    
    /* Match desktop design - white background, clean look */
    #features-2 .icon-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 20px !important;
        gap: 16px;
        background: #ffffff;
        border: 1px solid rgba(148, 163, 184, 0.18);
        border-radius: 20px;
        box-shadow:
            0 10px 30px rgba(15, 23, 42, 0.1),
            0 3px 8px rgba(15, 23, 42, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    /* Icon graphic container - Match desktop with smaller size */
    #features-2 .icon-card-graphic {
        position: relative;
        flex-shrink: 0;
        width: 90px;
        height: 90px;
        margin-left: 0;
    }
    
    /* Icon graphic background - Match desktop gradient */
    #features-2 .icon-card-graphic::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 18px;
        background: linear-gradient(135deg,
            #fef9c3 0%,
            #fef3c7 40%,
            #fee2b3 100%);
        box-shadow:
            0 12px 28px rgba(15, 23, 42, 0.15),
            0 4px 10px rgba(148, 163, 184, 0.4);
        z-index: 0;
    }
    
    /* Icon image - Match desktop positioning */
    #features-2 .icon-card-image {
        position: relative;
        z-index: 1;
        width: 88%;
        height: 88%;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    
    /* Card body */
    #features-2 .icon-card-body {
        flex: 1;
        text-align: left;
    }
    
    /* Card title - Dark text for white background */
    #features-2 .icon-card-title {
        font-size: 15px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 5px;
        line-height: 1.3;
    }
    
    /* Card text - Dark text for white background */
    #features-2 .icon-card-text {
        font-size: 13px;
        color: #475569;
        line-height: 1.5;
        margin: 0;
    }
    
    /* Section padding adjustment */
    #features-2 {
        padding: 80px 20px;
    }
    
    /* Section title */
    #features-2 .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    /* Section description */
    #features-2 .section-description {
        font-size: 15px;
        margin-bottom: 50px;
    }
}

/* Extra small mobile devices - Keep desktop design */
@media (max-width: 480px) {
    #features-2 .icon-card {
        padding: 18px !important;
        gap: 14px;
    }
    
    #features-2 .icon-card-graphic {
        width: 80px;
        height: 80px;
        margin-left: 0;
    }
    
    #features-2 .icon-card-graphic::before {
        border-radius: 16px;
    }
    
    #features-2 .icon-card-image {
        width: 88%;
        height: 88%;
    }
    
    #features-2 .icon-card-title {
        font-size: 14px;
        color: #0f172a;
    }
    
    #features-2 .icon-card-text {
        font-size: 12px;
        color: #475569;
    }
    
    #features-2 .section-title {
        font-size: 24px;
    }
    
    #features-2 .section-description {
        font-size: 14px;
    }
}

/* ====================================
   Animations & Interactions
   ==================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


